Modified Hashkit class (turned it into an actual class).
authorBrian Aker <brian@gaz>
Fri, 22 Jan 2010 19:04:16 +0000 (11:04 -0800)
committerBrian Aker <brian@gaz>
Fri, 22 Jan 2010 19:04:16 +0000 (11:04 -0800)
libhashkit/hashkit.c
libhashkit/hashkit.h
libhashkit/types.h
libmemcached/memcached.h
m4/pandora_warnings.m4
tests/hash_plus.cc
tests/include.am

index c58ab69f7514392d2a3bdcc8d04b8be9b67d54b3..47c9e580c7b50df985b16ad7457939399c6eb24d 100644 (file)
@@ -106,12 +106,3 @@ bool hashkit_compare(const hashkit_st *first, const hashkit_st *second)
 
   return false;
 }
-
-#ifdef __cplusplus
-hashkit_st operator=(const hashkit_st& source)
-{ 
-  hashkit_clone(this, &source);
-
-  return *this;
-}
-#endif
index 5f19f9d34af3221da3a6f564f5a076940eb038ce..bab3bc08d1f2ba7e8d7df4c8d3c06cf3748175fb 100644 (file)
@@ -63,28 +63,24 @@ struct hashkit_st
   struct {
     bool is_allocated:1;
   } options;
+};
 
 #ifdef __cplusplus
+class Hashkit : private hashkit_st {
+
+public:
 
-  hashkit_st() :
-    base_hash(),
-    distribution_hash(),
-    flags(),
-    options()
+  Hashkit()
   {
     hashkit_create(this);
   }
 
-  hashkit_st(const hashkit_st& source) :
-    base_hash(),
-    distribution_hash(),
-    flags(),
-    options()
+  Hashkit(const Hashkit& source)
   {
     hashkit_clone(this, &source);
   }
 
-  hashkit_st& operator=(const hashkit_st& source)
+  Hashkit& operator=(const Hashkit& source)
   { 
     hashkit_free(this);
     hashkit_clone(this, &source);
@@ -92,7 +88,7 @@ struct hashkit_st
     return *this;
   }
 
-  friend bool operator==(const hashkit_st &left, const hashkit_st &right)
+  friend bool operator==(const Hashkit &left, const Hashkit &right)
   {
     return hashkit_compare(&left, &right);
   }
@@ -117,12 +113,12 @@ struct hashkit_st
     return hashkit_set_function(this, hash_algorithm);
   }
 
-  ~hashkit_st()
+  ~Hashkit()
   {
     hashkit_free(this);
   }
-#endif
 };
+#endif
 
 
 #endif /* HASHKIT_H */
index 6b7e29b20ed3fa24be8a07f9514e758da40a04c4..8d39696227d61f1ca97f8acfe8236e60fc50d178 100644 (file)
@@ -12,8 +12,6 @@
 
 #ifdef __cplusplus
 
-typedef struct hashkit_st Hashkit;
-
 extern "C" {
 #endif
 
index 5b92d6356d6ea2d3c31a38d8ed461e88bf6aba3e..66f8a495aac8238152cdf37e0e17078564258ecd 100644 (file)
 #include <libmemcached/verbosity.h>
 #include <libmemcached/version.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-LIBMEMCACHED_API
-void memcached_servers_reset(memcached_st *ptr);
-
-LIBMEMCACHED_API
-memcached_st *memcached_create(memcached_st *ptr);
-
-LIBMEMCACHED_API
-void memcached_free(memcached_st *ptr);
-
-LIBMEMCACHED_API
-memcached_st *memcached_clone(memcached_st *clone, const memcached_st *ptr);
-
-LIBMEMCACHED_API
-void *memcached_get_user_data(const memcached_st *ptr);
-
-LIBMEMCACHED_API
-void *memcached_set_user_data(memcached_st *ptr, void *data);
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-
 struct memcached_st {
   /**
     @note these are static and should not change without a call to behavior.
@@ -151,110 +124,69 @@ struct memcached_st {
     bool is_allocated:1;
   } options;
 
+};
+
 #ifdef __cplusplus
-  memcached_st() :
-    state(),
-    flags(),
-    distribution(),
-    hashkit(),
-    continuum_points_counter(),
-    number_of_hosts(),
-    servers(),
-    last_disconnected_server(),
-    snd_timeout(),
-    rcv_timeout(),
-    server_failure_limit(),
-    io_msg_watermark(),
-    io_bytes_watermark(),
-    io_key_prefetch(),
-    cached_errno(),
-    poll_timeout(),
-    connect_timeout(),
-    retry_timeout(),
-    continuum_count(),
-    send_size(),
-    recv_size(),
-    user_data(),
-    next_distribution_rebuild(),
-    prefix_key_length(),
-    number_of_replicas(),
-    distribution_hashkit(),
-    result(),
-    continuum(),
-    allocators(),
-    on_clone(),
-    on_cleanup(),
-    get_key_failure(),
-    delete_trigger(),
-    callbacks(),
-    prefix_key(),
-    options()
+extern "C" {
+#endif
+
+LIBMEMCACHED_API
+void memcached_servers_reset(memcached_st *ptr);
+
+LIBMEMCACHED_API
+memcached_st *memcached_create(memcached_st *ptr);
+
+LIBMEMCACHED_API
+void memcached_free(memcached_st *ptr);
+
+LIBMEMCACHED_API
+memcached_st *memcached_clone(memcached_st *clone, const memcached_st *ptr);
+
+LIBMEMCACHED_API
+void *memcached_get_user_data(const memcached_st *ptr);
+
+LIBMEMCACHED_API
+void *memcached_set_user_data(memcached_st *ptr, void *data);
+
+#ifdef __cplusplus
+} // extern "C"
+#endif
+
+
+// Local Only Inline
+static inline memcached_server_st *memcached_server_instance_fetch(memcached_st *ptr, uint32_t server_key)
+{
+  return &ptr->servers[server_key];
+}
+
+#ifdef __cplusplus
+class Memcached : private memcached_st {
+public:
+
+  Memcached()
   {
     memcached_create(this);
   }
 
-  ~memcached_st()
+  ~Memcached()
   {
     memcached_free(this);
   }
 
-  memcached_st(const memcached_st& source) :
-    state(),
-    flags(),
-    distribution(),
-    hashkit(),
-    continuum_points_counter(),
-    number_of_hosts(),
-    servers(),
-    last_disconnected_server(),
-    snd_timeout(),
-    rcv_timeout(),
-    server_failure_limit(),
-    io_msg_watermark(),
-    io_bytes_watermark(),
-    io_key_prefetch(),
-    cached_errno(),
-    poll_timeout(),
-    connect_timeout(),
-    retry_timeout(),
-    continuum_count(),
-    send_size(),
-    recv_size(),
-    user_data(),
-    next_distribution_rebuild(),
-    prefix_key_length(),
-    number_of_replicas(),
-    distribution_hashkit(),
-    result(),
-    continuum(),
-    allocators(),
-    on_clone(),
-    on_cleanup(),
-    get_key_failure(),
-    delete_trigger(),
-    callbacks(),
-    prefix_key(),
-    options()
-   {
-     memcached_clone(this, &source);
-   }
+  Memcached(const Memcached& source)
+  {
+    memcached_clone(this, &source);
+  }
 
-  memcached_st& operator=(const memcached_st& source)
+  Memcached& operator=(const Memcached& source)
   { 
     memcached_free(this);
     memcached_clone(this, &source);
 
     return *this;
   }
-
-#endif
 };
-
-
-// Local Only Inline
-static inline memcached_server_st *memcached_server_instance_fetch(memcached_st *ptr, uint32_t server_key)
-{
-  return &ptr->servers[server_key];
-}
+#endif
 
 #endif /* __LIBMEMCACHED_MEMCACHED_H__ */
+
index eb0f7b4cf7334196986c20528ecb7db4889ea347..2044cc9109309170699dfa5d53b4f4377171f9ba 100644 (file)
@@ -145,7 +145,7 @@ uint16_t x= htons(80);
       m4_if(PW_LESS_WARNINGS,[no],[
         BASE_WARNINGS_FULL="-Wformat=2 ${W_CONVERSION} -Wstrict-aliasing"
         CC_WARNINGS_FULL="-Wswitch-default -Wswitch-enum -Wwrite-strings"
-        CXX_WARNINGS_FULL="-Weffc++ -Wold-style-cast"
+        CXX_WARNINGS_FULL="-Wold-style-cast"
       ],[
         BASE_WARNINGS_FULL="-Wformat ${NO_STRICT_ALIASING}"
       ])
index 30e14106fa74e931e375e4e6ef01f2883b2e5920..1d0b9e83506ee4bc1911c5178b38ae76bd146af5 100644 (file)
@@ -14,6 +14,7 @@ static test_return_t exists_test(void *obj)
 {
   Hashkit hashk;
   (void)obj;
+  (void)hashk;
 
   return TEST_SUCCESS;
 }
index 73b883428afc37798a14698efdd036c8832eb74b..6404153555c77b434ec21bf3b773b288d46c536a 100644 (file)
@@ -37,6 +37,7 @@ noinst_HEADERS+= \
 noinst_PROGRAMS+= \
                  tests/atomsmasher \
                  tests/hashplus \
+                 tests/memplus \
                  tests/startservers \
                  tests/testapp \
                  tests/testhashkit \
@@ -82,6 +83,10 @@ tests_hashplus_SOURCES = tests/hash_plus.cc
 tests_hashplus_LDADD = $(tests_testhashkit_LDADD)
 tests_hashplus_DEPENDENCIES = $(tests_testhashkit_LDADD)
 
+tests_memplus_SOURCES = tests/mem_plus.cc
+tests_memplus_LDADD = tests/libtest.la tests/libserver.la libmemcached/libmemcached.la
+tests_memplus_DEPENDENCIES = $(tests_memplus_LDADD)
+
 test: test-docs test-mem test-hash memcapable
        echo "Tests completed"
 
@@ -204,7 +209,9 @@ MEMSLAP_COMMAND= clients/memslap $(COLLECTION) $(SUITE)
 
 MEM_COMMAND= tests/testapp $(COLLECTION) $(SUITE)
 
-MEMPLUS_COMMAND= tests/testplus $(COLLECTION) $(SUITE)
+TESTPLUS_COMMAND= tests/testplus $(COLLECTION) $(SUITE)
+
+MEMPLUS_COMMAND= tests/memplus $(COLLECTION) $(SUITE)
 
 HASHPLUS_COMMAND= tests/hashplus $(COLLECTION) $(SUITE)
 
@@ -219,7 +226,7 @@ test-atom: tests/atomsmasher
        $(ATOM_COMMAND)
 
 test-plus: tests/testplus
-       $(MEMPLUS_COMMAND)
+       $(TESTPLUS_COMMAND)
 
 test-hash: tests/testhashkit
        $(HASH_COMMAND)
@@ -227,6 +234,9 @@ test-hash: tests/testhashkit
 test-hashplus: tests/hashplus
        $(HASHPLUS_COMMAND)
 
+test-memplus: tests/memplus
+       $(MEMPLUS_COMMAND)
+
 pahole-mem: tests/testapp
        $(PAHOLE_COMMAND)  $(MEM_COMMAND)
 
@@ -237,7 +247,7 @@ gdb-atom: tests/atomsmasher
        $(DEBUG_COMMAND)  $(ATOM_COMMAND)
 
 gdb-plus: tests/testplus
-       $(DEBUG_COMMAND)  $(MEMPLUS_COMMAND)
+       $(DEBUG_COMMAND)  $(TESTPLUS_COMMAND)
 
 gdb-hash: tests/testhashkit
        $(DEBUG_COMMAND) $(HASH_COMMAND)
@@ -245,6 +255,9 @@ gdb-hash: tests/testhashkit
 gdb-hashplus: tests/hashplus
        $(DEBUG_COMMAND) $(HASHPLUS_COMMAND)
 
+gdb-memplus: tests/memplus
+       $(DEBUG_COMMAND) $(MEMPLUS_COMMAND)
+
 gdb-memslap: clients/memslap
        $(DEBUG_COMMAND)  $(MEMSLAP_COMMAND)
 
@@ -255,7 +268,7 @@ valgrind-atom: tests/atomsmasher
        $(VALGRIND_COMMAND)  $(ATOM_COMMAND)
 
 valgrind-plus: tests/testplus
-       $(VALGRIND_COMMAND)  $(MEMPLUS_COMMAND)
+       $(VALGRIND_COMMAND)  $(TESTPLUS_COMMAND)
 
 valgrind-hash: tests/testhashkit
        $(VALGRIND_COMMAND) $(HASH_COMMAND)
@@ -263,6 +276,9 @@ valgrind-hash: tests/testhashkit
 valgrind-hashplus: tests/hashplus
        $(VALGRIND_COMMAND) $(HASHPLUS_COMMAND)
 
+valgrind-memplus: tests/memplus
+       $(VALGRIND_COMMAND) $(MEMPLUS_COMMAND)
+
 valgrind-memslap: clients/memslap
        $(VALGRIND_COMMAND) $(MEMSLAP_COMMAND)