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=-3.3 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 90BF620A30 for ; Tue, 7 Nov 2017 11:16:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932468AbdKGLQK (ORCPT ); Tue, 7 Nov 2017 06:16:10 -0500 Received: from smtp-out-4.talktalk.net ([62.24.135.68]:61618 "EHLO smtp-out-4.talktalk.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753600AbdKGLQH (ORCPT ); Tue, 7 Nov 2017 06:16:07 -0500 Received: from [192.168.2.201] ([92.22.30.94]) by smtp.talktalk.net with SMTP id C1rRel4h1Ap17C1rReORsW; Tue, 07 Nov 2017 11:16:06 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=talktalk.net; s=cmr1711; t=1510053366; bh=ujioEtDLrIKCHn8edYmFFh4IwjaWa46t71xFRhG2XyU=; h=Reply-To:Subject:To:Cc:References:From:Date:In-Reply-To; b=K+oQdnOUKX72Ji7Lr+h77D1o/m3scl2XC37eULudzgJNAv7iexQN3ZK3azAS7cxdC nwFrgO/ffY7Q4Dh5mFPt9njXM9UK7HKdmS2p/p1LCRDsYa1FVMxRyGGhvvdkL8gtGN hVu7Q3L+mdLx8XuprQX7Q+FgXh29KHaWPuUk2r7Q= X-Originating-IP: [92.22.30.94] X-Spam: 0 X-OAuthority: v=2.2 cv=EsGilWUA c=1 sm=1 tr=0 a=lje0BXTe3+PqU+djfnm1WA==:117 a=lje0BXTe3+PqU+djfnm1WA==:17 a=IkcTkHD0fZMA:10 a=evINK-nbAAAA:8 a=aHpiZyShYgaxSt0W2FMA:9 a=zK3-eIH6v839uAk8:21 a=MzC4EfL9pKd_zde5:21 a=QEXdDO2ut3YA:10 a=RfR_gqz1fSpA9VikTjo0:22 Reply-To: phillip.wood@dunelm.org.uk Subject: Re: [PATCH v1 8/8] sequencer: try to commit without forking 'git commit' To: Johannes Schindelin , Phillip Wood Cc: Git Mailing List , Junio C Hamano References: <20170925101041.18344-1-phillip.wood@talktalk.net> <20171106112709.2121-1-phillip.wood@talktalk.net> <20171106112709.2121-9-phillip.wood@talktalk.net> From: Phillip Wood Message-ID: <1975badb-7728-45fe-3e8a-8755d85da89a@talktalk.net> Date: Tue, 7 Nov 2017 11:16:04 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfJxyj7iepa3IwYi2RIqsycEI6JVbs5B+w7C0JCYxKH2J86BryZL5CNOUngZQx2vsO11k0w78YAT1s3Gm8fc7mMcRRdq/Ahn7tT6OMvIa6OOjdlkxRZlX riyYWPg5fbEUtcZKI3qObtPqC9Fqd9ny02LT1RbuDAgkV8anzqIbR0HkM37K80lXwwePNsdi0eFMpRSIuAZy0U1PU2id1tkvXOkgFMo/85FfPAeNVpphCrax w+roiPwH/MTHGKFJI4v9QBBEo8C07DWW1zht7XRdaz/tcQEdGFR/3qKBeqyUk925 Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On 07/11/17 01:36, Johannes Schindelin wrote: > Hi Phillip, > > On Mon, 6 Nov 2017, Phillip Wood wrote: > >> From: Phillip Wood >> >> If the commit message does not need to be edited then create the >> commit without forking 'git commit'. Taking the best time of ten runs >> with a warm cache this reduces the time taken to cherry-pick 10 >> commits by 27% (from 282ms to 204ms), and the time taken by 'git >> rebase --continue' to pick 10 commits by 45% (from 386ms to 212ms) on >> my computer running linux. Some of greater saving for rebase is >> because it longer wastes time creating the commit summary just to > > I usually leave the grammar reviews to people who prefer to review grammar > over code, but in this case I think the "no" in "no longer" is rather > crucial. Yes it is, well spotted >> throw it away. > > Those are impressive improvements, and I am certain that they will be even > more noticable on Windows, where creating processes is a lot more > expensive than on Linux (which is the reason why you will find a lot more > multi-threaded processes on Windows...). Yes, I was surprised how big the difference was. Rerunning the same commands arguably over emphasizes the time spent in forking git commit as after the first run all the objects are already on disk but I don't know how much difference that makes. >> The code to create the commit is based on builtin/commit.c. It is >> slightly simplified as it doesn't have to deal with merges and >> modified so try and return an error rather than dying so that the >> sequencer exits cleanly, as it would when forking 'git commit'. >> >> Even when not forking 'git commit' the commit message is written to a >> file and CHERRY_PICK_HEAD is created unnecessarily. This could be >> eliminated in future. I hacked up a version that does not write these >> files and just passed an strbuf (with the wrong message for fixup and >> squash commands) to do_commit() but I couldn't measure any significant >> time difference when running cherry-pick or rebase. I think >> eliminating the writes properly for rebase would require a bit of >> effort as the code would need to be restructured. > > True. And it totally makes sense to go for the big bucks. > >> diff --git a/sequencer.c b/sequencer.c >> index b8cf679751449591d6f97102904e060ebee9d7a1..0636d027e9e1cdebaab4802e5becd89e8398a425 100644 >> --- a/sequencer.c >> +++ b/sequencer.c >> @@ -592,6 +592,18 @@ static int read_env_script(struct argv_array *env) >> return 0; >> } >> >> +static char *get_author(const char* message) >> +{ >> + size_t len; >> + const char *a; >> + >> + a = find_commit_header(message, "author", &len); >> + if (a) >> + return xmemdupz(a, len); >> + >> + return NULL; >> +} > > I was surprised that there is no helper for that yet, so I looked, but it > seems that the three existing callers of `find_commit_header(..., > "author", ...)` want to split the ident line right away, and do not need > the duplicated buffer. > > In short: the code added here is necessary. > >> @@ -984,6 +996,151 @@ int print_commit_summary(const char *prefix, const struct object_id *oid, >> return ret; >> } >> >> +static int parse_head(struct commit **head) >> +{ >> + struct commit *current_head; >> + struct object_id oid; >> + >> + if (get_oid("HEAD", &oid)) { >> + current_head = NULL; >> + } else { >> + current_head = lookup_commit_reference(&oid); >> + if (!current_head) >> + return error(_("could not parse HEAD")); >> + if (oidcmp(&oid, ¤t_head->object.oid)) { >> + warning(_("HEAD %s is not a commit!"), >> + oid_to_hex(&oid)); >> + } >> + if (parse_commit(current_head)) >> + return error(_("could not parse HEAD commit")); >> + } >> + *head = current_head; >> + >> + return 0; >> +} >> + >> +static int try_to_commit(struct strbuf *msg, const char *author, >> + struct replay_opts *opts, unsigned int flags, >> + struct object_id *oid) > > Since this is a file-local function, i.e. not in any way tied to a > process exit status, it should probably return -1 in the case of errors, > as Git does elsewhere, too. It returns -1 in case of error and 1 if it wants git commit to be run. There are some error messages in git commit that weren't completely straight forward to move to libgit as they were tied up with some git status config values so I opted just to test for the error condition here and fork git commit to display the error message. >> +{ >> + struct object_id tree; >> + struct commit *current_head; >> + struct commit_list *parents = NULL; >> + struct commit_extra_header *extra = NULL; >> + struct strbuf err = STRBUF_INIT; >> + struct strbuf amend_msg = STRBUF_INIT; >> + char *amend_author = NULL; >> + const char *gpg_sign; >> + enum cleanup_mode cleanup; >> + int res = 0; >> + >> + if (parse_head(¤t_head)) >> + return -1; >> + >> + if (flags & AMEND_MSG) { >> + const char *exclude_gpgsig[2] = { "gpgsig", NULL }; > > Git's current source code seems to prefer to infer the array length; The > `2` is unnecessary here. Right, I copied it from builtin/commit.c but I can change it >> + const char *out_enc = get_commit_output_encoding(); >> + const char *message = logmsg_reencode(current_head, NULL, >> + out_enc); >> + >> + if (!msg) { >> + const char *body = NULL; >> + >> + find_commit_subject(message, &body); > > Maybe `orig_message` would be better here; I expected `body` to refer to > the part of the commit message *after* the subject, but reading the code > of `find_commit_subject()`, I find that it stores the beginning of the > commit message. > > Dunno. Yes body is kind of misleading, as that it storing the whole message with the subject as well. >> + msg = &amend_msg; >> + strbuf_addstr(msg, body); >> + } >> + author = amend_author = get_author (message); > > Please lose the space after the function name. Well spotted, I thought I'd seen a space between a function name and '(' in one of the patches but then I couldn't find it. >> + unuse_commit_buffer(current_head, message); >> + if (!author) { >> + res = error(_("unable to parse commit author")); >> + goto out; >> + } >> + parents = copy_commit_list(current_head->parents); >> + extra = read_commit_extra_headers(current_head, exclude_gpgsig); >> + } else if (current_head) { >> + commit_list_insert(current_head, &parents); >> + } >> + >> + cleanup = (flags & CLEANUP_MSG) ? CLEANUP_ALL : default_msg_cleanup; >> + if (cleanup != CLEANUP_NONE) >> + strbuf_stripspace(msg, cleanup == CLEANUP_ALL); >> + if (!opts->allow_empty_message && message_is_empty(msg, cleanup)) { >> + res = 1; >> + goto out; >> + } >> + >> + gpg_sign = (opts->gpg_sign) ? opts->gpg_sign : default_gpg_sign; > > Others will probably complain about those extra parentheses. I am not > offended by them, though. > >> + if (write_cache_as_tree(tree.hash, 0, NULL)) { >> + res = error(_("git write-tree failed to write a tree")); >> + goto out; >> + } >> + >> + if (!(flags & ALLOW_EMPTY) && !oidcmp(current_head ? >> + ¤t_head->tree->object.oid : >> + &empty_tree_oid, &tree)) { > > I'll leave it to Junio to comment on the formatting here. > >> + res = 1; >> + goto out; >> + } >> + >> + if (commit_tree_extended(msg->buf, msg->len, tree.hash, parents, >> + oid->hash, author, gpg_sign, extra)) { >> + res = error(_("failed to write commit object")); >> + goto out; >> + } Looking more deeply, this can die in write_loose_object(), hopefully that is unlikely. git am commits without forking as well so I think it is subject to the same problem. >> + >> + if (update_head(current_head, oid, getenv("GIT_REFLOG_ACTION"), msg, >> + &err)){ >> + res = error("%s", err.buf); >> + goto out; >> + } >> + >> + if (flags & AMEND_MSG) >> + commit_post_rewrite(current_head, oid); >> + >> +out: >> + free_commit_extra_headers(extra); >> + strbuf_release(&err); >> + strbuf_release(&amend_msg); >> + if (amend_author) >> + free(amend_author); > > Git's source code uses the fact that `free(NULL);` is essentially a no-op > (and certainly allowed) to avoid conditionals in such cases. > > That would make the `if (amend_author)` unnecessary. Thanks, I'll change it >> + return res; >> +} >> + >> +static int do_commit(const char *msg_file, const char* author, >> + struct replay_opts *opts, unsigned int flags) >> +{ >> + int res = 1; > > Same as above, the error code should most likely be -1 instead. 1 means run git commit, -1 means there was an error. I should document that. >> + if (~flags & EDIT_MSG && ~flags & VERIFY_MSG) { > > I *think* it is more common to write `!(flags & EDIT_MSG)` in Git's source > code. Yes looking though the other code in sequencer.c that seems to be the common idiom. >> + struct object_id oid; >> + struct strbuf sb = STRBUF_INIT; >> + >> + if (msg_file && strbuf_read_file(&sb, msg_file, 2048) < 0) >> + return error_errno(_("unable to read commit message " >> + "from '%s'"), >> + msg_file); >> + >> + res = try_to_commit(msg_file ? &sb : NULL, author, opts, flags, >> + &oid); >> + strbuf_release(&sb); >> + if (res == 0) { > > Usually, Git's source code uses `if (!res)` in such cases. > >> + unlink(git_path_cherry_pick_head()); >> + unlink(git_path_merge_msg()); >> + if (!is_rebase_i(opts)) >> + res = print_commit_summary(NULL, &oid, >> + SUMMARY_SHOW_AUTHOR_DATE); >> + return res; >> + } > > I wonder whether we should move the `return res;` one line lower, to avoid > falling through to call `run_git_commit()` if `try_to_commit()` failed... No, that is what I want it to do >> + } >> + if (res == 1) >> + return run_git_commit(msg_file, opts, flags); > > Maybe this code could be simplified even further by moving this > conditional to the beginning of the function, as: > > if ((flags & (EDIT_MSG | VERIFY_MSG))) > return run_git_commit(msg_file, opts, flags); > > But maybe I misunderstood and you really wanted to fall back on > `run_git_commit()` if `try_to_commit()` failed? Exactly >> + >> + return res; >> +} >> + >> static int is_original_commit_empty(struct commit *commit) >> { >> const struct object_id *ptree_oid; >> @@ -1235,6 +1392,7 @@ static int do_pick_commit(enum todo_command command, struct commit *commit, >> struct object_id head; >> struct commit *base, *next, *parent; >> const char *base_label, *next_label; >> + char *author = NULL; >> struct commit_message msg = { NULL, NULL, NULL, NULL }; >> struct strbuf msgbuf = STRBUF_INIT; >> int res, unborn = 0, allow; >> @@ -1350,6 +1508,8 @@ static int do_pick_commit(enum todo_command command, struct commit *commit, >> strbuf_addstr(&msgbuf, oid_to_hex(&commit->object.oid)); >> strbuf_addstr(&msgbuf, ")\n"); >> } >> + if (!is_fixup (command)) >> + author = get_author(msg.message); >> } >> >> if (command == TODO_REWORD) >> @@ -1435,9 +1595,13 @@ static int do_pick_commit(enum todo_command command, struct commit *commit, >> goto leave; >> } else if (allow) >> flags |= ALLOW_EMPTY; >> - if (!opts->no_commit) >> + if (!opts->no_commit) { >> fast_forward_edit: >> - res = run_git_commit(msg_file, opts, flags); >> + if (author || command == TODO_REVERT || (flags & AMEND_MSG)) >> + res = do_commit(msg_file, author, opts, flags); >> + else >> + res = error(_("unable to parse commit author")); > > Would this be a bug here? Or do we expect `get_author()` to possibly fail? I'm not sure, if the commit has somehow been created by a buggy implementation without an author then we should complain. git commit reparses the author details to check they look reasonable before reusing them, maybe this should as well rather than just checking that there is something there. >> + } >> >> if (!res && final_fixup) { >> unlink(rebase_path_fixup_msg()); >> @@ -1446,6 +1610,8 @@ static int do_pick_commit(enum todo_command command, struct commit *commit, >> >> leave: >> free_message(commit, &msg); >> + if (author) >> + free(author); > > As above, please write an unconditional `free(author);` here. Will do > All in all, this patch series was a nice an pleasant read. I am impressed > by the performance wins. > Thanks that's nice to hear, thanks also for taking the time to comment on them. Best Wishes Phillip > Thank you very much, > Dscho