4 #include "notes-utils.h"
6 void create_notes_commit(struct notes_tree
*t
, struct commit_list
*parents
,
7 const char *msg
, size_t msg_len
,
8 unsigned char *result_sha1
)
10 unsigned char tree_sha1
[20];
12 assert(t
->initialized
);
14 if (write_notes_tree(t
, tree_sha1
))
15 die("Failed to write notes tree to database");
18 /* Deduce parent commit from t->ref */
19 unsigned char parent_sha1
[20];
20 if (!read_ref(t
->ref
, parent_sha1
)) {
21 struct commit
*parent
= lookup_commit(parent_sha1
);
22 if (parse_commit(parent
))
23 die("Failed to find/parse commit %s", t
->ref
);
24 commit_list_insert(parent
, &parents
);
26 /* else: t->ref points to nothing, assume root/orphan commit */
29 if (commit_tree(msg
, msg_len
, tree_sha1
, parents
, result_sha1
, NULL
, NULL
))
30 die("Failed to commit notes tree to database");
33 void commit_notes(struct notes_tree
*t
, const char *msg
)
35 struct strbuf buf
= STRBUF_INIT
;
36 unsigned char commit_sha1
[20];
39 t
= &default_notes_tree
;
40 if (!t
->initialized
|| !t
->update_ref
|| !*t
->update_ref
)
41 die(_("Cannot commit uninitialized/unreferenced notes tree"));
43 return; /* don't have to commit an unchanged tree */
45 /* Prepare commit message and reflog message */
46 strbuf_addstr(&buf
, msg
);
47 strbuf_complete_line(&buf
);
49 create_notes_commit(t
, NULL
, buf
.buf
, buf
.len
, commit_sha1
);
50 strbuf_insert(&buf
, 0, "notes: ", 7); /* commit message starts at index 7 */
51 update_ref(buf
.buf
, t
->update_ref
, commit_sha1
, NULL
, 0,
52 UPDATE_REFS_DIE_ON_ERR
);
57 int parse_notes_merge_strategy(const char *v
, enum notes_merge_strategy
*s
)
59 if (!strcmp(v
, "manual"))
60 *s
= NOTES_MERGE_RESOLVE_MANUAL
;
61 else if (!strcmp(v
, "ours"))
62 *s
= NOTES_MERGE_RESOLVE_OURS
;
63 else if (!strcmp(v
, "theirs"))
64 *s
= NOTES_MERGE_RESOLVE_THEIRS
;
65 else if (!strcmp(v
, "union"))
66 *s
= NOTES_MERGE_RESOLVE_UNION
;
67 else if (!strcmp(v
, "cat_sort_uniq"))
68 *s
= NOTES_MERGE_RESOLVE_CAT_SORT_UNIQ
;
75 static combine_notes_fn
parse_combine_notes_fn(const char *v
)
77 if (!strcasecmp(v
, "overwrite"))
78 return combine_notes_overwrite
;
79 else if (!strcasecmp(v
, "ignore"))
80 return combine_notes_ignore
;
81 else if (!strcasecmp(v
, "concatenate"))
82 return combine_notes_concatenate
;
83 else if (!strcasecmp(v
, "cat_sort_uniq"))
84 return combine_notes_cat_sort_uniq
;
89 static int notes_rewrite_config(const char *k
, const char *v
, void *cb
)
91 struct notes_rewrite_cfg
*c
= cb
;
92 if (starts_with(k
, "notes.rewrite.") && !strcmp(k
+14, c
->cmd
)) {
93 c
->enabled
= git_config_bool(k
, v
);
95 } else if (!c
->mode_from_env
&& !strcmp(k
, "notes.rewritemode")) {
97 return config_error_nonbool(k
);
98 c
->combine
= parse_combine_notes_fn(v
);
100 error(_("Bad notes.rewriteMode value: '%s'"), v
);
104 } else if (!c
->refs_from_env
&& !strcmp(k
, "notes.rewriteref")) {
105 /* note that a refs/ prefix is implied in the
106 * underlying for_each_glob_ref */
107 if (starts_with(v
, "refs/notes/"))
108 string_list_add_refs_by_glob(c
->refs
, v
);
110 warning(_("Refusing to rewrite notes in %s"
111 " (outside of refs/notes/)"), v
);
119 struct notes_rewrite_cfg
*init_copy_notes_for_rewrite(const char *cmd
)
121 struct notes_rewrite_cfg
*c
= xmalloc(sizeof(struct notes_rewrite_cfg
));
122 const char *rewrite_mode_env
= getenv(GIT_NOTES_REWRITE_MODE_ENVIRONMENT
);
123 const char *rewrite_refs_env
= getenv(GIT_NOTES_REWRITE_REF_ENVIRONMENT
);
126 c
->combine
= combine_notes_concatenate
;
127 c
->refs
= xcalloc(1, sizeof(struct string_list
));
128 c
->refs
->strdup_strings
= 1;
129 c
->refs_from_env
= 0;
130 c
->mode_from_env
= 0;
131 if (rewrite_mode_env
) {
132 c
->mode_from_env
= 1;
133 c
->combine
= parse_combine_notes_fn(rewrite_mode_env
);
136 * TRANSLATORS: The first %s is the name of
137 * the environment variable, the second %s is
140 error(_("Bad %s value: '%s'"), GIT_NOTES_REWRITE_MODE_ENVIRONMENT
,
143 if (rewrite_refs_env
) {
144 c
->refs_from_env
= 1;
145 string_list_add_refs_from_colon_sep(c
->refs
, rewrite_refs_env
);
147 git_config(notes_rewrite_config
, c
);
148 if (!c
->enabled
|| !c
->refs
->nr
) {
149 string_list_clear(c
->refs
, 0);
154 c
->trees
= load_notes_trees(c
->refs
, NOTES_INIT_WRITABLE
);
155 string_list_clear(c
->refs
, 0);
160 int copy_note_for_rewrite(struct notes_rewrite_cfg
*c
,
161 const unsigned char *from_obj
, const unsigned char *to_obj
)
165 for (i
= 0; c
->trees
[i
]; i
++)
166 ret
= copy_note(c
->trees
[i
], from_obj
, to_obj
, 1, c
->combine
) || ret
;
170 void finish_copy_notes_for_rewrite(struct notes_rewrite_cfg
*c
, const char *msg
)
173 for (i
= 0; c
->trees
[i
]; i
++) {
174 commit_notes(c
->trees
[i
], msg
);
175 free_notes(c
->trees
[i
]);