6 #include "string-list.h"
7 #include "reflog-walk.h"
9 struct complete_reflogs
{
11 const char *short_ref
;
13 unsigned char osha1
[20], nsha1
[20];
15 unsigned long timestamp
;
22 static int read_one_reflog(unsigned char *osha1
, unsigned char *nsha1
,
23 const char *email
, unsigned long timestamp
, int tz
,
24 const char *message
, void *cb_data
)
26 struct complete_reflogs
*array
= cb_data
;
27 struct reflog_info
*item
;
29 ALLOC_GROW(array
->items
, array
->nr
+ 1, array
->alloc
);
30 item
= array
->items
+ array
->nr
;
31 hashcpy(item
->osha1
, osha1
);
32 hashcpy(item
->nsha1
, nsha1
);
33 item
->email
= xstrdup(email
);
34 item
->timestamp
= timestamp
;
36 item
->message
= xstrdup(message
);
41 static struct complete_reflogs
*read_complete_reflog(const char *ref
)
43 struct complete_reflogs
*reflogs
=
44 xcalloc(1, sizeof(struct complete_reflogs
));
45 reflogs
->ref
= xstrdup(ref
);
46 for_each_reflog_ent(ref
, read_one_reflog
, reflogs
);
47 if (reflogs
->nr
== 0) {
48 unsigned char sha1
[20];
51 name
= name_to_free
= resolve_refdup(ref
, RESOLVE_REF_READING
,
54 for_each_reflog_ent(name
, read_one_reflog
, reflogs
);
58 if (reflogs
->nr
== 0) {
59 char *refname
= xstrfmt("refs/%s", ref
);
60 for_each_reflog_ent(refname
, read_one_reflog
, reflogs
);
61 if (reflogs
->nr
== 0) {
63 refname
= xstrfmt("refs/heads/%s", ref
);
64 for_each_reflog_ent(refname
, read_one_reflog
, reflogs
);
71 static int get_reflog_recno_by_time(struct complete_reflogs
*array
,
72 unsigned long timestamp
)
75 for (i
= array
->nr
- 1; i
>= 0; i
--)
76 if (timestamp
>= array
->items
[i
].timestamp
)
81 struct commit_info_lifo
{
83 struct commit
*commit
;
89 static struct commit_info
*get_commit_info(struct commit
*commit
,
90 struct commit_info_lifo
*lifo
, int pop
)
93 for (i
= 0; i
< lifo
->nr
; i
++)
94 if (lifo
->items
[i
].commit
== commit
) {
95 struct commit_info
*result
= &lifo
->items
[i
];
98 memmove(lifo
->items
+ i
,
101 sizeof(struct commit_info
));
109 static void add_commit_info(struct commit
*commit
, void *util
,
110 struct commit_info_lifo
*lifo
)
112 struct commit_info
*info
;
113 ALLOC_GROW(lifo
->items
, lifo
->nr
+ 1, lifo
->alloc
);
114 info
= lifo
->items
+ lifo
->nr
;
115 info
->commit
= commit
;
120 struct commit_reflog
{
127 struct complete_reflogs
*reflogs
;
130 struct reflog_walk_info
{
131 struct commit_info_lifo reflogs
;
132 struct string_list complete_reflogs
;
133 struct commit_reflog
*last_commit_reflog
;
136 void init_reflog_walk(struct reflog_walk_info
**info
)
138 *info
= xcalloc(1, sizeof(struct reflog_walk_info
));
141 int add_reflog_for_walk(struct reflog_walk_info
*info
,
142 struct commit
*commit
, const char *name
)
144 unsigned long timestamp
= 0;
146 struct string_list_item
*item
;
147 struct complete_reflogs
*reflogs
;
148 char *branch
, *at
= strchr(name
, '@');
149 struct commit_reflog
*commit_reflog
;
150 enum selector_type selector
= SELECTOR_NONE
;
152 if (commit
->object
.flags
& UNINTERESTING
)
153 die ("Cannot walk reflogs for %s", name
);
155 branch
= xstrdup(name
);
156 if (at
&& at
[1] == '{') {
158 branch
[at
- name
] = '\0';
159 recno
= strtoul(at
+ 2, &ep
, 10);
162 timestamp
= approxidate(at
+ 2);
163 selector
= SELECTOR_DATE
;
166 selector
= SELECTOR_INDEX
;
170 item
= string_list_lookup(&info
->complete_reflogs
, branch
);
172 reflogs
= item
->util
;
174 if (*branch
== '\0') {
175 unsigned char sha1
[20];
177 branch
= resolve_refdup("HEAD", 0, sha1
, NULL
);
179 die ("No current branch");
182 reflogs
= read_complete_reflog(branch
);
183 if (!reflogs
|| reflogs
->nr
== 0) {
184 unsigned char sha1
[20];
186 if (dwim_log(branch
, strlen(branch
), sha1
, &b
) == 1) {
193 reflogs
= read_complete_reflog(branch
);
196 if (!reflogs
|| reflogs
->nr
== 0)
198 string_list_insert(&info
->complete_reflogs
, branch
)->util
202 commit_reflog
= xcalloc(1, sizeof(struct commit_reflog
));
204 commit_reflog
->recno
= get_reflog_recno_by_time(reflogs
, timestamp
);
205 if (commit_reflog
->recno
< 0) {
211 commit_reflog
->recno
= reflogs
->nr
- recno
- 1;
212 commit_reflog
->selector
= selector
;
213 commit_reflog
->reflogs
= reflogs
;
215 add_commit_info(commit
, commit_reflog
, &info
->reflogs
);
219 void fake_reflog_parent(struct reflog_walk_info
*info
, struct commit
*commit
)
221 struct commit_info
*commit_info
=
222 get_commit_info(commit
, &info
->reflogs
, 0);
223 struct commit_reflog
*commit_reflog
;
224 struct object
*logobj
;
225 struct reflog_info
*reflog
;
227 info
->last_commit_reflog
= NULL
;
231 commit_reflog
= commit_info
->util
;
232 if (commit_reflog
->recno
< 0) {
233 commit
->parents
= NULL
;
236 info
->last_commit_reflog
= commit_reflog
;
239 reflog
= &commit_reflog
->reflogs
->items
[commit_reflog
->recno
];
240 commit_reflog
->recno
--;
241 logobj
= parse_object(reflog
->osha1
);
242 } while (commit_reflog
->recno
&& (logobj
&& logobj
->type
!= OBJ_COMMIT
));
244 if (!logobj
|| logobj
->type
!= OBJ_COMMIT
) {
245 commit_info
->commit
= NULL
;
246 commit
->parents
= NULL
;
249 commit_info
->commit
= (struct commit
*)logobj
;
251 commit
->parents
= xcalloc(1, sizeof(struct commit_list
));
252 commit
->parents
->item
= commit_info
->commit
;
255 void get_reflog_selector(struct strbuf
*sb
,
256 struct reflog_walk_info
*reflog_info
,
257 const struct date_mode
*dmode
, int force_date
,
260 struct commit_reflog
*commit_reflog
= reflog_info
->last_commit_reflog
;
261 struct reflog_info
*info
;
262 const char *printed_ref
;
268 if (!commit_reflog
->reflogs
->short_ref
)
269 commit_reflog
->reflogs
->short_ref
270 = shorten_unambiguous_ref(commit_reflog
->reflogs
->ref
, 0);
271 printed_ref
= commit_reflog
->reflogs
->short_ref
;
273 printed_ref
= commit_reflog
->reflogs
->ref
;
276 strbuf_addf(sb
, "%s@{", printed_ref
);
277 if (commit_reflog
->selector
== SELECTOR_DATE
||
278 (commit_reflog
->selector
== SELECTOR_NONE
&& force_date
)) {
279 info
= &commit_reflog
->reflogs
->items
[commit_reflog
->recno
+1];
280 strbuf_addstr(sb
, show_date(info
->timestamp
, info
->tz
, dmode
));
282 strbuf_addf(sb
, "%d", commit_reflog
->reflogs
->nr
283 - 2 - commit_reflog
->recno
);
286 strbuf_addch(sb
, '}');
289 void get_reflog_message(struct strbuf
*sb
,
290 struct reflog_walk_info
*reflog_info
)
292 struct commit_reflog
*commit_reflog
= reflog_info
->last_commit_reflog
;
293 struct reflog_info
*info
;
299 info
= &commit_reflog
->reflogs
->items
[commit_reflog
->recno
+1];
300 len
= strlen(info
->message
);
302 len
--; /* strip away trailing newline */
303 strbuf_add(sb
, info
->message
, len
);
306 const char *get_reflog_ident(struct reflog_walk_info
*reflog_info
)
308 struct commit_reflog
*commit_reflog
= reflog_info
->last_commit_reflog
;
309 struct reflog_info
*info
;
314 info
= &commit_reflog
->reflogs
->items
[commit_reflog
->recno
+1];
318 void show_reflog_message(struct reflog_walk_info
*reflog_info
, int oneline
,
319 const struct date_mode
*dmode
, int force_date
)
321 if (reflog_info
&& reflog_info
->last_commit_reflog
) {
322 struct commit_reflog
*commit_reflog
= reflog_info
->last_commit_reflog
;
323 struct reflog_info
*info
;
324 struct strbuf selector
= STRBUF_INIT
;
326 info
= &commit_reflog
->reflogs
->items
[commit_reflog
->recno
+1];
327 get_reflog_selector(&selector
, reflog_info
, dmode
, force_date
, 0);
329 printf("%s: %s", selector
.buf
, info
->message
);
332 printf("Reflog: %s (%s)\nReflog message: %s",
333 selector
.buf
, info
->email
, info
->message
);
336 strbuf_release(&selector
);