[Patch v3 1/8] crypto: refactor context creation to facilitate further work
authorDavid Bremner <david@tethera.net>
Mon, 14 Dec 2015 13:38:50 +0000 (09:38 +2000)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:50:12 +0000 (14:50 -0700)
e6/c4d9020a551ad877ce7c8078df5834699a5763 [new file with mode: 0644]

diff --git a/e6/c4d9020a551ad877ce7c8078df5834699a5763 b/e6/c4d9020a551ad877ce7c8078df5834699a5763
new file mode 100644 (file)
index 0000000..7fb9545
--- /dev/null
@@ -0,0 +1,100 @@
+Return-Path: <bremner@tethera.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id DB7216DE1B1C\r
+ for <notmuch@notmuchmail.org>; Mon, 14 Dec 2015 05:39:18 -0800 (PST)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.316\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.316 tagged_above=-999 required=5 tests=[AWL=0.235,\r
+  RP_MATCHES_RCVD=-0.55, SPF_PASS=-0.001] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id K8CcWre0O-GB for <notmuch@notmuchmail.org>;\r
+ Mon, 14 Dec 2015 05:39:13 -0800 (PST)\r
+Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 4EE9D6DE0FF8\r
+ for <notmuch@notmuchmail.org>; Mon, 14 Dec 2015 05:39:11 -0800 (PST)\r
+Received: from remotemail by fethera.tethera.net with local (Exim 4.84)\r
+ (envelope-from <bremner@tethera.net>)\r
+ id 1a8TLG-0008Eq-G7; Mon, 14 Dec 2015 08:39:06 -0500\r
+Received: (nullmailer pid 31794 invoked by uid 1000);\r
+ Mon, 14 Dec 2015 13:39:04 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v3 1/8] crypto: refactor context creation to facilitate\r
+ further work\r
+Date: Mon, 14 Dec 2015 09:38:50 -0400\r
+Message-Id: <1450100337-31655-2-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.6.2\r
+In-Reply-To: <1450100337-31655-1-git-send-email-david@tethera.net>\r
+References: <1450100337-31655-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Mon, 14 Dec 2015 13:39:19 -0000\r
+\r
+From: Jani Nikula <jani@nikula.org>\r
+\r
+Let the context creation functions decide how to handle multiple calls\r
+and cache the crypto context. No functional changes.\r
+---\r
+ crypto.c | 19 ++++++++++---------\r
+ 1 file changed, 10 insertions(+), 9 deletions(-)\r
+\r
+diff --git a/crypto.c b/crypto.c\r
+index a6eb27d..1187ad7 100644\r
+--- a/crypto.c\r
++++ b/crypto.c\r
+@@ -22,14 +22,20 @@\r
\r
+ /* Create a GPG context (GMime 2.6) */\r
+ static notmuch_crypto_context_t *\r
+-create_gpg_context (const char *gpgpath)\r
++create_gpg_context (notmuch_crypto_t *crypto)\r
+ {\r
+     notmuch_crypto_context_t *gpgctx;\r
\r
++    if (crypto->gpgctx)\r
++      return crypto->gpgctx;\r
++\r
+     /* TODO: GMimePasswordRequestFunc */\r
+-    gpgctx = g_mime_gpg_context_new (NULL, gpgpath ? gpgpath : "gpg");\r
+-    if (! gpgctx)\r
++    gpgctx = g_mime_gpg_context_new (NULL, crypto->gpgpath ? crypto->gpgpath : "gpg");\r
++    if (! gpgctx) {\r
++      fprintf (stderr, "Failed to construct gpg context.\n");\r
+       return NULL;\r
++    }\r
++    crypto->gpgctx = gpgctx;\r
\r
+     g_mime_gpg_context_set_use_agent ((GMimeGpgContext *) gpgctx, TRUE);\r
+     g_mime_gpg_context_set_always_trust ((GMimeGpgContext *) gpgctx, FALSE);\r
+@@ -57,12 +63,7 @@ notmuch_crypto_get_context (notmuch_crypto_t *crypto, const char *protocol)\r
+      */\r
+     if (strcasecmp (protocol, "application/pgp-signature") == 0 ||\r
+       strcasecmp (protocol, "application/pgp-encrypted") == 0) {\r
+-      if (! crypto->gpgctx) {\r
+-          crypto->gpgctx = create_gpg_context (crypto->gpgpath);\r
+-          if (! crypto->gpgctx)\r
+-              fprintf (stderr, "Failed to construct gpg context.\n");\r
+-      }\r
+-      cryptoctx = crypto->gpgctx;\r
++      cryptoctx = create_gpg_context (crypto);\r
+     } else {\r
+       fprintf (stderr, "Unknown or unsupported cryptographic protocol.\n");\r
+     }\r
+-- \r
+2.6.2\r
+\r