From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS31976 209.132.180.0/23 X-Spam-Status: No, score=-6.5 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by dcvr.yhbt.net (Postfix) with ESMTP id 5B0962018A for ; Fri, 1 Jul 2016 18:11:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752214AbcGASLM (ORCPT ); Fri, 1 Jul 2016 14:11:12 -0400 Received: from cloud.peff.net ([50.56.180.127]:39236 "HELO cloud.peff.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752004AbcGASLL (ORCPT ); Fri, 1 Jul 2016 14:11:11 -0400 Received: (qmail 22731 invoked by uid 102); 1 Jul 2016 18:11:06 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.84) with SMTP; Fri, 01 Jul 2016 14:11:06 -0400 Received: (qmail 20478 invoked by uid 107); 1 Jul 2016 18:11:22 -0000 Received: from sigill.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.7) by peff.net (qpsmtpd/0.84) with SMTP; Fri, 01 Jul 2016 14:11:22 -0400 Received: by sigill.intra.peff.net (sSMTP sendmail emulation); Fri, 01 Jul 2016 14:11:02 -0400 Date: Fri, 1 Jul 2016 14:11:02 -0400 From: Jeff King To: Junio C Hamano Cc: Stefan Beller , "git@vger.kernel.org" , Dan Wang Subject: Re: [PATCH 1/4] push options: {pre,post}-receive hook learns about push options Message-ID: <20160701181102.GA16695@sigill.intra.peff.net> References: <20160630005951.7408-1-sbeller@google.com> <20160630005951.7408-2-sbeller@google.com> <20160701071410.GG5358@sigill.intra.peff.net> <20160701175950.GB16235@sigill.intra.peff.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Fri, Jul 01, 2016 at 11:03:06AM -0700, Junio C Hamano wrote: > On Fri, Jul 1, 2016 at 10:59 AM, Jeff King wrote: > > If you give up on having multiple incarnations of each variable, then I > > think: > > > > GIT_PUSH_VAR_foo=value_for_foo > > GIT_PUSH_VAR_bar=value_for_bar > > > > is quite elegant, and easy to use from hooks. It just cannot represent > > multiple such "foo" variables. > > > >> If we did not have a GIT_PUSH_OPTIONS_COUNT and GIT_PUSH_OPTION_ > >> but rather GIT_PUSH_OPTIONS_VARIABLES that contains the other variables, > >> it may be easier to handle, but whether you read from a file or evaluate the > >> environment variable is only a minor step, the indirection is there anyway > >> and this would be very close to what we have above. > > > > It makes the server implementation a bit uglier. You have to create the > > temporary file, and you have to clean it up. What process is responsible > > for cleaning up stale files? Obviously receive-pack would try to clean > > up after itself, but what happens when it is "kill -9"'d, or the system > > goes down, etc? We clean up stale tmp files like tmp_obj_* in git-gc; I > > think we'd want something like that here. > > It still is not clear to me why the option to pass _COUNT and _VAR_ is > rejected. It's a little more unwieldy to parse in a shell hook, but not too bad, I guess: if test -n "$GIT_PUSH_VAR_COUNT"; then i=0 while test "$i" -lt "$GIT_PUSH_VAR_COUNT"; do eval "value=\$GIT_PUSH_VAR_$i" case "$value" in force=*) force=${value#*=} ;; ... and so on ... esac done fi ... if test "$force" = true ... Compare to: if test "$GIT_PUSH_VAR_force" = true ... The "count" method gives you the flexibility to parse multiple keys as lists, last-one-wins, or whatever scheme you want. But it also gives you the _responsibility_ to do the parsing yourself, which is a pain when you want to do the simple thing. -Peff