From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Beller Subject: [PATCHv2 1/6] receive-pack.c: add protocol support to negotiate atomic-push Date: Tue, 16 Dec 2014 10:49:02 -0800 Message-ID: <1418755747-22506-1-git-send-email-sbeller@google.com> References: Cc: Ronnie Sahlberg , Stefan Beller To: gitster@pobox.com, git@vger.kernel.org, mhagger@alum.mit.edu, jrnieder@gmail.com, ronniesahlberg@gmail.com X-From: git-owner@vger.kernel.org Tue Dec 16 19:49:24 2014 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Y0xBQ-0005fw-09 for gcvg-git-2@plane.gmane.org; Tue, 16 Dec 2014 19:49:20 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751022AbaLPStP (ORCPT ); Tue, 16 Dec 2014 13:49:15 -0500 Received: from mail-ie0-f172.google.com ([209.85.223.172]:56179 "EHLO mail-ie0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750882AbaLPStO (ORCPT ); Tue, 16 Dec 2014 13:49:14 -0500 Received: by mail-ie0-f172.google.com with SMTP id tr6so13464833ieb.31 for ; Tue, 16 Dec 2014 10:49:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=VO8Y4oqgQkSaNpcJ3RN64fgbeYj5Rzi0Ai5rwhKGpek=; b=aCXTqlDY8uHWEsCReuTtjvs5mAGtWEZmUZMD7eUMJG8rKjvIVelWQM3Nv3YIUuEYO8 bN5Pp3gq/oJ8/Ro+mutVV7kwE4VClgmPi3yyKdjnPtFC+EsFqbZMitDrt9uCNMcbaXhA 0zLYf3A9oy/QoUXsztRhGoyl9DjM9F9ZPYJfxRnhBl5ITEe5zigZy3pdfLqcnnTr5LSq g8xodsMgP96Ql3J8EOy1hBCGlGWamW2dDOVCWFCjg74DLbqLCu5PTnRve7YvSDaCnm3S QyiXkiZV4w4IJkK89c8W3UO9Oe6/w2zQpNHUNh93DckOh1xPGiH27h49Wui0QPMVdFci UjtQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=VO8Y4oqgQkSaNpcJ3RN64fgbeYj5Rzi0Ai5rwhKGpek=; b=SkclBT5uFsXIl6Za40ycTet4CiZXCUMy3mOd5m6LgNQMIQz1KInU3R6oko9/0p61NL a9Uw+DgGJI2CY5psIVdyBRuM7jTVc3JHtrW9oCZTWaTQAipaOApWgttt4kLdhQ2BBRFe YaeSVQGJQ0HuynsP8WJsJQsM1zMJTX7xInsGBcN9IxW3TfbDNO6rzB4AtYGdiklqJKUx MctF9N2UDDKFo3XAmdaOiep2eUPRK34hVS3/O5D8bxyKnBxi9Cln1H8K1z/vWN9KepE6 OAkxsPyKY1SRzVld1UoVIUSzyiRzPPo0ZhcPCZjKXiqufwBdeErx/7Pzq2TXm4za+zq1 Xxqg== X-Gm-Message-State: ALoCoQmmkZc1IH0y4oUO5/SNR05zknMp0t3yPYc8zF7dgPeEDW25Iw67WojLYI37ZgbXiVg2zCMs X-Received: by 10.107.8.149 with SMTP id h21mr35406170ioi.74.1418755753701; Tue, 16 Dec 2014 10:49:13 -0800 (PST) Received: from localhost ([2620:0:1000:5b00:4db1:657a:aafa:5d88]) by mx.google.com with ESMTPSA id i184sm626723ioi.33.2014.12.16.10.49.12 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Tue, 16 Dec 2014 10:49:12 -0800 (PST) X-Mailer: git-send-email 2.2.0.31.gad78000.dirty In-Reply-To: Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: From: Ronnie Sahlberg This adds support to the protocol between send-pack and receive-pack to * allow receive-pack to inform the client that it has atomic push capability * allow send-pack to request atomic push back. There is currently no setting in send-pack to actually request that atomic pushes are to be used yet. This only adds protocol capability not ability for the user to activate it. Signed-off-by: Ronnie Sahlberg Signed-off-by: Stefan Beller --- Notes: Changes v1 -> v2: * Name it atomic instead of atomic-push. The name changes affects the flags send over the wire as well as the flags in struct send_pack_args * Add check, which was part of the later patch here: if (args->atomic && !atomic_supported) { fprintf(stderr, "Server does not support atomic push."); return -1; } Documentation/technical/protocol-capabilities.txt | 13 +++++++++++-- builtin/receive-pack.c | 6 +++++- send-pack.c | 11 +++++++++++ send-pack.h | 3 ++- 4 files changed, 29 insertions(+), 4 deletions(-) diff --git a/Documentation/technical/protocol-capabilities.txt b/Documentation/technical/protocol-capabilities.txt index 6d5424c..68ec23d 100644 --- a/Documentation/technical/protocol-capabilities.txt +++ b/Documentation/technical/protocol-capabilities.txt @@ -18,8 +18,9 @@ was sent. Server MUST NOT ignore capabilities that client requested and server advertised. As a consequence of these rules, server MUST NOT advertise capabilities it does not understand. -The 'report-status', 'delete-refs', 'quiet', and 'push-cert' capabilities -are sent and recognized by the receive-pack (push to server) process. +The 'atomic', 'report-status', 'delete-refs', 'quiet', and 'push-cert' +capabilities are sent and recognized by the receive-pack (push to server) +process. The 'ofs-delta' and 'side-band-64k' capabilities are sent and recognized by both upload-pack and receive-pack protocols. The 'agent' capability @@ -244,6 +245,14 @@ respond with the 'quiet' capability to suppress server-side progress reporting if the local progress reporting is also being suppressed (e.g., via `push -q`, or if stderr does not go to a tty). +atomic +------ + +If the server sends the 'atomic' capability it is capable of accepting +atomic pushes. If the pushing client requests this capability, the server +will update the refs in one single atomic transaction. Either all refs are +updated or none. + allow-tip-sha1-in-want ---------------------- diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c index 32fc540..e76e5d5 100644 --- a/builtin/receive-pack.c +++ b/builtin/receive-pack.c @@ -40,6 +40,7 @@ static int transfer_unpack_limit = -1; static int unpack_limit = 100; static int report_status; static int use_sideband; +static int use_atomic; static int quiet; static int prefer_ofs_delta = 1; static int auto_update_server_info; @@ -171,7 +172,8 @@ static void show_ref(const char *path, const unsigned char *sha1) struct strbuf cap = STRBUF_INIT; strbuf_addstr(&cap, - "report-status delete-refs side-band-64k quiet"); + "report-status delete-refs side-band-64k quiet " + "atomic"); if (prefer_ofs_delta) strbuf_addstr(&cap, " ofs-delta"); if (push_cert_nonce) @@ -1179,6 +1181,8 @@ static struct command *read_head_info(struct sha1_array *shallow) use_sideband = LARGE_PACKET_MAX; if (parse_feature_request(feature_list, "quiet")) quiet = 1; + if (parse_feature_request(feature_list, "atomic")) + use_atomic = 1; } if (!strcmp(line, "push-cert")) { diff --git a/send-pack.c b/send-pack.c index 949cb61..2a513f4 100644 --- a/send-pack.c +++ b/send-pack.c @@ -294,6 +294,8 @@ int send_pack(struct send_pack_args *args, int use_sideband = 0; int quiet_supported = 0; int agent_supported = 0; + int use_atomic; + int atomic_supported = 0; unsigned cmds_sent = 0; int ret; struct async demux; @@ -314,6 +316,8 @@ int send_pack(struct send_pack_args *args, agent_supported = 1; if (server_supports("no-thin")) args->use_thin_pack = 0; + if (server_supports("atomic")) + atomic_supported = 1; if (args->push_cert) { int len; @@ -328,6 +332,11 @@ int send_pack(struct send_pack_args *args, "Perhaps you should specify a branch such as 'master'.\n"); return 0; } + if (args->atomic && !atomic_supported) { + fprintf(stderr, "Server does not support atomic push."); + return -1; + } + use_atomic = atomic_supported && args->atomic; if (status_report) strbuf_addstr(&cap_buf, " report-status"); @@ -335,6 +344,8 @@ int send_pack(struct send_pack_args *args, strbuf_addstr(&cap_buf, " side-band-64k"); if (quiet_supported && (args->quiet || !args->progress)) strbuf_addstr(&cap_buf, " quiet"); + if (use_atomic) + strbuf_addstr(&cap_buf, " atomic"); if (agent_supported) strbuf_addf(&cap_buf, " agent=%s", git_user_agent_sanitized()); diff --git a/send-pack.h b/send-pack.h index 5635457..b664648 100644 --- a/send-pack.h +++ b/send-pack.h @@ -13,7 +13,8 @@ struct send_pack_args { use_ofs_delta:1, dry_run:1, push_cert:1, - stateless_rpc:1; + stateless_rpc:1, + atomic:1; }; int send_pack(struct send_pack_args *args, -- 2.2.0.31.gad78000.dirty