MOve cuckoo_base.h from cds/container to cds/container/details
authorkhizmax <libcds.dev@gmail.com>
Sat, 27 Sep 2014 15:58:54 +0000 (19:58 +0400)
committerkhizmax <libcds.dev@gmail.com>
Sat, 27 Sep 2014 15:58:54 +0000 (19:58 +0400)
cds/container/cuckoo_base.h [deleted file]
cds/container/cuckoo_map.h
cds/container/cuckoo_set.h
cds/container/details/cuckoo_base.h [new file with mode: 0644]
projects/Win/vc12/cds.vcxproj
projects/Win/vc12/cds.vcxproj.filters

diff --git a/cds/container/cuckoo_base.h b/cds/container/cuckoo_base.h
deleted file mode 100644 (file)
index e8608e7..0000000
+++ /dev/null
@@ -1,211 +0,0 @@
-//$$CDS-header$$
-
-#ifndef __CDS_CONTAINER_CUCKOO_BASE_H
-#define __CDS_CONTAINER_CUCKOO_BASE_H
-
-#include <cds/intrusive/cuckoo_set.h>
-
-namespace cds { namespace container {
-
-    /// CuckooSet and CuckooMap related definitions
-    /** @ingroup cds_nonintrusive_helper
-    */
-    namespace cuckoo {
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Lock striping concurrent access policy. This is typedef for intrusive::cuckoo::striping template
-        class striping
-        {};
-#else
-        using intrusive::cuckoo::striping;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Refinable concurrent access policy. This is typedef for intrusive::cuckoo::refinable template
-        class refinable
-        {};
-#else
-        using intrusive::cuckoo::refinable;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Striping internal statistics. This is typedef for intrusive::cuckoo::striping_stat
-        class striping_stat
-        {};
-#else
-        using intrusive::cuckoo::striping_stat;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Empty striping internal statistics. This is typedef for intrusive::cuckoo::empty_striping_stat
-        class empty_striping_stat
-        {};
-#else
-        using intrusive::cuckoo::empty_striping_stat;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Refinable internal statistics. This is typedef for intrusive::cuckoo::refinable_stat
-        class refinable_stat
-        {};
-#else
-        using intrusive::cuckoo::refinable_stat;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Empty refinable internal statistics. This is typedef for intrusive::cuckoo::empty_refinable_stat
-        class empty_refinable_stat
-        {};
-#else
-        using intrusive::cuckoo::empty_refinable_stat;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Cuckoo statistics. This is typedef for intrusive::cuckoo::stat
-        class stat
-        {};
-#else
-        using intrusive::cuckoo::stat;
-#endif
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Cuckoo empty statistics.This is typedef for intrusive::cuckoo::empty_stat
-        class empty_stat
-        {};
-#else
-        using intrusive::cuckoo::empty_stat;
-#endif
-
-        /// Option specifying whether to store hash values in the node
-        /**
-             This option reserves additional space in the hook to store the hash value of the object once it's introduced in the container.
-             When this option is used, the unordered container will store the calculated hash value in the hook and rehashing operations won't need
-             to recalculate the hash of the value. This option will improve the performance of unordered containers
-             when rehashing is frequent or hashing the value is a slow operation
-
-             The \p Enable template parameter toggles the feature:
-             - the value \p true enables storing the hash values
-             - the value \p false disables storing the hash values
-        */
-        template <bool Enable>
-        struct store_hash
-        {
-            //@cond
-            template <typename Base>
-            struct pack: public Base {
-                static bool const store_hash = Enable;
-            };
-            //@endcond
-        };
-
-#ifdef CDS_DOXYGEN_INVOKED
-        /// Probe set type option
-        /**
-            The option specifies probe set type for the CuckooSet and CuckooMap.
-            Available \p Type:
-            - \p cuckoo::list - the probe-set is a single-linked list.
-            - \p cuckoo::vector<Capacity> - the probe-set is a vector
-                with constant-size \p Capacity where \p Capacity is an <tt>unsigned int</tt> constant.
-        */
-        template <typename Type>
-        struct probeset_type
-        {};
-#else
-        using intrusive::cuckoo::probeset_type;
-#endif
-
-        using intrusive::cuckoo::list;
-        using intrusive::cuckoo::vector;
-
-        /// Type traits for CuckooSet and CuckooMap classes
-        struct type_traits
-        {
-            /// Hash functors tuple
-            /**
-                This is mandatory type and has no predefined one.
-
-                At least, two hash functors should be provided. All hash functor
-                should be orthogonal (different): for each <tt> i,j: i != j => h[i](x) != h[j](x) </tt>.
-                The hash functors are defined as <tt> std::tuple< H1, H2, ... Hn > </tt>:
-                \@code cds::opt::hash< std::tuple< h1, h2 > > \@endcode
-                The number of hash functors specifies the number \p k - the count of hash tables in cuckoo hashing.
-                Up to 10 different hash functors are supported.
-            */
-            typedef cds::opt::none      hash;
-
-            /// Concurrent access policy
-            /**
-                Available opt::mutex_policy types:
-                - cuckoo::striping - simple, but the lock array is not resizable
-                - cuckoo::refinable - resizable lock array, but more complex access to set data.
-
-                Default is cuckoo::striping.
-            */
-            typedef cuckoo::striping<>               mutex_policy;
-
-            /// Key equality functor
-            /**
-                Default is <tt>std::equal_to<T></tt>
-            */
-            typedef opt::none                       equal_to;
-
-            /// Key comparison functor
-            /**
-                No default functor is provided. If the option is not specified, the \p less is used.
-            */
-            typedef opt::none                       compare;
-
-            /// specifies binary predicate used for key comparison.
-            /**
-                Default is \p std::less<T>.
-            */
-            typedef opt::none                       less;
-
-            /// Item counter
-            /**
-                The type for item counting feature.
-                Default is cds::atomicity::item_counter
-
-                Only atomic item counter type is allowed.
-            */
-            typedef cds::intrusive::cuckoo::type_traits::item_counter   item_counter;
-
-            /// Allocator type
-            /**
-                The allocator type for allocating bucket tables.
-                Default is \p CDS_DEFAULT_ALLOCATOR that is \p std::allocator
-            */
-            typedef CDS_DEFAULT_ALLOCATOR       allocator;
-
-            /// Node allocator type
-            /**
-                If this type is not set explicitly, the \ref allocator type is used.
-            */
-            typedef opt::none                   node_allocator;
-
-            /// Store hash value into items. See cuckoo::store_hash for explanation
-            static bool const store_hash = false;
-
-            /// Probe-set type. See \ref probeset_type option for explanation
-            typedef cuckoo::list                probeset_type;
-
-            /// Internal statistics
-            typedef empty_stat                  stat;
-        };
-
-        /// Metafunction converting option list to CuckooSet/CuckooMap traits
-        /**
-            This is a wrapper for <tt> cds::opt::make_options< type_traits, Options...> </tt>
-            \p Options list see CuckooSet and CuckooMap
-        */
-        template <typename... Options>
-        struct make_traits {
-            typedef typename cds::opt::make_options<
-                typename cds::opt::find_type_traits< cuckoo::type_traits, Options... >::type
-                ,Options...
-            >::type   type ;    ///< Result of metafunction
-        };
-    }   // namespace cuckoo
-}} // namespace cds::container
-
-#endif  // #ifndef __CDS_CONTAINER_CUCKOO_BASE_H
index c80c0e1f124520b88cb1b99dff2b9b97c5d79ea1..7cffae9bfc54f23f5ff31d21647f9c72b0185d1a 100644 (file)
@@ -3,7 +3,7 @@
 #ifndef __CDS_CONTAINER_CUCKOO_MAP_H
 #define __CDS_CONTAINER_CUCKOO_MAP_H
 
-#include <cds/container/cuckoo_base.h>
+#include <cds/container/details/cuckoo_base.h>
 #include <cds/details/binary_functor_wrapper.h>
 
 namespace cds { namespace container {
index 348f02dfb3b19ab842216d1826059a22d9ce135f..5f2bf3ef3c8699d1fc736216f0344a51bd17219a 100644 (file)
@@ -3,7 +3,7 @@
 #ifndef __CDS_CONTAINER_CUCKOO_SET_H
 #define __CDS_CONTAINER_CUCKOO_SET_H
 
-#include <cds/container/cuckoo_base.h>
+#include <cds/container/details/cuckoo_base.h>
 #include <cds/details/binary_functor_wrapper.h>
 
 namespace cds { namespace container {
diff --git a/cds/container/details/cuckoo_base.h b/cds/container/details/cuckoo_base.h
new file mode 100644 (file)
index 0000000..a68feac
--- /dev/null
@@ -0,0 +1,211 @@
+//$$CDS-header$$
+
+#ifndef __CDS_CONTAINER_DETAILS_CUCKOO_BASE_H
+#define __CDS_CONTAINER_DETAILS_CUCKOO_BASE_H
+
+#include <cds/intrusive/cuckoo_set.h>
+
+namespace cds { namespace container {
+
+    /// CuckooSet and CuckooMap related definitions
+    /** @ingroup cds_nonintrusive_helper
+    */
+    namespace cuckoo {
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Lock striping concurrent access policy. This is typedef for intrusive::cuckoo::striping template
+        class striping
+        {};
+#else
+        using intrusive::cuckoo::striping;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Refinable concurrent access policy. This is typedef for intrusive::cuckoo::refinable template
+        class refinable
+        {};
+#else
+        using intrusive::cuckoo::refinable;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Striping internal statistics. This is typedef for intrusive::cuckoo::striping_stat
+        class striping_stat
+        {};
+#else
+        using intrusive::cuckoo::striping_stat;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Empty striping internal statistics. This is typedef for intrusive::cuckoo::empty_striping_stat
+        class empty_striping_stat
+        {};
+#else
+        using intrusive::cuckoo::empty_striping_stat;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Refinable internal statistics. This is typedef for intrusive::cuckoo::refinable_stat
+        class refinable_stat
+        {};
+#else
+        using intrusive::cuckoo::refinable_stat;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Empty refinable internal statistics. This is typedef for intrusive::cuckoo::empty_refinable_stat
+        class empty_refinable_stat
+        {};
+#else
+        using intrusive::cuckoo::empty_refinable_stat;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Cuckoo statistics. This is typedef for intrusive::cuckoo::stat
+        class stat
+        {};
+#else
+        using intrusive::cuckoo::stat;
+#endif
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Cuckoo empty statistics.This is typedef for intrusive::cuckoo::empty_stat
+        class empty_stat
+        {};
+#else
+        using intrusive::cuckoo::empty_stat;
+#endif
+
+        /// Option specifying whether to store hash values in the node
+        /**
+             This option reserves additional space in the hook to store the hash value of the object once it's introduced in the container.
+             When this option is used, the unordered container will store the calculated hash value in the hook and rehashing operations won't need
+             to recalculate the hash of the value. This option will improve the performance of unordered containers
+             when rehashing is frequent or hashing the value is a slow operation
+
+             The \p Enable template parameter toggles the feature:
+             - the value \p true enables storing the hash values
+             - the value \p false disables storing the hash values
+        */
+        template <bool Enable>
+        struct store_hash
+        {
+            //@cond
+            template <typename Base>
+            struct pack: public Base {
+                static bool const store_hash = Enable;
+            };
+            //@endcond
+        };
+
+#ifdef CDS_DOXYGEN_INVOKED
+        /// Probe set type option
+        /**
+            The option specifies probe set type for the CuckooSet and CuckooMap.
+            Available \p Type:
+            - \p cuckoo::list - the probe-set is a single-linked list.
+            - \p cuckoo::vector<Capacity> - the probe-set is a vector
+                with constant-size \p Capacity where \p Capacity is an <tt>unsigned int</tt> constant.
+        */
+        template <typename Type>
+        struct probeset_type
+        {};
+#else
+        using intrusive::cuckoo::probeset_type;
+#endif
+
+        using intrusive::cuckoo::list;
+        using intrusive::cuckoo::vector;
+
+        /// Type traits for CuckooSet and CuckooMap classes
+        struct type_traits
+        {
+            /// Hash functors tuple
+            /**
+                This is mandatory type and has no predefined one.
+
+                At least, two hash functors should be provided. All hash functor
+                should be orthogonal (different): for each <tt> i,j: i != j => h[i](x) != h[j](x) </tt>.
+                The hash functors are defined as <tt> std::tuple< H1, H2, ... Hn > </tt>:
+                \@code cds::opt::hash< std::tuple< h1, h2 > > \@endcode
+                The number of hash functors specifies the number \p k - the count of hash tables in cuckoo hashing.
+                Up to 10 different hash functors are supported.
+            */
+            typedef cds::opt::none      hash;
+
+            /// Concurrent access policy
+            /**
+                Available opt::mutex_policy types:
+                - cuckoo::striping - simple, but the lock array is not resizable
+                - cuckoo::refinable - resizable lock array, but more complex access to set data.
+
+                Default is cuckoo::striping.
+            */
+            typedef cuckoo::striping<>               mutex_policy;
+
+            /// Key equality functor
+            /**
+                Default is <tt>std::equal_to<T></tt>
+            */
+            typedef opt::none                       equal_to;
+
+            /// Key comparison functor
+            /**
+                No default functor is provided. If the option is not specified, the \p less is used.
+            */
+            typedef opt::none                       compare;
+
+            /// specifies binary predicate used for key comparison.
+            /**
+                Default is \p std::less<T>.
+            */
+            typedef opt::none                       less;
+
+            /// Item counter
+            /**
+                The type for item counting feature.
+                Default is cds::atomicity::item_counter
+
+                Only atomic item counter type is allowed.
+            */
+            typedef cds::intrusive::cuckoo::type_traits::item_counter   item_counter;
+
+            /// Allocator type
+            /**
+                The allocator type for allocating bucket tables.
+                Default is \p CDS_DEFAULT_ALLOCATOR that is \p std::allocator
+            */
+            typedef CDS_DEFAULT_ALLOCATOR       allocator;
+
+            /// Node allocator type
+            /**
+                If this type is not set explicitly, the \ref allocator type is used.
+            */
+            typedef opt::none                   node_allocator;
+
+            /// Store hash value into items. See cuckoo::store_hash for explanation
+            static bool const store_hash = false;
+
+            /// Probe-set type. See \ref probeset_type option for explanation
+            typedef cuckoo::list                probeset_type;
+
+            /// Internal statistics
+            typedef empty_stat                  stat;
+        };
+
+        /// Metafunction converting option list to CuckooSet/CuckooMap traits
+        /**
+            This is a wrapper for <tt> cds::opt::make_options< type_traits, Options...> </tt>
+            \p Options list see CuckooSet and CuckooMap
+        */
+        template <typename... Options>
+        struct make_traits {
+            typedef typename cds::opt::make_options<
+                typename cds::opt::find_type_traits< cuckoo::type_traits, Options... >::type
+                ,Options...
+            >::type   type ;    ///< Result of metafunction
+        };
+    }   // namespace cuckoo
+}} // namespace cds::container
+
+#endif  // #ifndef __CDS_CONTAINER_DETAILS_CUCKOO_BASE_H
index a78d07f72dd9772cfb5af06f0cf86e94edaa059d..ce60f7434f4fb603ed4db5a1843cfb385597f61b 100644 (file)
     <ClInclude Include="..\..\..\cds\compiler\vc\amd64\cxx11_atomic.h" />\r
     <ClInclude Include="..\..\..\cds\compiler\vc\x86\cxx11_atomic.h" />\r
     <ClInclude Include="..\..\..\cds\container\basket_queue.h" />\r
-    <ClInclude Include="..\..\..\cds\container\cuckoo_base.h" />\r
     <ClInclude Include="..\..\..\cds\container\cuckoo_map.h" />\r
     <ClInclude Include="..\..\..\cds\container\cuckoo_set.h" />\r
     <ClInclude Include="..\..\..\cds\container\details\base.h" />\r
+    <ClInclude Include="..\..\..\cds\container\details\cuckoo_base.h" />\r
     <ClInclude Include="..\..\..\cds\container\details\guarded_ptr_cast.h" />\r
     <ClInclude Include="..\..\..\cds\container\details\make_skip_list_map.h" />\r
     <ClInclude Include="..\..\..\cds\container\details\make_skip_list_set.h" />\r
index 330dd63f4de3928ca76c43f9badf9314eb8b77ca..be401fc21b6eb822671519d1dfd4482b8f706313 100644 (file)
     <ClInclude Include="..\..\..\cds\container\cuckoo_set.h">\r
       <Filter>Header Files\cds\container</Filter>\r
     </ClInclude>\r
-    <ClInclude Include="..\..\..\cds\container\cuckoo_base.h">\r
-      <Filter>Header Files\cds\container</Filter>\r
-    </ClInclude>\r
     <ClInclude Include="..\..\..\cds\container\cuckoo_map.h">\r
       <Filter>Header Files\cds\container</Filter>\r
     </ClInclude>\r
     <ClInclude Include="..\..\..\cds\container\details\base.h">\r
       <Filter>Header Files\cds\container\details</Filter>\r
     </ClInclude>\r
+    <ClInclude Include="..\..\..\cds\container\details\cuckoo_base.h">\r
+      <Filter>Header Files\cds\container\details</Filter>\r
+    </ClInclude>\r
   </ItemGroup>\r
 </Project>
\ No newline at end of file