forked from jonas/tig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefs.c
211 lines (173 loc) · 5.11 KB
/
refs.c
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* Copyright (c) 2006-2015 Jonas Fonseca <jonas.fonseca@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include "tig/io.h"
#include "tig/options.h"
#include "tig/parse.h"
#include "tig/display.h"
#include "tig/view.h"
#include "tig/draw.h"
#include "tig/git.h"
#include "tig/main.h"
/*
* Branch backend
*/
struct reference {
const struct ident *author; /* Author of the last commit. */
struct time time; /* Date of the last activity. */
char title[128]; /* First line of the commit message. */
const struct ref *ref; /* Name and commit ID information. */
};
static const struct ref *refs_all;
#define REFS_ALL_NAME "All references"
#define refs_is_all(reference) ((reference)->ref == refs_all)
static bool
refs_get_column_data(struct view *view, const struct line *line, struct view_column_data *column_data)
{
const struct reference *reference = line->data;
column_data->author = reference->author;
column_data->date = &reference->time;
column_data->id = reference->ref->id;
column_data->ref = reference->ref;
column_data->commit_title = reference->title;
return true;
}
static enum request
refs_request(struct view *view, enum request request, struct line *line)
{
struct reference *reference = line->data;
switch (request) {
case REQ_REFRESH:
load_refs(true);
refresh_view(view);
return REQ_NONE;
case REQ_ENTER:
{
const struct ref *ref = reference->ref;
const char *all_references_argv[] = {
GIT_MAIN_LOG(encoding_arg, commit_order_arg(),
"%(mainargs)", "",
refs_is_all(reference) ? "--all" : ref->name, "",
log_custom_pretty_arg())
};
if (!argv_format(main_view.env, &main_view.argv, all_references_argv, false, false))
report("Failed to format argument");
else
open_view(view, &main_view, OPEN_SPLIT | OPEN_PREPARED);
return REQ_NONE;
}
default:
return request;
}
}
static bool
refs_read(struct view *view, struct buffer *buf)
{
struct reference template = {0};
char *author;
char *title;
size_t i;
if (!buf)
return true;
if (!*buf->data)
return false;
author = io_memchr(buf, buf->data, 0);
title = io_memchr(buf, author, 0);
if (author)
parse_author_line(author, &template.author, &template.time);
for (i = 0; i < view->lines; i++) {
struct reference *reference = view->line[i].data;
if (strcmp(reference->ref->id, buf->data))
continue;
reference->author = template.author;
reference->time = template.time;
if (title)
string_expand(reference->title, sizeof(reference->title), title, strlen(title), 1);
view->line[i].dirty = true;
view_column_info_update(view, &view->line[i]);
}
return true;
}
static bool
refs_open_visitor(void *data, const struct ref *ref)
{
struct view *view = data;
struct reference *reference;
bool is_all = ref == refs_all;
struct line *line;
line = add_line_alloc(view, &reference, LINE_DEFAULT, 0, is_all);
if (!line)
return false;
reference->ref = ref;
view_column_info_update(view, line);
return true;
}
static bool
refs_open(struct view *view, enum open_flags flags)
{
const char *refs_log[] = {
"git", "log", encoding_arg, "--no-color", "--date=raw",
opt_mailmap ? "--pretty=format:%H%x00%aN <%aE> %ad%x00%s"
: "--pretty=format:%H%x00%an <%ae> %ad%x00%s",
"--all", "--simplify-by-decoration", NULL
};
if (!refs_all) {
struct ref *ref = calloc(1, sizeof(*refs_all) + strlen(REFS_ALL_NAME));
if (ref) {
strncpy(ref->name, REFS_ALL_NAME, strlen(REFS_ALL_NAME));
refs_all = ref;
}
}
if (!refs_all || !begin_update(view, NULL, refs_log, OPEN_RELOAD)) {
report("Failed to load reference data");
return false;
}
if (!view->lines)
view->sort.current = get_view_column(view, VIEW_COLUMN_REF);
refs_open_visitor(view, refs_all);
foreach_ref(refs_open_visitor, view);
resort_view(view, true);
watch_register(&view->watch, WATCH_HEAD | WATCH_REFS);
return true;
}
static void
refs_select(struct view *view, struct line *line)
{
struct reference *reference = line->data;
if (refs_is_all(reference)) {
string_copy(view->ref, REFS_ALL_NAME);
return;
}
string_copy_rev(view->ref, reference->ref->id);
string_copy_rev(view->env->head, reference->ref->id);
string_ncopy(view->env->ref, reference->ref->name, strlen(reference->ref->name));
ref_update_env(view->env, reference->ref, false);
}
static struct view_ops refs_ops = {
"reference",
argv_env.head,
VIEW_REFRESH | VIEW_SORTABLE,
0,
refs_open,
refs_read,
view_column_draw,
refs_request,
view_column_grep,
refs_select,
NULL,
view_column_bit(AUTHOR) | view_column_bit(COMMIT_TITLE) |
view_column_bit(DATE) | view_column_bit(ID) |
view_column_bit(LINE_NUMBER) | view_column_bit(REF),
refs_get_column_data,
};
DEFINE_VIEW(refs);
/* vim: set ts=8 sw=8 noexpandtab: */