From: khizmax Date: Mon, 2 Feb 2015 10:58:50 +0000 (+0300) Subject: Added sync::Monitor concept X-Git-Tag: v2.1.0~305^2~82 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2935e4406481e5d37251b4d802729c88640ef457;p=libcds.git Added sync::Monitor concept --- diff --git a/cds/sync/injected_monitor.h b/cds/sync/injected_monitor.h index 2e567aac..17fbf666 100644 --- a/cds/sync/injected_monitor.h +++ b/cds/sync/injected_monitor.h @@ -5,10 +5,15 @@ namespace cds { namespace sync { - /// Monitor that injects a lock as a member into a class + /// @ref cds_sync_monitor "Monitor" that injects the lock into each node /** + This monitor injects the lock object of type \p Lock into each node. + The monitor is designed for user-space locking primitives like \ref sync::spin_lock "spin-lock". + Template arguments: - Lock - lock type like \p std::mutex or \p cds::sync::spin + + */ template class injected_monitor @@ -60,7 +65,7 @@ namespace cds { namespace sync { template class scoped_lock { - T const& m_Locked; + T const& m_Locked; ///< Our locked node public: /// Makes exclusive access to object \p p of type T diff --git a/cds/sync/monitor.h b/cds/sync/monitor.h new file mode 100644 index 00000000..cc96d11c --- /dev/null +++ b/cds/sync/monitor.h @@ -0,0 +1,84 @@ +//$$CDS-header$$ + +#ifndef CDSLIB_SYNC_MONITOR_H +#define CDSLIB_SYNC_MONITOR_H + +namespace cds { namespace sync { + + /** + @page cds_sync_monitor Synchronization monitor + + A monitor is synchronization construct + that allows threads to have both mutual exclusion and the ability to wait (block) for a certain condition to become true. + + Some blocking data structure algoritms like the trees require per-node locking. + For huge trees containing millions of nodes it can be very inefficient to inject + the lock object into each node. Moreover, some operating systems may not support + the millions of system objects like mutexes per user process. + + The monitor strategy is intended to solve that problem. + When the node should be locked, the monitor is called to allocate appropriate + lock object for the node if it's needed, and to lock the node. + The monitor strategy can significantly reduce the number of system objects + required for the data structure. + + Implemetatios + + \p libcds contains several monitor implementations: + - \p sync::injected_monitor injects the lock object into each node. + That mock monitor is designed for user-space locking primitive like + \ref sync::spin_lock "spin-lock". + + How to use + + If you use a container from \p libcds that requires a monitor, you should just + specify required monitor type in container's traits. Usually, the monitor + is specified by \p traits::sync_monitor typedef, or by \p cds::opt::sync_monitor + option for container's \p make_traits metafunction. + + If you're developing a new container algorithm, you should know internal monitor + interface: + \code + class Monitor { + public: + // Monitor's injection into the Node class + template + struct wrapper; + + // Locks the node + template + void lock( Node& node ); + + // Unlocks the node + template + void unlock( Node& node ); + + // Scoped lock applyes RAII to Monitor + template + class scoped_lock + { + public: + // Locks node by monitor mon + scoped_lock( Monitor& mon, Node& node ); + + // Unlocks the node locked by ctor + ~scoped_lock(); + }; + }; + \endcode + The monitor should be a member of your container: + \code + template + class my_container { + // ... + typedef typename Traits::sync_monitor sync_monitor; + sync_monitor m_Monitor; + //... + }; + \endcode + */ + +}} // namespace cds::sync + +#endif // #ifndef CDSLIB_SYNC_MONITOR_H + diff --git a/projects/Win/vc12/cds.vcxproj b/projects/Win/vc12/cds.vcxproj index 2cb16e32..f20dfaf6 100644 --- a/projects/Win/vc12/cds.vcxproj +++ b/projects/Win/vc12/cds.vcxproj @@ -796,6 +796,7 @@ + diff --git a/projects/Win/vc12/cds.vcxproj.filters b/projects/Win/vc12/cds.vcxproj.filters index 3d4a7756..205abcda 100644 --- a/projects/Win/vc12/cds.vcxproj.filters +++ b/projects/Win/vc12/cds.vcxproj.filters @@ -1178,5 +1178,8 @@ Header Files\cds\sync + + Header Files\cds\sync + \ No newline at end of file