Christian Couder <christian.couder@xxxxxxxxx> writes: > +int external_odb_has_object(const unsigned char *sha1) > +{ > + struct odb_helper *o; > + > + external_odb_init(); > + > + for (o = helpers; o; o = o->next) > + if (odb_helper_has_object(o, sha1)) > + return 1; > + return 0; > +} > + > +int external_odb_get_object(const unsigned char *sha1) > +{ > + struct odb_helper *o; > + const char *path; > + > + if (!external_odb_has_object(sha1)) > + return -1; This probably would not matter, as I do not expect one repository to connect to and backed by very many external odb instances, but I would have expected that the interaction would go more like "ah, we need this object that is lacking locally. let's see if there is anybody with the object. now we found who claims to have the object, let's ask that guy (and nobody else) to give the object to us". IOW, I would have expected two functions: - struct odb_helper *external_odb_with(struct object_id *oid); - int external_odb_get(struct object_id *oid, struct odb_helper *odb); where the latter may start like if (!odb) { odb = external_odb_with(oid); if (!odb) return -1; } ... go ask that odb for the object ... > diff --git a/external-odb.h b/external-odb.h > new file mode 100644 > index 0000000000..9989490c9e > --- /dev/null > +++ b/external-odb.h > @@ -0,0 +1,8 @@ > +#ifndef EXTERNAL_ODB_H > +#define EXTERNAL_ODB_H > + > +const char *external_odb_root(void); > +int external_odb_has_object(const unsigned char *sha1); > +int external_odb_get_object(const unsigned char *sha1); Even though ancient codebase of ours deliberately omitted them, I think our recent trend is to explicitly spell "extern " in headers. > diff --git a/odb-helper.h b/odb-helper.h > new file mode 100644 > index 0000000000..5800661704 > --- /dev/null > +++ b/odb-helper.h Likewise.