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 package org.eclipse.jgit.api;
44
45 import java.io.IOException;
46
47 import org.eclipse.jgit.api.errors.GitAPIException;
48 import org.eclipse.jgit.api.errors.JGitInternalException;
49 import org.eclipse.jgit.lib.CommitBuilder;
50 import org.eclipse.jgit.lib.Constants;
51 import org.eclipse.jgit.lib.ObjectId;
52 import org.eclipse.jgit.lib.ObjectInserter;
53 import org.eclipse.jgit.lib.PersonIdent;
54 import org.eclipse.jgit.lib.Ref;
55 import org.eclipse.jgit.lib.RefUpdate;
56 import org.eclipse.jgit.lib.Repository;
57 import org.eclipse.jgit.notes.Note;
58 import org.eclipse.jgit.notes.NoteMap;
59 import org.eclipse.jgit.revwalk.RevCommit;
60 import org.eclipse.jgit.revwalk.RevObject;
61 import org.eclipse.jgit.revwalk.RevWalk;
62
63
64
65
66
67
68
69 public class AddNoteCommand extends GitCommand<Note> {
70
71 private RevObject id;
72
73 private String message;
74
75 private String notesRef = Constants.R_NOTES_COMMITS;
76
77
78
79
80 protected AddNoteCommand(Repository repo) {
81 super(repo);
82 }
83
84 public Note call() throws GitAPIException {
85 checkCallable();
86 NoteMap map = NoteMap.newEmptyMap();
87 RevCommit notesCommit = null;
88 try (RevWalk walk = new RevWalk(repo);
89 ObjectInserter inserter = repo.newObjectInserter()) {
90 Ref ref = repo.getRef(notesRef);
91
92 if (ref != null) {
93 notesCommit = walk.parseCommit(ref.getObjectId());
94 map = NoteMap.read(walk.getObjectReader(), notesCommit);
95 }
96 map.set(id, message, inserter);
97 commitNoteMap(walk, map, notesCommit, inserter,
98 "Notes added by 'git notes add'");
99 return map.getNote(id);
100 } catch (IOException e) {
101 throw new JGitInternalException(e.getMessage(), e);
102 }
103 }
104
105
106
107
108
109
110
111
112 public AddNoteCommand setObjectId(RevObject id) {
113 checkCallable();
114 this.id = id;
115 return this;
116 }
117
118
119
120
121
122
123 public AddNoteCommand setMessage(String message) {
124 checkCallable();
125 this.message = message;
126 return this;
127 }
128
129 private void commitNoteMap(RevWalk walk, NoteMap map,
130 RevCommit notesCommit,
131 ObjectInserter inserter,
132 String msg)
133 throws IOException {
134
135 CommitBuilder builder = new CommitBuilder();
136 builder.setTreeId(map.writeTree(inserter));
137 builder.setAuthor(new PersonIdent(repo));
138 builder.setCommitter(builder.getAuthor());
139 builder.setMessage(msg);
140 if (notesCommit != null)
141 builder.setParentIds(notesCommit);
142 ObjectId commit = inserter.insert(builder);
143 inserter.flush();
144 RefUpdate refUpdate = repo.updateRef(notesRef);
145 if (notesCommit != null)
146 refUpdate.setExpectedOldObjectId(notesCommit);
147 else
148 refUpdate.setExpectedOldObjectId(ObjectId.zeroId());
149 refUpdate.setNewObjectId(commit);
150 refUpdate.update(walk);
151 }
152
153
154
155
156
157
158
159
160
161
162 public AddNoteCommand setNotesRef(String notesRef) {
163 checkCallable();
164 this.notesRef = notesRef;
165 return this;
166 }
167
168 }