mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-03 09:12:57 +00:00
85 lines
1.7 KiB
C++
85 lines
1.7 KiB
C++
/*
|
|
* \brief Utility for synchronizing the access of interface methods
|
|
* \author Norman Feske
|
|
* \date 2013-05-16
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2013-2016 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__BASE__SYNCED_INTERFACE_H_
|
|
#define _INCLUDE__BASE__SYNCED_INTERFACE_H_
|
|
|
|
/* Genode includes */
|
|
#include <base/lock.h>
|
|
|
|
namespace Genode {
|
|
|
|
template <typename, typename LOCK = Genode::Lock> class Synced_interface;
|
|
}
|
|
|
|
|
|
/*
|
|
* Utility for synchronizing the access of interface methods
|
|
*
|
|
* The 'Synced_interface' utility makes the serialization of interface
|
|
* method calls easy. The 'Synced_interface' is a functor that takes a lock
|
|
* and a pointer to an interface as arguments. When called, the functor
|
|
* returns a smart pointer to the interface. When this smart pointer gets
|
|
* dereferenced, the smart pointer takes care of acquiring and releasing
|
|
* the lock while the interface method is executed.
|
|
*/
|
|
template <typename IF, typename LOCK>
|
|
class Genode::Synced_interface
|
|
{
|
|
public:
|
|
|
|
class Guard
|
|
{
|
|
private:
|
|
|
|
LOCK &_lock;
|
|
IF *_interface;
|
|
|
|
Guard(LOCK &lock, IF *interface)
|
|
: _lock(lock), _interface(interface)
|
|
{
|
|
_lock.lock();
|
|
}
|
|
|
|
friend class Synced_interface;
|
|
|
|
public:
|
|
|
|
~Guard() { _lock.unlock(); }
|
|
|
|
IF *operator -> () { return _interface; }
|
|
};
|
|
|
|
private:
|
|
|
|
LOCK &_lock;
|
|
IF *_interface;
|
|
|
|
public:
|
|
|
|
Synced_interface(LOCK &lock, IF *interface)
|
|
: _lock(lock), _interface(interface) { }
|
|
|
|
Guard operator () ()
|
|
{
|
|
return Guard(_lock, _interface);
|
|
}
|
|
|
|
Guard operator () () const
|
|
{
|
|
return Guard(_lock, _interface);
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__BASE__SYNCED_INTERFACE_H_ */
|