[PATCH GSoC v3 0/8] cat-file: extend remote-object-info to support %(objecttype)
Pablo Sabater <[email protected]> Mon, 03 Aug 2026 16:39:27 +0200
| Newsgroups | org.kernel.vger.git |
|---|---|
| Message-ID | <[email protected]> |
Neither the client nor the server knows how to handle type. This series continues the work for git cat-file --batch-command extending remote-object-info to support "%(objecttype)" end to end. It is based on its predecessor series "cat-file: add remote-object-info to batch-command" [1]. Type is the last property that is identical on the server and on the client once fetched. Whether to support more metadata such as: - objectsize:disk - deltabase - objectmode (needs context) should be discussed, unlike size and type, the rest depend on how things are packed on the server and on what the client already has, so they cannot reliably match local once fetched. IMO they are not worth supporting, I can't find a use case for them. To add a new placeholder, follow the steps in this series and add its wants_* flag to struct fetch_object_info_results. Patches 1-4 are preparatory. They don't change what the command does: - 1/8 is a test cleanup. - 2/8 fixes a possible bug in case of a truncated response. - 3/8 and 4/8 refactor how the object data is stored and handled. The why about this refactor comes from [2]. Patches 5-8 are the actual objecttype support: - 5/8 teaches the server to answer type. - 6/8 teaches the client to parse it. - 7/8 advertises the capability so the client can start asking it. - 8/8 unifies the default format. Note that wants_type is added in 4/8 while the types array only appears in 6/8. This is intentional, it shows that asking for an attribute the server does not advertise just outputs an empty string, as it would for any other placeholder. Based-on: <[email protected]> Github CI: https://github.com/pabloosabaterr/git/actions/runs/30821717187 [1]: https://lore.kernel.org/git/[email protected]/ [2]: https://lore.kernel.org/git/[email protected]/ Signed-off-by: Pablo Sabater <[email protected]> --- Changes in v3: - 1/8 (was 2/6): reword the commit message to explain that "wc -c | xargs" only strips the padding some platforms add. - New 2/8: die if the server sends fewer object-info lines than requested OIDs. Preexisting bug. - New 3/8: drop struct object_info_args and pass its members directly to fetch_object_info(). - New 4/8: replace struct object_info with struct fetch_object_info_results to hold the results. This also drops the object_info_options string list, remote_atom_map[] and free_object_info_contents(). - Dropped 1/6, which replaced the hardcoded "size" in send_object_info_request() with a loop over object_info_options, as that list no longer reaches it. - 6/8: follows the new result struct, so it only adds the type array. - 7/8: quote $hello_type in the test. - Link to v2: https://lore.kernel.org/git/[email protected]/ Changes in v2: - Changed t5701 test to use test_file_size. - Changed the for loop to use for_each_string_list_item(). - Moved "fetch-object-info: request all supported options dynamically" patch to be the first one as it is prep patch. - Typos and nits. - Restored the test mixing info and remote-object-info, adapted to the unified format. - Link to v1: https://lore.kernel.org/git/[email protected]/ --- Pablo Sabater (8): t5701: use test_file_size() to get the size of a file fetch-object-info: detect truncated server responses fetch-object-info: pass arguments directly instead of a struct fetch-object-info: use dedicated struct for the results protocol-caps: add type support to object-info fetch-object-info: parse type from server response serve: advertise type capability cat-file: unify default format Documentation/git-cat-file.adoc | 17 ++-- Documentation/gitprotocol-v2.adoc | 18 ++++- builtin/cat-file.c | 69 +++++----------- fetch-object-info.c | 141 +++++++++++++++++++++------------ fetch-object-info.h | 37 ++++++--- object-file.c | 10 --- odb.h | 3 - protocol-caps.c | 21 ++++- serve.c | 4 +- t/t1017-cat-file-remote-object-info.sh | 78 +++++++++++------- t/t5701-git-serve.sh | 41 +++++++++- transport.c | 12 ++- transport.h | 5 +- 13 files changed, 271 insertions(+), 185 deletions(-) Range-diff versus v2: 1: 3fb0ea6af4 < -: ---------- fetch-object-info: request all supported options dynamically 2: 641911ed87 < -: ---------- t5701: use the test_file_size() helper -: ---------- > 1: 84810a5500 t5701: use test_file_size() to get the size of a file -: ---------- > 2: 16e2735bd5 fetch-object-info: detect truncated server responses -: ---------- > 3: f42882ee03 fetch-object-info: pass arguments directly instead of a struct -: ---------- > 4: 3053d33534 fetch-object-info: use dedicated struct for the results 3: a77e38e171 ! 5: 1331fab35f protocol-caps: add type support to object-info @@ t/t5701-git-serve.sh: test_expect_success 'basics of object-info' ' +test_expect_success 'object-info supports type' ' + test_config transfer.advertiseObjectInfo true && + ++ two_oid=$(git rev-parse two:two.t) && ++ two_size=$(test_file_size two.t) && ++ + test-tool pkt-line pack >in <<-EOF && + command=object-info + object-format=$(test_oid algo) + 0001 + size + type -+ oid $(git rev-parse two:two.t) -+ oid $(git rev-parse two:two.t) ++ oid $two_oid ++ oid $two_oid + 0000 + EOF + + cat >expect <<-EOF && + size + type -+ $(git rev-parse two:two.t) $(test_file_size two.t) blob -+ $(git rev-parse two:two.t) $(test_file_size two.t) blob ++ $two_oid $two_size blob ++ $two_oid $two_size blob + 0000 + EOF + 4: 8fb55d9b54 < -: ---------- fetch-object-info: parse type from server response -: ---------- > 6: 3929b1a6fc fetch-object-info: parse type from server response 5: 70e65acd83 ! 7: 35e6b6a068 serve: advertise type capability @@ t/t1017-cat-file-remote-object-info.sh: test_expect_success 'remote-object-info cd "$daemon_parent/daemon_client_empty" && - echo "" >expect && -+ echo $hello_type >expect && ++ echo "$hello_type" >expect && git cat-file --batch-command="%(objecttype)" >actual <<-EOF && remote-object-info "$GIT_DAEMON_URL/parent" $hello_oid EOF 6: 4fe367eb58 ! 8: fe8163ebab cat-file: unify default format @@ Documentation/gitprotocol-v2.adoc: object-info Its main purpose is to allow a client to make decisions based on this -information without having to fully fetch objects. Object size is the only -information that is currently supported. -+information without having to fully fetch objects. Object size and type are the -+only information currently supported. ++information without having to fully fetch objects. Currently only object size ++and type are supported. An `object-info` request takes the following arguments: @@ Documentation/gitprotocol-v2.adoc: space. + obj-val = obj-size | obj-type + + obj-info = obj-id [SP [obj-val *(SP obj-val)]] ++ ++The values in `obj-info` appear in the same order as the corresponding `attr` ++lines, with exactly one value per requested attribute. If the server does not recognize the OID, the response will be `<oid> SP` regardless of the number of attributes requested. ## builtin/cat-file.c ## @@ builtin/cat-file.c: static void parse_cmd_remote_object_info(struct batch_options *opt, - struct object_info *remote_object_info = NULL; + char *line_to_split; + struct fetch_object_info_results results = FETCH_OBJECT_INFO_RESULTS_INIT; struct oid_array object_info_oids = OID_ARRAY_INIT; - struct string_list object_info_options = STRING_LIST_INIT_NODUP; - const char *saved_format = opt->format; if (strlen(line) >= MAX_REMOTE_OBJ_INFO_LINE) @@ builtin/cat-file.c: static void parse_cmd_remote_object_info(struct batch_option data->skip_object_info = 0; - opt->format = saved_format; - for (size_t i = 0; i < object_info_oids.nr; i++) - free_object_info_contents(&remote_object_info[i]); + free_fetch_object_info_results(&results); + free(line_to_split); ## t/t1017-cat-file-remote-object-info.sh ## @@ t/t1017-cat-file-remote-object-info.sh: test_expect_success 'batch-command remote-object-info git:// default filter' ' --- base-commit: 71e19e8d2713f385c3fcef59cf6f29bcbd93d91f change-id: 20260724-objecttype-support-ea1ef6941d07