]> git.ipfire.org Git - thirdparty/git.git/commitdiff
promisor-remote: refactor how we parse advertised fields
authorChristian Couder <christian.couder@gmail.com>
Wed, 11 Jun 2025 13:45:04 +0000 (15:45 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 12 Jun 2025 15:07:42 +0000 (08:07 -0700)
In a follow up commit we are going to parse more fields, like a filter
and a token, coming from the server when it advertises promisor remotes
using the "promisor-remote" capability.

To prepare for this, let's refactor the code that parses the advertised
fields coming from the server into a new parse_one_advertised_remote()
function that will populate a `struct promisor_info` with the content
of the fields it parsed.

While at it, let's also pass this `struct promisor_info` to the
should_accept_remote() function, instead of passing it the parsed name
and url.

These changes will make it simpler to both parse more fields and access
the content of these parsed fields in follow up commits.

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
promisor-remote.c

index ec7f4dd2de8c328a6c2b1328bdc763fe54432961..e291a00a73edb246a204d09d77ec6addc20779c0 100644 (file)
@@ -398,16 +398,20 @@ struct promisor_info {
        const char *token;
 };
 
+static void promisor_info_free(struct promisor_info *p)
+{
+       free((char *)p->name);
+       free((char *)p->url);
+       free((char *)p->filter);
+       free((char *)p->token);
+       free(p);
+}
+
 static void promisor_info_list_clear(struct string_list *list)
 {
-       for (size_t i = 0; i < list->nr; i++) {
-               struct promisor_info *p = list->items[i].util;
-               free((char *)p->name);
-               free((char *)p->url);
-               free((char *)p->filter);
-               free((char *)p->token);
-       }
-       string_list_clear(list, 1);
+       for (size_t i = 0; i < list->nr; i++)
+               promisor_info_free(list->items[i].util);
+       string_list_clear(list, 0);
 }
 
 static void set_one_field(struct promisor_info *p,
@@ -524,11 +528,13 @@ enum accept_promisor {
 };
 
 static int should_accept_remote(enum accept_promisor accept,
-                               const char *remote_name, const char *remote_url,
+                               struct promisor_info *advertised,
                                struct string_list *config_info)
 {
        struct promisor_info *p;
        struct string_list_item *item;
+       const char *remote_name = advertised->name;
+       const char *remote_url = advertised->url;
 
        if (accept == ACCEPT_ALL)
                return 1;
@@ -566,6 +572,46 @@ static int should_accept_remote(enum accept_promisor accept,
        return 0;
 }
 
+static struct promisor_info *parse_one_advertised_remote(struct strbuf *remote_info)
+{
+       struct promisor_info *info = xcalloc(1, sizeof(*info));
+       struct strbuf **elems = strbuf_split(remote_info, ',');
+
+       for (size_t i = 0; elems[i]; i++) {
+               char *elem = elems[i]->buf;
+               char *value;
+               char *p = strchr(elem, '=');
+
+               strbuf_strip_suffix(elems[i], ",");
+
+               if (!p) {
+                       warning(_("invalid element '%s' from remote info"), elem);
+                       continue;
+               }
+
+               *p = '\0';
+               value = url_percent_decode(p + 1);
+
+               if (!strcmp(elem, "name"))
+                       info->name = value;
+               else if (!strcmp(elem, "url"))
+                       info->url = value;
+               else
+                       free(value);
+       }
+
+       strbuf_list_free(elems);
+
+       if (!info->name || !info->url) {
+               warning(_("server advertised a promisor remote without a name or URL: %s"),
+                       remote_info->buf);
+               promisor_info_free(info);
+               return NULL;
+       }
+
+       return info;
+}
+
 static void filter_promisor_remote(struct repository *repo,
                                   struct strvec *accepted,
                                   const char *info)
@@ -602,32 +648,19 @@ static void filter_promisor_remote(struct repository *repo,
        remotes = strbuf_split_str(info, ';', 0);
 
        for (size_t i = 0; remotes[i]; i++) {
-               struct strbuf **elems;
-               const char *remote_name = NULL;
-               const char *remote_url = NULL;
-               char *decoded_name = NULL;
-               char *decoded_url = NULL;
+               struct promisor_info *advertised;
 
                strbuf_strip_suffix(remotes[i], ";");
-               elems = strbuf_split(remotes[i], ',');
 
-               for (size_t j = 0; elems[j]; j++) {
-                       strbuf_strip_suffix(elems[j], ",");
-                       if (!skip_prefix(elems[j]->buf, "name=", &remote_name))
-                               skip_prefix(elems[j]->buf, "url=", &remote_url);
-               }
+               advertised = parse_one_advertised_remote(remotes[i]);
 
-               if (remote_name)
-                       decoded_name = url_percent_decode(remote_name);
-               if (remote_url)
-                       decoded_url = url_percent_decode(remote_url);
+               if (!advertised)
+                       continue;
 
-               if (decoded_name && should_accept_remote(accept, decoded_name, decoded_url, &config_info))
-                       strvec_push(accepted, decoded_name);
+               if (should_accept_remote(accept, advertised, &config_info))
+                       strvec_push(accepted, advertised->name);
 
-               strbuf_list_free(elems);
-               free(decoded_name);
-               free(decoded_url);
+               promisor_info_free(advertised);
        }
 
        promisor_info_list_clear(&config_info);