- added check against statistics
[oweals/gnunet.git] / src / gns / gnunet-gns.c
index b56423c04eeba6bcdd496244b3fe49e01bea67de..b7102eaa9ec1bdd110c3d96f17ab29f25c883730 100644 (file)
@@ -19,7 +19,7 @@
 */
 /**
  * @file gnunet-gns.c
- * @brief command line tool to manipulate the local zone
+ * @brief command line tool to access distributed GNS
  * @author Christian Grothoff
  *
  * TODO:
  */
 #include "platform.h"
 #include <gnunet_util_lib.h>
+#include <gnunet_dnsparser_lib.h>
 #include <gnunet_namestore_service.h>
+#include <gnunet_gns_service.h>
 
 /**
- * Handle to the namestore.
+ * Handle to GNS service.
  */
-static struct GNUNET_NAMESTORE_Handle *ns;
+static struct GNUNET_GNS_Handle *gns;
 
 /**
- * Hash of the public key of our zone.
+ * GNS name to shorten. (-s option)
  */
-static GNUNET_HashCode zone;
+static char *shorten_name;
 
 /**
- * Private key for the our zone.
+ * GNS name to lookup. (-u option)
  */
-static struct GNUNET_CRYPTO_RsaPrivateKey *zone_pkey;
+static char *lookup_name;
 
-/**
- * Keyfile to manipulate.
- */
-static char *keyfile;  
-
-/**
- * Desired action is to add a record.
- */
-static int add;
-
-/**
- * Desired action is to list records.
- */
-static int list;
-
-/**
- * Desired action is to remove a record.
- */
-static int del;
-
-/**
- * Name of the records to add/list/remove.
- */
-static char *name;
 
 /**
- * Value of the record to add/remove.
+ * record type to look up (-t option)
  */
-static char *value;
+static char *lookup_type;
 
 /**
- * Type of the record to add/remove, NULL to remove all.
+ * name to look up authority for (-a option)
  */
-static char *typestring;
+static char *auth_name;
 
-/**
- * Desired expiration time.
- */
-static char *expirationstring;
-               
+static enum GNUNET_GNS_RecordType rtype;
 
 /**
  * Task run on shutdown.  Cleans up everything.
@@ -95,18 +69,56 @@ static void
 do_shutdown (void *cls,
             const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
-  if (NULL != ns)
+  if (NULL != gns)
   {
-    GNUNET_NAMESTORE_disconnect (ns, GNUNET_NO);
-    ns = NULL;
+    GNUNET_GNS_disconnect (gns);
+    gns = NULL;
   }
-  if (NULL != zone_pkey)
+}
+
+
+static void
+process_shorten_result(void* cls, const char* nshort)
+{
+  printf("%s shortened to %s\n", (char*) cls, nshort);
+  GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
+}
+
+static void
+process_lookup_result(void* cls, uint32_t rd_count,
+                      const struct GNUNET_NAMESTORE_RecordData *rd)
+{
+  int i;
+  char* name = (char*) cls;
+  const char* typename;
+  char* string_val;
+
+  if (rd_count == 0)
+    printf("No results.\n");
+  else
+    printf("%s:\n", name);
+
+
+
+  for (i=0; i<rd_count; i++)
   {
-    GNUNET_CRYPTO_rsa_key_free (zone_pkey);
-    zone_pkey = NULL;
+    typename = GNUNET_NAMESTORE_number_to_typename (rd[i].record_type);
+    string_val = GNUNET_NAMESTORE_value_to_string(rd[i].record_type,
+                                                  rd[i].data,
+                                                  rd[i].data_size);
+    printf("Got %s record: %s\n", typename, string_val);
+
   }
+
+  GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
 }
 
+static void
+process_auth_result(void* cls, const char* auth)
+{
+  printf ("%s\n", auth);
+  GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
+}
 
 /**
  * Main function that will be run.
@@ -120,35 +132,41 @@ static void
 run (void *cls, char *const *args, const char *cfgfile,
      const struct GNUNET_CONFIGURATION_Handle *cfg)
 {
-  struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pub;
+  gns = GNUNET_GNS_connect (cfg);
+  if (lookup_type != NULL)
+    rtype = GNUNET_NAMESTORE_typename_to_number(lookup_type);
+  else
+    rtype = GNUNET_GNS_RECORD_TYPE_A;
 
-  if (NULL == keyfile)
+  if (NULL == gns)
   {
-    fprintf (stderr,
-            _("Option `%s' not given, but I need a zone key file!\n"),
-            "z");
+    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+               _("Failed to connect to GNS\n"));
     return;
   }
-  zone_pkey = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
-  GNUNET_free (keyfile);
-  keyfile = NULL;
-  if (NULL == zone_pkey)
+  
+  if (shorten_name != NULL)
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-               _("Failed to read or create private zone key\n"));
-    return;
+    /** shorten name */
+    GNUNET_GNS_shorten(gns, shorten_name, &process_shorten_result,
+                       shorten_name);
   }
-  GNUNET_CRYPTO_rsa_key_get_public (zone_pkey,
-                                   &pub);
-  GNUNET_CRYPTO_hash (&pub, sizeof (pub), &zone);
-  ns = GNUNET_NAMESTORE_connect (cfg);
-  if (NULL == ns)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-                 _("Failed to connect to namestore\n"));
-      return;
-    }
-  GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
+
+  if (lookup_name != NULL)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                "Lookup\n");
+    GNUNET_GNS_lookup(gns, lookup_name, rtype,
+                      &process_lookup_result, lookup_name);
+  }
+
+  if (auth_name != NULL)
+  {
+    GNUNET_GNS_get_authority(gns, auth_name, &process_auth_result, auth_name);
+  }
+  
+  // FIXME: do work here...
+  //GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
 }
 
 
@@ -163,30 +181,18 @@ int
 main (int argc, char *const *argv)
 {
   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
-    {'a', "add", NULL,
-     gettext_noop ("add record"), 0,
-     &GNUNET_GETOPT_set_one, &add},   
-    {'d', "delete", NULL,
-     gettext_noop ("delete record"), 0,
-     &GNUNET_GETOPT_set_one, &del},   
-    {'D', "display", NULL,
-     gettext_noop ("display records"), 0,
-     &GNUNET_GETOPT_set_one, &list},   
-    {'e', "expiration", "TIME",
-     gettext_noop ("expiration time to use (for adding only)"), 1,
-     &GNUNET_GETOPT_set_string, &expirationstring},   
-    {'n', "name", "NAME",
-     gettext_noop ("name of the record to add/delete/display"), 1,
-     &GNUNET_GETOPT_set_string, &name},   
-    {'t', "type", "TYPE",
-     gettext_noop ("type of the record to add/delete/display"), 1,
-     &GNUNET_GETOPT_set_string, &typestring},   
-    {'V', "value", "VALUE",
-     gettext_noop ("value of the record to add/delete"), 1,
-     &GNUNET_GETOPT_set_string, &value},   
-    {'z', "zonekey", "FILENAME",
-     gettext_noop ("filename with the zone key"), 1,
-     &GNUNET_GETOPT_set_string, &keyfile},   
+    {'s', "shorten", NULL,
+     gettext_noop ("try to shorten a given GNS name"), 1,
+     &GNUNET_GETOPT_set_string, &shorten_name},
+    {'u', "lookup", NULL,
+      gettext_noop ("Lookup a record using GNS (NOT IMPLEMENTED)"), 1,
+      &GNUNET_GETOPT_set_string, &lookup_name},
+    {'a', "authority", NULL,
+      gettext_noop ("Get the authority of a particular name"), 1,
+      &GNUNET_GETOPT_set_string, &auth_name},
+    {'t', "type", NULL,
+      gettext_noop ("Specify the type of the record lookup"), 1,
+      &GNUNET_GETOPT_set_string, &lookup_type},
     GNUNET_GETOPT_OPTION_END
   };
 
@@ -196,7 +202,7 @@ main (int argc, char *const *argv)
   ret =
       (GNUNET_OK ==
        GNUNET_PROGRAM_run (argc, argv, "gnunet-gns",
-                           _("GNUnet GNS zone manipulation tool"), 
+                           _("GNUnet GNS access tool"), 
                           options,
                            &run, NULL)) ? 0 : 1;