2001-12-18 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Tue, 18 Dec 2001 22:54:49 +0000 (22:54 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Tue, 18 Dec 2001 22:54:49 +0000 (22:54 +0000)
* keylist.c (gpgme_op_keylist_end): New function.
* gpgme.h (gpgme_op_keylist_end): New prototype.

* engine.h (gpgme_engine_check_version): Move prototype to ...
* gpgme.h (gpgme_engine_check_version): ... here.

* genkey.c (gpgme_op_genkey_start): Remove unused variable.

NEWS
gpgme/ChangeLog
gpgme/engine.h
gpgme/genkey.c
gpgme/gpgme.h
gpgme/keylist.c

diff --git a/NEWS b/NEWS
index 5f5b02fec8f490a144a943b46e2e48f5c0c65cc1..f59de9029733a93222d5387153cd722792ec7168 100644 (file)
--- a/NEWS
+++ b/NEWS
  * New operation gpgme_op_decrypt_verify() to decrypt and verify
    signatures simultaneously.
 
+ * The new interface gpgme_op_keylist_end() terminates a pending
+   keylist operation.  A keylist operation is also terminated when
+   gpgme_op_keylist_next() returns GPGME_EOF.
+
  * GPGME can be compiled without GnuPG being installed (`--with-gpg=PATH'),
    cross-compiled, or even compiled without support for GnuPG
    (`--without-gpg').
@@ -43,6 +47,7 @@ gpgme_get_engine_info         CHANGED: New format, extended content.
 gpgme_engine_check_version     NEW
 gpgme_decrypt_verify_start     NEW
 gpgme_decrypt_verify           NEW
+gpgme_op_keylist_next          NEW
 gpgme_set_protocol             NEW
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
index 8bccdb9ab34ada0ed1f9fabdaa4ecd985e5de812..38846b0d0070623fe7d9c9e70e4f189d38bbc4dd 100644 (file)
@@ -1,3 +1,13 @@
+2001-12-18  Marcus Brinkmann  <marcus@g10code.de>
+
+       * keylist.c (gpgme_op_keylist_end): New function.
+       * gpgme.h (gpgme_op_keylist_end): New prototype.
+
+       * engine.h (gpgme_engine_check_version): Move prototype to ...
+       * gpgme.h (gpgme_engine_check_version): ... here.
+
+       * genkey.c (gpgme_op_genkey_start): Remove unused variable.
+
 2001-12-18  Marcus Brinkmann  <marcus@g10code.de>
 
        * version.c (gpgme_get_engine_info): Reimplemented.
index e7b7cbc5c794b27e258bcbca3121665be5019b16..c7a83425f303e3c93283488e86055651b33f477b 100644 (file)
@@ -27,7 +27,6 @@
 
 const char *_gpgme_engine_get_path (GpgmeProtocol proto);
 const char *_gpgme_engine_get_version (GpgmeProtocol proto);
-GpgmeError gpgme_engine_check_version (GpgmeProtocol proto);
 const char * _gpgme_engine_get_info (GpgmeProtocol proto);
 GpgmeError _gpgme_engine_new (GpgmeProtocol proto, EngineObject *r_engine);
 void _gpgme_engine_release (EngineObject engine);
index 033369aea83867e66c08a27550e2049a33c9cf5f..295cd7a68d7790995c5c4cd3553c52c89ae32b6c 100644 (file)
@@ -109,7 +109,6 @@ gpgme_op_genkey_start (GpgmeCtx ctx, const char *parms,
                       GpgmeData pubkey, GpgmeData seckey)
 {
   int err = 0;
-  int i;
   const char *s, *s2, *sx;
 
   fail_on_pending_request (ctx);
index 7a0f657dd21090bc5893e643346d9394b55ff8dd..971b1bdf5f161ff063f69509fbbac2e74fe95ae2 100644 (file)
@@ -165,7 +165,6 @@ typedef void (*GpgmeProgressCb)(void *opaque,
                                 const char *what, 
                                 int type, int current, int total );
 
-
 /* Context management */
 GpgmeError gpgme_new (GpgmeCtx *r_ctx);
 void       gpgme_release (GpgmeCtx c);
@@ -277,12 +276,13 @@ GpgmeError gpgme_op_delete_start ( GpgmeCtx c, const GpgmeKey key,
 
 
 /* Key management functions */
-GpgmeError gpgme_op_keylist_start ( GpgmeCtx c,
-                                    const char *pattern, int secret_only );
-GpgmeError gpgme_op_keylist_next ( GpgmeCtx c, GpgmeKey *r_key );
-GpgmeError gpgme_op_trustlist_start ( GpgmeCtx c,
-                                      const char *pattern, int max_level );
-GpgmeError gpgme_op_trustlist_next ( GpgmeCtx c, GpgmeTrustItem *r_item );
+GpgmeError gpgme_op_keylist_start (GpgmeCtx ctx,
+                                  const char *pattern, int secret_only);
+GpgmeError gpgme_op_keylist_next (GpgmeCtx ctx, GpgmeKey *r_key);
+GpgmeError gpgme_op_keylist_end (GpgmeCtx ctx);
+GpgmeError gpgme_op_trustlist_start (GpgmeCtx ctx,
+                                    const char *pattern, int max_level);
+GpgmeError gpgme_op_trustlist_next (GpgmeCtx ctx, GpgmeTrustItem *r_item);
 
 
 
@@ -313,6 +313,8 @@ const char *gpgme_get_engine_info (void);
 const char *gpgme_strerror (GpgmeError err);
 void        gpgme_register_idle (void (*fnc)(void));
 
+/* Engine support functions.  */
+GpgmeError gpgme_engine_check_version (GpgmeProtocol proto);
 
 #ifdef __cplusplus
 }
index ca0cae09a89bf1713355d20e0b81ca2115aeffd2..65bded37f013f594e8ae88d0c606acaff5596386 100644 (file)
@@ -482,7 +482,7 @@ gpgme_op_keylist_next (GpgmeCtx ctx, GpgmeKey *r_key)
          return mk_error (EOF);
        }
       ctx->key_cond = 0; 
-        assert (ctx->key_queue);
+      assert (ctx->key_queue);
     }
   queue_item = ctx->key_queue;
   ctx->key_queue = queue_item->next;
@@ -493,3 +493,24 @@ gpgme_op_keylist_next (GpgmeCtx ctx, GpgmeKey *r_key)
   xfree (queue_item);
   return 0;
 }
+
+/**
+ * gpgme_op_keylist_end:
+ * @c: Context
+ * 
+ * Ends the keylist operation and allows to use the context for some
+ * other operation next.
+ **/
+GpgmeError
+gpgme_op_keylist_end (GpgmeCtx ctx)
+{
+  if (!ctx)
+    return mk_error (Invalid_Value);
+  if (!ctx->pending )
+    return mk_error (No_Request);
+  if (ctx->out_of_core)
+    return mk_error (Out_Of_Core);
+
+  ctx->pending = 0;
+  return 0;
+}