Updated for help commands (and a little bit on ketama)
authorBrian Aker <brian@tangent.org>
Mon, 8 Oct 2007 19:57:07 +0000 (12:57 -0700)
committerBrian Aker <brian@tangent.org>
Mon, 8 Oct 2007 19:57:07 +0000 (12:57 -0700)
ChangeLog
lib/memcached_hash.c
src/client_options.h
src/memcat.c
src/utilities.c
src/utilities.h

index 7f745df0712dc9104ff5f5648fccae1199ba8c3e..09f260aa48ed4aaf384459eb5a04f5d5fc9f60b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,7 @@
     set the servers list.
   * fixed memcached_stat method (and now memstat works)
   * server connect now happens on demand.
+  * Help for all command line applications
 
 0.4 Wed Oct  3 10:28:50 PDT 2007
   * Added buffered IO to write calls for keys
index cb3d5218391037f052061bbfc64f2c552fb58277..4d0d6cf2e782c46db99f57d12365147ede179708 100644 (file)
@@ -21,7 +21,13 @@ unsigned int memcached_generate_hash(memcached_st *ptr, char *key, size_t key_le
   else
     return_value= internal_generate_hash(key, key_length);
 
-  return return_value % ptr->number_of_hosts;
+  if (ptr->flags & MEM_USE_KETAMA)
+  {
+    assert(0);
+    return 0;
+  }
+  else
+    return return_value % ptr->number_of_hosts;
 }
 
 static unsigned int internal_generate_hash(char *key, size_t key_length)
index 03eac3cc4cdcd991ce101161b10c179005ddff79..9242884e578e474f762fb2dd5d2476dda84005cc 100644 (file)
@@ -1,3 +1,8 @@
+#ifndef __CLIENT_OPTIONS_H__
+#define __CLIENT_OPTIONS_H__
+
+typedef struct memcached_help_text_st memcached_help_text_st;
+
 typedef enum {
   OPT_SERVERS= 's',
   OPT_VERSION= 'V',
@@ -17,3 +22,5 @@ typedef enum {
   OPT_SLAP_TCP_NODELAY,
   OPT_FLUSH,
 } memcached_options;
+
+#endif /* CLIENT_OPTIONS */
index 1c9082f55a886a101f60f7517e19de37e0571786..88018e19466f1290161a5556de5cc1e6cc34c593 100644 (file)
@@ -3,7 +3,6 @@
 #include <getopt.h>
 #include <memcached.h>
 
-#include "client_options.h"
 #include "utilities.h"
 
 #define PROGRAM_NAME "memcat"
index e6db318b2456bd18dab47017d9ef28ff261b7136..de11ee2d404f0c7c529de17c1f982f73b5c7cc14 100644 (file)
@@ -2,6 +2,7 @@
 #include <strings.h>
 #include "utilities.h"
 
+
 long int timedif(struct timeval a, struct timeval b)
 {
   register int us, s;
@@ -19,6 +20,32 @@ void version_command(char *command_name)
   exit(0);
 }
 
+char *lookup_help(memcached_options option)
+{
+  switch (option)
+  {
+  case OPT_SERVERS: return("List which servers you wish to connect to.");
+  case OPT_VERSION: return("Display the version of the application and then exit.");
+  case OPT_HELP: return("Diplay this message and then exit.");
+  case OPT_VERBOSE: return("Give more details on the progression of the application.");
+  case OPT_DEBUG: return("Provide output only useful for debugging.");
+  case OPT_FLAG: return("Provide flag information for storage operation.");
+  case OPT_EXPIRE: return("Set the expire option for the object.");
+  case OPT_SET: return("Use set command with memcached when storing.");
+  case OPT_REPLACE: return("Use replace command with memcached when storing.");
+  case OPT_ADD: return("Use add command with memcached when storing.");
+  case OPT_SLAP_EXECUTE_NUMBER: return("Number of times to execute the given test.");
+  case OPT_SLAP_INITIAL_LOAD: return("Number of key pairs to load before executing tests.");
+  case OPT_SLAP_TEST: return("Test to run.");
+  case OPT_SLAP_CONCURRENCY: return("Number of users to simulate with load.");
+  case OPT_SLAP_NON_BLOCK: return("Set TCP up to use non-blocking IO.");
+  case OPT_SLAP_TCP_NODELAY: return("Set TCP socket up to use nodelay.");
+  case OPT_FLUSH: return("Flush servers before running tests.");
+  };
+
+  return "forgot to document this one :)";
+}
+
 void help_command(char *command_name, char *description,
                   const struct option *long_options,
                   memcached_programs_help_st *options)
@@ -30,8 +57,14 @@ void help_command(char *command_name, char *description,
   printf("Current options. A '=' means the option takes a value.\n\n");
 
   for (x= 0; long_options[x].name; x++) 
+  {
+    char *help_message;
+
     printf("\t --%s%c\n", long_options[x].name, 
            long_options[x].has_arg ? '=' : ' ');  
+    if ((help_message= lookup_help(long_options[x].val)))
+      printf("\t\t%s\n", help_message);
+  }
 
   printf("\n");
   exit(0);
index 5a1b916dbcb24b2853c6d36287be24abf8956b1a..857f78039694409d8f64dd2dd84ad7e7842b82f8 100644 (file)
@@ -1,5 +1,6 @@
 #include <memcached.h>
 #include <getopt.h>
+#include "client_options.h"
 
 typedef struct memcached_programs_help_st memcached_programs_help_st;