doxy
[oweals/gnunet.git] / src / include / gnunet_namestore_service.h
index 00c8ba26be7d683d5a579afe10dd7dcab9dbe475..ee8654948394ae5bd0c8f4f5ab168a3f1133ca73 100644 (file)
@@ -162,8 +162,26 @@ enum GNUNET_NAMESTORE_RecordFlags
    * This expiration time of the record is a relative
    * time (not an absolute time).
    */
-  GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION = 8
+  GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION = 8,
 
+  /**
+   * This record should not be used unless all (other) records with an absolute
+   * expiration time have expired.
+   */
+  GNUNET_NAMESTORE_RF_SHADOW_RECORD = 16
+
+  /**
+   * When comparing flags for record equality for removal,
+   * which flags should must match (in addition to the type,
+   * name, expiration value and data of the record)?  All flags
+   * that are not listed here will be ignored for this purpose.
+   * (for example, we don't expect that users will remember to
+   * pass the '--private' option when removing a record from
+   * the namestore, hence we don't require this particular option
+   * to match upon removal).  See also
+   * 'GNUNET_NAMESTORE_records_cmp'.
+   */
+#define GNUNET_NAMESTORE_RF_RCMP_FLAGS (GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION)
 };
 
 
@@ -175,6 +193,10 @@ struct GNUNET_NAMESTORE_RecordData
 
   /**
    * Binary value stored in the DNS record.
+   * FIXME: goofy API: sometimes 'data' is individually
+   * 'malloc'ed, sometimes it points into some existing
+   * data area (so sometimes this should be a 'void *',
+   * sometimes a 'const void *').  This is unclean.
    */
   const void *data;
 
@@ -256,6 +278,7 @@ GNUNET_NAMESTORE_verify_signature (const struct GNUNET_CRYPTO_RsaPublicKeyBinary
  * Store an item in the namestore.  If the item is already present,
  * the expiration time is updated to the max of the existing time and
  * the new time.  This API is used by the authority of a zone.
+ * FIXME: consider allowing to pass multiple records in one call!
  *
  * @param h handle to the namestore
  * @param pkey private key of the zone
@@ -325,7 +348,14 @@ typedef void (*GNUNET_NAMESTORE_RecordProcessor) (void *cls,
 
 /**
  * Get a result for a particular key from the namestore.  The processor
- * will only be called once.  
+ * will only be called once.  When using this functions, relative expiration
+ * times will be converted to absolute expiration times and a signature
+ * will be created if we are the authority.  The record data and signature
+ * passed to 'proc' is thus always suitable for passing on to other peers
+ * (if we are the authority).  If the record type is NOT set to 'ANY' and
+ * if we are NOT the authority, then non-matching records may be omitted
+ * from the result and no valid signature can be created; in this case,
+ * 'signature' will be NULL and the result cannot be given to other peers.
  *
  * @param h handle to the namestore
  * @param zone zone to look up a record from
@@ -339,10 +369,10 @@ typedef void (*GNUNET_NAMESTORE_RecordProcessor) (void *cls,
  */
 struct GNUNET_NAMESTORE_QueueEntry *
 GNUNET_NAMESTORE_lookup_record (struct GNUNET_NAMESTORE_Handle *h, 
-                             const struct GNUNET_CRYPTO_ShortHashCode *zone,
-                             const char *name,
-                             uint32_t record_type,
-                             GNUNET_NAMESTORE_RecordProcessor proc, void *proc_cls);
+                               const struct GNUNET_CRYPTO_ShortHashCode *zone,
+                               const char *name,
+                               uint32_t record_type,
+                               GNUNET_NAMESTORE_RecordProcessor proc, void *proc_cls);
 
 
 /**
@@ -373,15 +403,20 @@ GNUNET_NAMESTORE_zone_to_name (struct GNUNET_NAMESTORE_Handle *h,
  *
  * By specifying a 'zone' of NULL and setting 'GNUNET_NAMESTORE_RF_AUTHORITY'
  * in 'must_have_flags', we can iterate over all records for which we are
- * the authority.  In this case, the 'GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION'
+ * the authority (the 'authority' flag will NOT be set in the returned
+ * records anyway).  
+ *
+ * The 'GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION'
  * bit in 'must_have_flags' has a special meaning:
  *
  * 0) If the bit is clear, all relative expriation times are converted to
  *    absolute expiration times.  This is useful for performing DHT PUT
- *    operations (and zone transfers) of our zone.
+ *    operations (and zone transfers) of our zone.  The generated signatures
+ *    will be valid for other peers.
  * 1) if it is set, it means that relative expiration times should be
  *    preserved when returned (this is useful for the zone editor user 
- *    interface).
+ *    interface).  No signatures will be created in this case, as 
+ *    signatures must not cover records with relative expiration times.
  *
  * Note that not all queries against this interface are equally performant
  * as for some combinations no efficient index may exist.
@@ -416,7 +451,9 @@ GNUNET_NAMESTORE_zone_iterator_next (struct GNUNET_NAMESTORE_ZoneIterator *it);
 
 
 /**
- * Stops iteration and releases the namestore handle for further calls.
+ * Stops iteration and releases the namestore handle for further calls.  Must
+ * be called on any iteration that has not yet completed prior to calling
+ * 'GNUNET_NAMESTORE_disconnect'.
  *
  * @param it the iterator
  */
@@ -426,7 +463,9 @@ GNUNET_NAMESTORE_zone_iteration_stop (struct GNUNET_NAMESTORE_ZoneIterator *it);
 
 /**
  * Cancel a namestore operation.  The final callback from the
- * operation must not have been done yet.
+ * operation must not have been done yet.  Must be called on any
+ * namestore operation that has not yet completed prior to calling
+ * 'GNUNET_NAMESTORE_disconnect'.
  *
  * @param qe operation to cancel
  */
@@ -451,6 +490,7 @@ size_t
 GNUNET_NAMESTORE_records_get_size (unsigned int rd_count,
                                   const struct GNUNET_NAMESTORE_RecordData *rd);
 
+
 /**
  * Serialize the given records to the given destination buffer.
  *
@@ -494,6 +534,7 @@ GNUNET_NAMESTORE_records_deserialize (size_t len,
 int
 GNUNET_NAMESTORE_check_name (const char * name);
 
+
 /**
  * Convert the 'value' of a record to a string.
  *
@@ -545,6 +586,16 @@ const char *
 GNUNET_NAMESTORE_number_to_typename (uint32_t type);
 
 
+/**
+ * Test if a given record is expired.
+ * 
+ * @return GNUNET_YES if the record is expired,
+ *         GNUNET_NO if not
+ */
+int
+GNUNET_NAMESTORE_is_expired (const struct GNUNET_NAMESTORE_RecordData *rd);
+
+
 #if 0                           /* keep Emacsens' auto-indent happy */
 {
 #endif