Merge branch 'jc/for-each-ref'
* jc/for-each-ref: for-each-ref --format='%(flag)' for-each-ref --format='%(symref) %(symref:short)' builtin-for-each-ref.c: check if we need to peel onion while parsing the format builtin-for-each-ref.c: comment fixes
This commit is contained in:
commit
e4b89317cd
@ -33,6 +33,8 @@ struct ref_sort {
|
|||||||
struct refinfo {
|
struct refinfo {
|
||||||
char *refname;
|
char *refname;
|
||||||
unsigned char objectname[20];
|
unsigned char objectname[20];
|
||||||
|
int flag;
|
||||||
|
const char *symref;
|
||||||
struct atom_value *value;
|
struct atom_value *value;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -68,6 +70,8 @@ static struct {
|
|||||||
{ "body" },
|
{ "body" },
|
||||||
{ "contents" },
|
{ "contents" },
|
||||||
{ "upstream" },
|
{ "upstream" },
|
||||||
|
{ "symref" },
|
||||||
|
{ "flag" },
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -82,7 +86,7 @@ static struct {
|
|||||||
*/
|
*/
|
||||||
static const char **used_atom;
|
static const char **used_atom;
|
||||||
static cmp_type *used_atom_type;
|
static cmp_type *used_atom_type;
|
||||||
static int used_atom_cnt, sort_atom_limit, need_tagged;
|
static int used_atom_cnt, sort_atom_limit, need_tagged, need_symref;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Used to parse format string and sort specifiers
|
* Used to parse format string and sort specifiers
|
||||||
@ -133,6 +137,10 @@ static int parse_atom(const char *atom, const char *ep)
|
|||||||
(sizeof(*used_atom_type) * used_atom_cnt));
|
(sizeof(*used_atom_type) * used_atom_cnt));
|
||||||
used_atom[at] = xmemdupz(atom, ep - atom);
|
used_atom[at] = xmemdupz(atom, ep - atom);
|
||||||
used_atom_type[at] = valid_atom[i].cmp_type;
|
used_atom_type[at] = valid_atom[i].cmp_type;
|
||||||
|
if (*atom == '*')
|
||||||
|
need_tagged = 1;
|
||||||
|
if (!strcmp(used_atom[at], "symref"))
|
||||||
|
need_symref = 1;
|
||||||
return at;
|
return at;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,7 +151,8 @@ static const char *find_next(const char *cp)
|
|||||||
{
|
{
|
||||||
while (*cp) {
|
while (*cp) {
|
||||||
if (*cp == '%') {
|
if (*cp == '%') {
|
||||||
/* %( is the start of an atom;
|
/*
|
||||||
|
* %( is the start of an atom;
|
||||||
* %% is a quoted per-cent.
|
* %% is a quoted per-cent.
|
||||||
*/
|
*/
|
||||||
if (cp[1] == '(')
|
if (cp[1] == '(')
|
||||||
@ -420,7 +429,8 @@ static void grab_person(const char *who, struct atom_value *val, int deref, stru
|
|||||||
grab_date(wholine, v, name);
|
grab_date(wholine, v, name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For a tag or a commit object, if "creator" or "creatordate" is
|
/*
|
||||||
|
* For a tag or a commit object, if "creator" or "creatordate" is
|
||||||
* requested, do something special.
|
* requested, do something special.
|
||||||
*/
|
*/
|
||||||
if (strcmp(who, "tagger") && strcmp(who, "committer"))
|
if (strcmp(who, "tagger") && strcmp(who, "committer"))
|
||||||
@ -502,7 +512,8 @@ static void grab_sub_body_contents(struct atom_value *val, int deref, struct obj
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We want to have empty print-string for field requests
|
/*
|
||||||
|
* We want to have empty print-string for field requests
|
||||||
* that do not apply (e.g. "authordate" for a tag object)
|
* that do not apply (e.g. "authordate" for a tag object)
|
||||||
*/
|
*/
|
||||||
static void fill_missing_values(struct atom_value *val)
|
static void fill_missing_values(struct atom_value *val)
|
||||||
@ -548,6 +559,13 @@ static void grab_values(struct atom_value *val, int deref, struct object *obj, v
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline char *copy_advance(char *dst, const char *src)
|
||||||
|
{
|
||||||
|
while (*src)
|
||||||
|
*dst++ = *src++;
|
||||||
|
return dst;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Parse the object referred by ref, and grab needed value.
|
* Parse the object referred by ref, and grab needed value.
|
||||||
*/
|
*/
|
||||||
@ -561,6 +579,16 @@ static void populate_value(struct refinfo *ref)
|
|||||||
|
|
||||||
ref->value = xcalloc(sizeof(struct atom_value), used_atom_cnt);
|
ref->value = xcalloc(sizeof(struct atom_value), used_atom_cnt);
|
||||||
|
|
||||||
|
if (need_symref && (ref->flag & REF_ISSYMREF) && !ref->symref) {
|
||||||
|
unsigned char unused1[20];
|
||||||
|
const char *symref;
|
||||||
|
symref = resolve_ref(ref->refname, unused1, 1, NULL);
|
||||||
|
if (symref)
|
||||||
|
ref->symref = xstrdup(symref);
|
||||||
|
else
|
||||||
|
ref->symref = "";
|
||||||
|
}
|
||||||
|
|
||||||
/* Fill in specials first */
|
/* Fill in specials first */
|
||||||
for (i = 0; i < used_atom_cnt; i++) {
|
for (i = 0; i < used_atom_cnt; i++) {
|
||||||
const char *name = used_atom[i];
|
const char *name = used_atom[i];
|
||||||
@ -576,6 +604,8 @@ static void populate_value(struct refinfo *ref)
|
|||||||
|
|
||||||
if (!prefixcmp(name, "refname"))
|
if (!prefixcmp(name, "refname"))
|
||||||
refname = ref->refname;
|
refname = ref->refname;
|
||||||
|
else if (!prefixcmp(name, "symref"))
|
||||||
|
refname = ref->symref ? ref->symref : "";
|
||||||
else if (!prefixcmp(name, "upstream")) {
|
else if (!prefixcmp(name, "upstream")) {
|
||||||
struct branch *branch;
|
struct branch *branch;
|
||||||
/* only local branches may have an upstream */
|
/* only local branches may have an upstream */
|
||||||
@ -588,6 +618,20 @@ static void populate_value(struct refinfo *ref)
|
|||||||
continue;
|
continue;
|
||||||
refname = branch->merge[0]->dst;
|
refname = branch->merge[0]->dst;
|
||||||
}
|
}
|
||||||
|
else if (!strcmp(name, "flag")) {
|
||||||
|
char buf[256], *cp = buf;
|
||||||
|
if (ref->flag & REF_ISSYMREF)
|
||||||
|
cp = copy_advance(cp, ",symref");
|
||||||
|
if (ref->flag & REF_ISPACKED)
|
||||||
|
cp = copy_advance(cp, ",packed");
|
||||||
|
if (cp == buf)
|
||||||
|
v->s = "";
|
||||||
|
else {
|
||||||
|
*cp = '\0';
|
||||||
|
v->s = xstrdup(buf + 1);
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
@ -633,18 +677,21 @@ static void populate_value(struct refinfo *ref)
|
|||||||
if (!eaten)
|
if (!eaten)
|
||||||
free(buf);
|
free(buf);
|
||||||
|
|
||||||
/* If there is no atom that wants to know about tagged
|
/*
|
||||||
|
* If there is no atom that wants to know about tagged
|
||||||
* object, we are done.
|
* object, we are done.
|
||||||
*/
|
*/
|
||||||
if (!need_tagged || (obj->type != OBJ_TAG))
|
if (!need_tagged || (obj->type != OBJ_TAG))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* If it is a tag object, see if we use a value that derefs
|
/*
|
||||||
|
* If it is a tag object, see if we use a value that derefs
|
||||||
* the object, and if we do grab the object it refers to.
|
* the object, and if we do grab the object it refers to.
|
||||||
*/
|
*/
|
||||||
tagged = ((struct tag *)obj)->tagged->sha1;
|
tagged = ((struct tag *)obj)->tagged->sha1;
|
||||||
|
|
||||||
/* NEEDSWORK: This derefs tag only once, which
|
/*
|
||||||
|
* NEEDSWORK: This derefs tag only once, which
|
||||||
* is good to deal with chains of trust, but
|
* is good to deal with chains of trust, but
|
||||||
* is not consistent with what deref_tag() does
|
* is not consistent with what deref_tag() does
|
||||||
* which peels the onion to the core.
|
* which peels the onion to the core.
|
||||||
@ -681,9 +728,8 @@ struct grab_ref_cbdata {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* A call-back given to for_each_ref(). It is unfortunate that we
|
* A call-back given to for_each_ref(). Filter refs and keep them for
|
||||||
* need to use global variables to pass extra information to this
|
* later object processing.
|
||||||
* function.
|
|
||||||
*/
|
*/
|
||||||
static int grab_single_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
|
static int grab_single_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
|
||||||
{
|
{
|
||||||
@ -711,13 +757,15 @@ static int grab_single_ref(const char *refname, const unsigned char *sha1, int f
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We do not open the object yet; sort may only need refname
|
/*
|
||||||
|
* We do not open the object yet; sort may only need refname
|
||||||
* to do its job and the resulting list may yet to be pruned
|
* to do its job and the resulting list may yet to be pruned
|
||||||
* by maxcount logic.
|
* by maxcount logic.
|
||||||
*/
|
*/
|
||||||
ref = xcalloc(1, sizeof(*ref));
|
ref = xcalloc(1, sizeof(*ref));
|
||||||
ref->refname = xstrdup(refname);
|
ref->refname = xstrdup(refname);
|
||||||
hashcpy(ref->objectname, sha1);
|
hashcpy(ref->objectname, sha1);
|
||||||
|
ref->flag = flag;
|
||||||
|
|
||||||
cnt = cb->grab_cnt;
|
cnt = cb->grab_cnt;
|
||||||
cb->grab_array = xrealloc(cb->grab_array,
|
cb->grab_array = xrealloc(cb->grab_array,
|
||||||
@ -938,13 +986,6 @@ int cmd_for_each_ref(int argc, const char **argv, const char *prefix)
|
|||||||
refs = cbdata.grab_array;
|
refs = cbdata.grab_array;
|
||||||
num_refs = cbdata.grab_cnt;
|
num_refs = cbdata.grab_cnt;
|
||||||
|
|
||||||
for (i = 0; i < used_atom_cnt; i++) {
|
|
||||||
if (used_atom[i][0] == '*') {
|
|
||||||
need_tagged = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
sort_refs(sort, refs, num_refs);
|
sort_refs(sort, refs, num_refs);
|
||||||
|
|
||||||
if (!maxcount || num_refs < maxcount)
|
if (!maxcount || num_refs < maxcount)
|
||||||
|
Loading…
Reference in New Issue
Block a user