aboutsummaryrefslogtreecommitdiff
path: root/notes.c
blob: 91ec77f3f045da17bb79b0d8403d63520e027555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include "cache.h"
#include "commit.h"
#include "notes.h"
#include "refs.h"
#include "utf8.h"
#include "strbuf.h"

static int initialized;

void get_commit_notes(const struct commit *commit, struct strbuf *sb,
		const char *output_encoding)
{
	static const char *utf8 = "utf-8";
	struct strbuf name = STRBUF_INIT;
	const char *hex;
	unsigned char sha1[20];
	char *msg;
	unsigned long msgoffset, msglen;
	enum object_type type;

	if (!initialized) {
		const char *env = getenv(GIT_NOTES_REF_ENVIRONMENT);
		if (env)
			notes_ref_name = getenv(GIT_NOTES_REF_ENVIRONMENT);
		else if (!notes_ref_name)
			notes_ref_name = GIT_NOTES_DEFAULT_REF;
		if (notes_ref_name && read_ref(notes_ref_name, sha1))
			notes_ref_name = NULL;
		initialized = 1;
	}

	if (!notes_ref_name)
		return;

	strbuf_addf(&name, "%s:%s", notes_ref_name,
			sha1_to_hex(commit->object.sha1));
	if (get_sha1(name.buf, sha1))
		return;

	if (!(msg = read_sha1_file(sha1, &type, &msglen)) || !msglen ||
			type != OBJ_BLOB)
		return;

	if (output_encoding && *output_encoding &&
			strcmp(utf8, output_encoding)) {
		char *reencoded = reencode_string(msg, output_encoding, utf8);
		if (reencoded) {
			free(msg);
			msg = reencoded;
			msglen = strlen(msg);
		}
	}

	/* we will end the annotation by a newline anyway */
	if (msglen && msg[msglen - 1] == '\n')
		msglen--;

	strbuf_addstr(sb, "\nNotes:\n");

	for (msgoffset = 0; msgoffset < msglen;) {
		int linelen = strchrnul(msg, '\n') - msg;

		strbuf_addstr(sb, "    ");
		strbuf_add(sb, msg + msgoffset, linelen);
		msgoffset += linelen;
	}
	free(msg);
}