[PATCH 2/4] cli: refactor notmuch_help_command
authorDavid Bremner <david@tethera.net>
Sun, 5 Apr 2015 20:59:32 +0000 (05:59 +0900)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:42 +0000 (14:48 -0700)
d1/f62d7b74a55e6f7de941e49224f98e0e5dd19d [new file with mode: 0644]

diff --git a/d1/f62d7b74a55e6f7de941e49224f98e0e5dd19d b/d1/f62d7b74a55e6f7de941e49224f98e0e5dd19d
new file mode 100644 (file)
index 0000000..218ff68
--- /dev/null
@@ -0,0 +1,129 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\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 C81556DE1B43\r
+ for <notmuch@notmuchmail.org>; Sun,  5 Apr 2015 14:33:24 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.67\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.67 tagged_above=-999 required=5 tests=[AWL=0.660,\r
+ T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] 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 U22E_QsMuFQl for <notmuch@notmuchmail.org>;\r
+ Sun,  5 Apr 2015 14:33:22 -0700 (PDT)\r
+X-Greylist: delayed 1942 seconds by postgrey-1.35 at arlo;\r
+ Sun, 05 Apr 2015 14:33:22 PDT\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+ [87.98.215.224])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 405A36DE1B42\r
+ for <notmuch@notmuchmail.org>; Sun,  5 Apr 2015 14:33:22 -0700 (PDT)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+ 4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+ id 1Yerfi-0002Ru-TG; Sun, 05 Apr 2015 21:01:34 +0000\r
+Received: (nullmailer pid 29562 invoked by uid 1000); Sun, 05 Apr 2015\r
+ 21:00:40 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 2/4] cli: refactor notmuch_help_command\r
+Date: Mon,  6 Apr 2015 05:59:32 +0900\r
+Message-Id: <1428267574-28797-3-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1428267574-28797-1-git-send-email-david@tethera.net>\r
+References: <1428267574-28797-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://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: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 05 Apr 2015 21:33:24 -0000\r
+\r
+Create a new private entry point _help_for so that we can call help\r
+without simulating a command line invokation to set up the arguments.\r
+---\r
+ notmuch.c | 26 ++++++++++++++++++--------\r
+ 1 file changed, 18 insertions(+), 8 deletions(-)\r
+\r
+diff --git a/notmuch.c b/notmuch.c\r
+index 31672c3..bff941f 100644\r
+--- a/notmuch.c\r
++++ b/notmuch.c\r
+@@ -177,21 +177,19 @@ exec_man (const char *page)\r
+ }\r
\r
+ static int\r
+-notmuch_help_command (unused (notmuch_config_t * config), int argc, char *argv[])\r
++_help_for (const char *topic_name)\r
+ {\r
+     command_t *command;\r
+     help_topic_t *topic;\r
+     unsigned int i;\r
\r
+-    argc--; argv++; /* Ignore "help" */\r
+-\r
+-    if (argc == 0) {\r
++    if (!topic_name) {\r
+       printf ("The notmuch mail system.\n\n");\r
+       usage (stdout);\r
+       return EXIT_SUCCESS;\r
+     }\r
\r
+-    if (strcmp (argv[0], "help") == 0) {\r
++    if (strcmp (topic_name, "help") == 0) {\r
+       printf ("The notmuch help system.\n\n"\r
+               "\tNotmuch uses the man command to display help. In case\n"\r
+               "\tof difficulties check that MANPATH includes the pages\n"\r
+@@ -200,7 +198,7 @@ notmuch_help_command (unused (notmuch_config_t * config), int argc, char *argv[]\r
+       return EXIT_SUCCESS;\r
+     }\r
\r
+-    command = find_command (argv[0]);\r
++    command = find_command (topic_name);\r
+     if (command) {\r
+       char *page = talloc_asprintf (NULL, "notmuch-%s", command->name);\r
+       exec_man (page);\r
+@@ -208,7 +206,7 @@ notmuch_help_command (unused (notmuch_config_t * config), int argc, char *argv[]\r
\r
+     for (i = 0; i < ARRAY_SIZE (help_topics); i++) {\r
+       topic = &help_topics[i];\r
+-      if (strcmp (argv[0], topic->name) == 0) {\r
++      if (strcmp (topic_name, topic->name) == 0) {\r
+           char *page = talloc_asprintf (NULL, "notmuch-%s", topic->name);\r
+           exec_man (page);\r
+       }\r
+@@ -216,10 +214,22 @@ notmuch_help_command (unused (notmuch_config_t * config), int argc, char *argv[]\r
\r
+     fprintf (stderr,\r
+            "\nSorry, %s is not a known command. There's not much I can do to help.\n\n",\r
+-           argv[0]);\r
++           topic_name);\r
+     return EXIT_FAILURE;\r
+ }\r
\r
++static int\r
++notmuch_help_command (unused (notmuch_config_t * config), int argc, char *argv[])\r
++{\r
++    argc--; argv++; /* Ignore "help" */\r
++\r
++    if (argc == 0) {\r
++      return _help_for (NULL);\r
++    }\r
++\r
++    return _help_for (argv[0]);\r
++}\r
++\r
+ /* Handle the case of "notmuch" being invoked with no command\r
+  * argument. For now we just call notmuch_setup_command, but we plan\r
+  * to be more clever about this in the future.\r
+-- \r
+2.1.4\r
+\r