Found bug in multi get where key size was not being calculated.
[m6w6/libmemcached] / src / utilities.c
index 4f5b4526d979670566f3941f37ffdd13977ae3ba..e6db318b2456bd18dab47017d9ef28ff261b7136 100644 (file)
@@ -1,54 +1,38 @@
 #include <ctype.h>
-#include <memcached.h>
+#include <strings.h>
+#include "utilities.h"
 
-void parse_opt_servers(memcached_st *memc,
-                       char *server_strings)
+long int timedif(struct timeval a, struct timeval b)
 {
-  char *string;
-  unsigned int port;
-  char *begin_ptr;
-  char *end_ptr;
+  register int us, s;
 
-  assert(server_strings);
-  assert(memc);
-
-  end_ptr= server_strings + strlen(server_strings);
-
-  for (begin_ptr= server_strings, string= index(server_strings, ','); 
-       begin_ptr != end_ptr; 
-       string= index(begin_ptr, ','))
-  {
-    char buffer[HUGE_STRING_LEN];
-    char *ptr;
-    port= 0;
-
-    memset(buffer, 0, HUGE_STRING_LEN);
-    if (string)
-    {
-      memcpy(buffer, begin_ptr, string - begin_ptr);
-      begin_ptr= string+1;
-    }
-    else
-    {
-      size_t length= strlen(begin_ptr);
-      memcpy(buffer, begin_ptr, length);
-      begin_ptr= end_ptr;
-    }
-
-    ptr= index(buffer, ':');
+  us = a.tv_usec - b.tv_usec;
+  us /= 1000;
+  s = a.tv_sec - b.tv_sec;
+  s *= 1000;
+  return s + us;
+}
 
-    if (ptr)
-    {
-      ptr[0]= 0;
+void version_command(char *command_name)
+{
+  printf("%s v%u.%u\n", command_name, 1, 0);
+  exit(0);
+}
 
-      ptr++;
+void help_command(char *command_name, char *description,
+                  const struct option *long_options,
+                  memcached_programs_help_st *options)
+{
+  unsigned int x;
 
-      port= strtol(ptr, (char **)NULL, 10);
-    }
+  printf("%s v%u.%u\n\n", command_name, 1, 0);
+  printf("\t%s\n\n", description);
+  printf("Current options. A '=' means the option takes a value.\n\n");
 
-    memcached_server_add(memc, buffer, port);
+  for (x= 0; long_options[x].name; x++) 
+    printf("\t --%s%c\n", long_options[x].name, 
+           long_options[x].has_arg ? '=' : ' ');  
 
-    if (isspace(*begin_ptr))
-      begin_ptr++;
-  }
+  printf("\n");
+  exit(0);
 }