Re: argument parsing refactoring round3
authorDavid Bremner <david@tethera.net>
Wed, 8 Apr 2015 23:53:56 +0000 (08:53 +0900)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:47 +0000 (14:48 -0700)
5f/2632e145c41dc6de744f4b7c1ca912fda35e41 [new file with mode: 0644]

diff --git a/5f/2632e145c41dc6de744f4b7c1ca912fda35e41 b/5f/2632e145c41dc6de744f4b7c1ca912fda35e41
new file mode 100644 (file)
index 0000000..03891b7
--- /dev/null
@@ -0,0 +1,119 @@
+Return-Path: <david@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 21C1D6DE1625\r
+ for <notmuch@notmuchmail.org>; Wed,  8 Apr 2015 16:56:23 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.389\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.389 tagged_above=-999 required=5 tests=[AWL=0.389]\r
+ 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 9TNm5lY5n7hz for <notmuch@notmuchmail.org>;\r
+ Wed,  8 Apr 2015 16:56:21 -0700 (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 B5D6E6DE1552\r
+ for <notmuch@notmuchmail.org>; Wed,  8 Apr 2015 16:56:20 -0700 (PDT)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+ 4.80) (envelope-from <david@tethera.net>)\r
+ id 1YfznS-0006nL-B7; Wed, 08 Apr 2015 23:54:14 +0000\r
+Received: (nullmailer pid 30875 invoked by uid 1000); Wed, 08 Apr 2015\r
+ 23:53:56 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: guyzmo <guyzmo+notmuch@m0g.net>\r
+Subject: Re: argument parsing refactoring round3\r
+In-Reply-To: <20150408143147.GD5218@vilya.online.net>\r
+References: <871tjws8w8.fsf@qmul.ac.uk>\r
+ <1428435042-16503-1-git-send-email-david@tethera.net>\r
+ <20150408143147.GD5218@vilya.online.net>\r
+User-Agent: Notmuch/0.19+96~g703c8f9 (http://notmuchmail.org) Emacs/24.4.1\r
+ (x86_64-pc-linux-gnu)\r
+Date: Thu, 09 Apr 2015 08:53:56 +0900\r
+Message-ID: <87oamy41nv.fsf@maritornes.cs.unb.ca>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+Cc: notmuch@notmuchmail.org\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: Wed, 08 Apr 2015 23:56:23 -0000\r
+\r
+guyzmo <guyzmo+notmuch@m0g.net> writes:\r
+\r
+> Hi David,\r
+\r
+[...]\r
+\r
+> I see you patching and repatching notmuch's CLI to improve it, and I was\r
+> wondering whether you had considered actually using `docopt` to generate\r
+> the CLI parser from the output.\r
+>\r
+> It's possible to chain docopts to create a CLI UI very much alike the\r
+> git command, and it's more easily maintainable, as you're actually\r
+> generating the code from the `--help` page instead of the other way\r
+> around, making you focus on how you want the user to use the CLI only.\r
+\r
+[...]\r
+\r
+> what do you believe?\r
+\r
+It's an interesting idea, and if I was faced with writing CLI parser\r
+from scratch (i.e. 4 years ago) I would investigate it more seriously.\r
+As it stands, I'm not particularly annoyed with the notmuch argument\r
+parsing code, so I mainly see negative issues about your proposal.\r
+\r
+- I'm not sure how much this change would ripple through the rest of the\r
+  notmuch code. At least all of the variables set by the current\r
+  argument parsing code would have to be set foo=args.foo, or replaced\r
+  everywhere with args.foo.\r
+   \r
+- It would require modifying the notmuch CLI to conform to the\r
+  conventions of docopt. Of course, you might consider this a feature,\r
+  but I think as many people would be annoyed as would be happy.\r
+\r
+- The most dramatic example of an appartently missing feature from\r
+  docopt is keyword arguments of the form\r
+  \r
+    --output=(messages|threads|summary).\r
+\r
+  These are the reason we rolled our own parser in the first place,\r
+  rather than using e.g. gnu getopt.  docopt says it doesn't do data\r
+  validation, which is fine philosophically, but by the time we add back\r
+  in validation code, I'm not sure we win very much in the\r
+  maintainability department.\r
+  \r
+- I don't really know about the health of the docopt.c project, compared\r
+  to the python version. It seems somewhat unfinished [1]; in particular\r
+  a lack of positional arguments seems like a showstopper for us.\r
+  arguments. There has never been a release (which is the norm for\r
+  github, but not for dependencies of notmuch), and the last commit was\r
+  in December of 2014.\r
+\r
+- Since docopt_c_py is not widely in distros (it isn't in Debian, for\r
+  example), we'd have to emded it the notmuch source.  It's only 217\r
+  lines of fairly simple python, but embedding 3rd party code is\r
+  something we try pretty hard to avoid.\r
+\r
+As always, my lack of enthusiasm doesn't prevent someone else from\r
+investigating further, but hopefully the points I listed above give\r
+anyone doing such investigation some hints as to what I (and I suspect\r
+not just I) would object to about any hypothetical patches.\r
+\r
+David\r
+\r
+[1]: From the README.md "Note, at this point the code generator handles\r
+only options (positional arguments, commands and pattern matching will\r
+follow)."\r