2 * Copyright 2006 Jon Loeliger
5 #include "git-compat-util.h"
6 #include "interpolate.h"
9 void interp_set_entry(struct interp *table, int slot, const char *value)
11 char *oldval = table[slot].value;
18 newval = xstrdup(value);
20 table[slot].value = newval;
24 void interp_clear_table(struct interp *table, int ninterps)
28 for (i = 0; i < ninterps; i++) {
29 interp_set_entry(table, i, NULL);
35 * Convert a NUL-terminated string in buffer orig
36 * into the supplied buffer, result, whose length is reslen,
37 * performing substitutions on %-named sub-strings from
38 * the table, interps, with ninterps entries.
42 * { "%H", "example.org"},
47 * Returns 1 on a successful substitution pass that fits in result,
48 * Returns 0 on a failed or overflowing substitution pass.
51 int interpolate(char *result, int reslen,
53 const struct interp *interps, int ninterps)
55 const char *src = orig;
59 int namelen, valuelen;
63 memset(result, 0, reslen);
65 while ((c = *src) && newlen < reslen - 1) {
67 /* Try to match an interpolation string. */
68 for (i = 0; i < ninterps; i++) {
69 name = interps[i].name;
70 namelen = strlen(name);
71 if (strncmp(src, name, namelen) == 0) {
76 /* Check for valid interpolation. */
78 value = interps[i].value;
79 valuelen = strlen(value);
81 if (newlen + valuelen < reslen - 1) {
83 strncpy(dest, value, valuelen);
88 /* Something's not fitting. */
93 /* Skip bogus interpolation. */
99 /* Straight copy one non-interpolation character. */
105 return newlen < reslen - 1;