doc/
authorMarcus Brinkmann <mb@g10code.com>
Wed, 27 Jul 2005 01:50:08 +0000 (01:50 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Wed, 27 Jul 2005 01:50:08 +0000 (01:50 +0000)
2005-07-27  Marcus Brinkmann  <marcus@g10code.de>

* gpgme.texi (Decrypt): Add plaintext_filename to
gpgme_decrypt_result_t.
(Verify): Likewise for gpgme_verify_result_t.

gpgme/
2005-07-27  Marcus Brinkmann  <marcus@g10code.de>

* gpgme.h (gpgme_status_code_t): Add GPGME_STATUS_PLAINTEXT.
(struct _gpgme_op_decrypt_result): New member plaintext_filename.
(struct _gpgme_op_verify_result): Likewise.
* ops.h (_gpgme_parse_plaintext): Add prototype.
* op-support.c (_gpgme_parse_plaintext): New function.
* decrypt.c (release_op_data): Release
OPD->result.plaintext_filename.
(_gpgme_decrypt_status_handler): Handle GPGME_STATUS_PLAINTEXT.
* verify.c (release_op_data): Release
OPD->result.plaintext_filename.
(_gpgme_verify_status_handler): Handle GPGME_STATUS_PLAINTEXT.

NEWS
doc/ChangeLog
doc/gpgme.texi
gpgme/ChangeLog
gpgme/decrypt.c
gpgme/gpgme.h
gpgme/op-support.c
gpgme/ops.h
gpgme/verify.c

diff --git a/NEWS b/NEWS
index 9ca3e75710415e23efd07ae06fd7e49e2510bfa3..663f0a2fe467c6c2be6c9ff4261d8b3f4900772b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,11 @@ Noteworthy changes in version 1.1.0 (unreleased)
  * Information about the recipients of an encrypted text is now
    available at decryption time.
 
+ * New status GPGME_STATUS_PLAINTEXT.  This is analyzed by the decrypt
+   and verify handlers, the information about the plaintext filename,
+   if available is made available in the new field plaintext_filename
+   of the respective result structure.
+
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 gpgme_set_engine_info          NEW
 gpgme_ctx_get_engine_info      NEW
@@ -31,6 +36,9 @@ GPGME_STATUS_SC_OP_FAILURE    NEW
 GPGME_STATUS_SC_OP_SUCCESS     NEW
 GPGME_STATUS_CARDCTRL          NEW
 GPGME_STATUS_BACKUP_KEY_CREATED        NEW
+gpgme_decrypt_result_t         EXTENDED: New field plaintext_filename.
+gpgme_verify_result_t          EXTENDED: New field plaintext_filename.
+GPGME_STATUS_PLAINTEXT         NEW
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 
index 1525f8bf1d742cbb58fcedf8039b837ae1f11d51..f8995c886711e747542d8f1393b22ebd6eef5bb4 100644 (file)
@@ -1,3 +1,9 @@
+2005-07-27  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpgme.texi (Decrypt): Add plaintext_filename to
+       gpgme_decrypt_result_t.
+       (Verify): Likewise for gpgme_verify_result_t.
+
 2005-06-03  Marcus Brinkmann  <marcus@g10code.de>
 
        * gpgme.texi (Verify): Add information about new fields in
index d5c14de4d7993329400c9e7c0abc8a8b6c732bbe..61d56b71b13b95feb7a7ed2efceb5a5595d8ece2 100644 (file)
@@ -3668,6 +3668,10 @@ This is true if the key was not used according to its policy.
 
 @item gpgme_recipient_t recipient
 This is a linked list of recipients to which this message was encrypted.
+
+@item char *plaintext_filename
+This is the filename of the original plaintext message file if it is
+known, otherwise this is a null pointer.
 @end table
 @end deftp
 
@@ -3880,6 +3884,10 @@ a @code{NULL} pointer.  The structure contains the following member:
 @item gpgme_signature_t signatures
 A linked list with information about all signatures for which a
 verification was attempted.
+
+@item char *plaintext_filename
+This is the filename of the original plaintext message file if it is
+known, otherwise this is a null pointer.
 @end table
 @end deftp
 
index b59c04fd986cef877dc88a6ae686c75fa3ffb853..bd25f51ba7cf301b6fe24a1e399f06a7867e7fa0 100644 (file)
@@ -1,3 +1,17 @@
+2005-07-27  Marcus Brinkmann  <marcus@g10code.de>
+
+       * gpgme.h (gpgme_status_code_t): Add GPGME_STATUS_PLAINTEXT.
+       (struct _gpgme_op_decrypt_result): New member plaintext_filename.
+       (struct _gpgme_op_verify_result): Likewise.
+       * ops.h (_gpgme_parse_plaintext): Add prototype.
+       * op-support.c (_gpgme_parse_plaintext): New function.
+       * decrypt.c (release_op_data): Release
+       OPD->result.plaintext_filename.
+       (_gpgme_decrypt_status_handler): Handle GPGME_STATUS_PLAINTEXT.
+       * verify.c (release_op_data): Release
+       OPD->result.plaintext_filename.
+       (_gpgme_verify_status_handler): Handle GPGME_STATUS_PLAINTEXT.
+
 2005-07-26  Marcus Brinkmann  <marcus@g10code.de>
 
        * keylist.c (gpgme_get_key): Allow key IDs.
index 0f805495d81da2c92342e6155e205f521057b238..91e6c3056cbbcfb2665a88cbdc27a5252201613b 100644 (file)
@@ -53,6 +53,9 @@ release_op_data (void *hook)
 
   if (opd->result.unsupported_algorithm)
     free (opd->result.unsupported_algorithm);
+
+  if (opd->result.plaintext_filename)
+    free (opd->result.plaintext_filename);
 }
 
 
@@ -238,6 +241,11 @@ _gpgme_decrypt_status_handler (void *priv, gpgme_status_code_t code,
       }
       break;
 
+    case GPGME_STATUS_PLAINTEXT:
+      err = _gpgme_parse_plaintext (args, &opd->result.plaintext_filename);
+      if (err)
+       return err;
+      
     default:
       break;
     }
index 18bd98304018ea5a2c93bc43ff4f0539baa4c00c..0893096201ee2454089278c5cb0b7a3a565972ff 100644 (file)
@@ -403,7 +403,9 @@ typedef enum
     GPGME_STATUS_SC_OP_FAILURE,
     GPGME_STATUS_SC_OP_SUCCESS,
     GPGME_STATUS_CARDCTRL,
-    GPGME_STATUS_BACKUP_KEY_CREATED
+    GPGME_STATUS_BACKUP_KEY_CREATED,
+
+    GPGME_STATUS_PLAINTEXT
   }
 gpgme_status_code_t;
 
@@ -1110,6 +1112,9 @@ struct _gpgme_op_decrypt_result
   int _unused : 31;
 
   gpgme_recipient_t recipients;
+
+  /* The original filename of the plaintext message, if available.  */
+  char *plaintext_filename;
 };
 typedef struct _gpgme_op_decrypt_result *gpgme_decrypt_result_t;
 
@@ -1259,6 +1264,9 @@ typedef struct _gpgme_signature *gpgme_signature_t;
 struct _gpgme_op_verify_result
 {
   gpgme_signature_t signatures;
+
+  /* The original filename of the plaintext message, if available.  */
+  char *plaintext_filename;
 };
 typedef struct _gpgme_op_verify_result *gpgme_verify_result_t;
 
index ba220a3bd4c6dab46a0a572b7d78321d9051701a..68ff77d09c6cd7e800e4e26271e51c568d9826bb 100644 (file)
@@ -123,6 +123,8 @@ _gpgme_op_reset (gpgme_ctx_t ctx, int type)
 }
 
 \f
+/* Parse the INV_RECP status line in ARGS and return the result in
+   KEY.  */
 gpgme_error_t
 _gpgme_parse_inv_recp (char *args, gpgme_invalid_key_t *key)
 {
@@ -209,3 +211,47 @@ _gpgme_parse_inv_recp (char *args, gpgme_invalid_key_t *key)
   *key = inv_key;
   return 0;
 }
+
+
+/* Parse the PLAINTEXT status line in ARGS and return the result in
+   FILENAMEP.  */
+gpgme_error_t
+_gpgme_parse_plaintext (char *args, char **filenamep)
+{
+  char *tail;
+
+  while (*args == ' ')
+    args++;
+  if (*args == '\0')
+    return 0;
+
+  /* First argument is file type.  */
+  while (*args != ' ' && *args != '\0')
+    args++;
+  while (*args == ' ')
+    args++;
+  if (*args == '\0')
+    return 0;
+
+  /* Second argument is the timestamp.  */
+  while (*args != ' ' && *args != '\0')
+    args++;
+  while (*args == ' ')
+    args++;
+  if (*args == '\0')
+    return 0;
+
+  tail = args;
+  while (*tail != ' ' && *tail != '\0')
+    tail++;
+  *tail = '\0';
+  if (filenamep && *args != '\0')
+    {
+      char *filename = strdup (args);
+      if (!filename)
+       return gpg_error_from_errno (errno);
+
+      *filenamep = filename;
+    }
+  return 0;
+}
index 3b4c2cdefc4af0090bd7f086cb573661b1cbd6dc..1877caabd0ea5be2a504265b26109f82267da978 100644 (file)
@@ -54,6 +54,11 @@ gpgme_error_t _gpgme_op_reset (gpgme_ctx_t ctx, int synchronous);
    KEY.  */
 gpgme_error_t _gpgme_parse_inv_recp (char *args, gpgme_invalid_key_t *key);
 
+/* Parse the PLAINTEXT status line in ARGS and return the result in
+   FILENAMEP.  */
+gpgme_error_t _gpgme_parse_plaintext (char *args, char **filenamep);
+
+
 \f
 /* From verify.c.  */
 gpgme_error_t _gpgme_op_verify_init_result (gpgme_ctx_t ctx);
index b7fd147d185086599e79aa44f1722ec74f16936e..52f700b212cb04fe856ca401083e827d80ca563f 100644 (file)
@@ -70,6 +70,9 @@ release_op_data (void *hook)
       free (sig);
       sig = next;
     }
+
+  if (opd->result.plaintext_filename)
+    free (opd->result.plaintext_filename);
 }
 
 
@@ -695,6 +698,11 @@ _gpgme_verify_status_handler (void *priv, gpgme_status_code_t code, char *args)
       opd->only_newsig_seen = 0;
       break;
 
+    case GPGME_STATUS_PLAINTEXT:
+      err = _gpgme_parse_plaintext (args, &opd->result.plaintext_filename);
+      if (err)
+       return err;
+
     default:
       break;
     }