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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410
|
/* Copyright (c) 2006-2010 Jonas Fonseca <fonseca@diku.dk>
*
* 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.h"
#include "graph.h"
DEFINE_ALLOCATOR(realloc_graph_columns, struct graph_column, 32)
DEFINE_ALLOCATOR(realloc_graph_symbols, struct graph_symbol, 1)
static size_t get_free_graph_color(struct graph *graph)
{
size_t i, free_color;
for (free_color = i = 0; i < ARRAY_SIZE(graph->colors); i++) {
if (graph->colors[i] < graph->colors[free_color])
free_color = i;
}
graph->colors[free_color]++;
return free_color;
}
void
done_graph(struct graph *graph)
{
free(graph->row.columns);
free(graph->parents.columns);
memset(graph, 0, sizeof(*graph));
}
#define graph_column_has_commit(col) ((col)->id[0])
static size_t
graph_find_column_by_id(struct graph_row *row, const char *id)
{
size_t free_column = row->size;
size_t i;
for (i = 0; i < row->size; i++) {
if (!graph_column_has_commit(&row->columns[i]))
free_column = i;
else if (!strcmp(row->columns[i].id, id))
return i;
}
return free_column;
}
static struct graph_column *
graph_insert_column(struct graph *graph, struct graph_row *row, size_t pos, const char *id)
{
struct graph_column *column;
if (!realloc_graph_columns(&row->columns, row->size, 1))
return NULL;
column = &row->columns[pos];
if (pos < row->size) {
memmove(column + 1, column, sizeof(*column) * (row->size - pos));
}
row->size++;
memset(column, 0, sizeof(*column));
string_copy_rev(column->id, id);
column->symbol.boundary = !!graph->is_boundary;
return column;
}
struct graph_column *
graph_add_parent(struct graph *graph, const char *parent)
{
return graph_insert_column(graph, &graph->parents, graph->parents.size, parent);
}
static bool
graph_needs_expansion(struct graph *graph)
{
if (graph->position + graph->parents.size > graph->row.size)
return TRUE;
return graph->parents.size > 1
&& graph->position < 0
&& graph->expanded < graph->parents.size;
}
static bool
graph_expand(struct graph *graph)
{
while (graph_needs_expansion(graph)) {
if (!graph_insert_column(graph, &graph->row, graph->position + graph->expanded, ""))
return FALSE;
graph->expanded++;
}
return TRUE;
}
static bool
graph_needs_collapsing(struct graph *graph)
{
return graph->row.size > 1
&& !graph_column_has_commit(&graph->row.columns[graph->row.size - 1]);
}
static bool
graph_collapse(struct graph *graph)
{
while (graph_needs_collapsing(graph)) {
graph->row.size--;
}
return TRUE;
}
static void
graph_reorder_parents(struct graph *graph)
{
struct graph_row *row = &graph->row;
struct graph_row *parents = &graph->parents;
int i;
if (parents->size == 1)
return;
for (i = 0; i < parents->size; i++) {
struct graph_column *column = &parents->columns[i];
size_t match = graph_find_column_by_id(row, column->id);
if (match < graph->position && graph_column_has_commit(&row->columns[match])) {
//die("Reorder: %s -> %s", graph->commit->id, column->id);
// row->columns[match].symbol.initial = 1;
}
}
}
static void
graph_canvas_append_symbol(struct graph *graph, struct graph_symbol *symbol)
{
struct graph_canvas *canvas = graph->canvas;
if (realloc_graph_symbols(&canvas->symbols, canvas->size, 1))
canvas->symbols[canvas->size++] = *symbol;
}
static bool
graph_insert_parents(struct graph *graph)
{
struct graph_row *row = &graph->row;
struct graph_row *parents = &graph->parents;
size_t orig_size = row->size;
bool branched = FALSE;
bool merge = parents->size > 1;
int pos;
assert(!graph_needs_expansion(graph));
for (pos = 0; pos < graph->position; pos++) {
struct graph_column *column = &row->columns[pos];
struct graph_symbol symbol = column->symbol;
if (graph_column_has_commit(column)) {
size_t match = graph_find_column_by_id(parents, column->id);
if (match < parents->size) {
column->symbol.initial = 1;
}
symbol.branch = 1;
}
symbol.vbranch = !!branched;
if (!strcmp(column->id, graph->id)) {
branched = TRUE;
column->id[0] = 0;
}
graph_canvas_append_symbol(graph, &symbol);
}
for (; pos < graph->position + parents->size; pos++) {
struct graph_column *old = &row->columns[pos];
struct graph_column *new = &parents->columns[pos - graph->position];
struct graph_symbol symbol = old->symbol;
symbol.merge = !!merge;
if (pos == graph->position) {
symbol.commit = 1;
/*
if (new->symbol->boundary) {
symbol.boundary = 1;
} else*/
if (!graph_column_has_commit(new)) {
symbol.initial = 1;
}
} else if (!strcmp(old->id, new->id) && orig_size == row->size) {
symbol.vbranch = 1;
symbol.branch = 1;
//symbol.merge = 1;
} else if (parents->size > 1) {
symbol.merge = 1;
symbol.vbranch = !(pos == graph->position + parents->size - 1);
} else if (graph_column_has_commit(old)) {
symbol.branch = 1;
}
graph_canvas_append_symbol(graph, &symbol);
if (!graph_column_has_commit(old))
new->symbol.color = get_free_graph_color(graph);
*old = *new;
}
for (; pos < row->size; pos++) {
bool too = !strcmp(row->columns[row->size - 1].id, graph->id);
struct graph_symbol symbol = row->columns[pos].symbol;
symbol.vbranch = !!too;
if (row->columns[pos].id[0]) {
symbol.branch = 1;
if (!strcmp(row->columns[pos].id, graph->id)) {
symbol.branched = 1;
if (too && pos != row->size - 1) {
symbol.vbranch = 1;
} else {
symbol.vbranch = 0;
}
row->columns[pos].id[0] = 0;
}
}
graph_canvas_append_symbol(graph, &symbol);
}
graph->parents.size = graph->expanded = graph->position = 0;
return TRUE;
}
bool
graph_render_parents(struct graph *graph)
{
if (!graph_expand(graph))
return FALSE;
graph_reorder_parents(graph);
graph_insert_parents(graph);
if (!graph_collapse(graph))
return FALSE;
return TRUE;
}
bool
graph_add_commit(struct graph *graph, struct graph_canvas *canvas,
const char *id, const char *parents, bool is_boundary)
{
graph->position = graph_find_column_by_id(&graph->row, id);
graph->id = id;
graph->canvas = canvas;
graph->is_boundary = is_boundary;
while ((parents = strchr(parents, ' '))) {
parents++;
if (!graph_add_parent(graph, parents))
return FALSE;
graph->has_parents = TRUE;
}
if (graph->parents.size == 0 &&
!graph_add_parent(graph, ""))
return FALSE;
return TRUE;
}
const char *
graph_symbol_to_utf8(struct graph_symbol *symbol)
{
if (symbol->commit) {
if (symbol->boundary)
return " ◯";
else if (symbol->initial)
return " ◎";
else if (symbol->merge)
return " ●";
return " ●";
}
if (symbol->merge) {
if (symbol->branch) {
return "━┪";
}
if (symbol->vbranch)
return "━┯";
return "━┑";
}
if (symbol->branch) {
if (symbol->branched) {
if (symbol->vbranch)
return "─┴";
return "─┘";
}
if (symbol->vbranch)
return "─│";
return " │";
}
if (symbol->vbranch)
return "──";
return " ";
}
const chtype *
graph_symbol_to_chtype(struct graph_symbol *symbol)
{
static chtype graphics[2];
if (symbol->commit) {
graphics[0] = ' ';
if (symbol->boundary)
graphics[1] = 'o';
else if (symbol->initial)
graphics[1] = 'I';
else if (symbol->merge)
graphics[1] = 'M';
else
graphics[1] = 'o'; //ACS_DIAMOND; //'*';
return graphics;
}
if (symbol->merge) {
graphics[0] = ACS_HLINE;
if (symbol->branch)
graphics[1] = ACS_RTEE;
else
graphics[1] = ACS_URCORNER;
return graphics;
}
if (symbol->branch) {
graphics[0] = ACS_HLINE;
if (symbol->branched) {
if (symbol->vbranch)
graphics[1] = ACS_BTEE;
else
graphics[1] = ACS_LRCORNER;
return graphics;
}
if (!symbol->vbranch)
graphics[0] = ' ';
graphics[1] = ACS_VLINE;
return graphics;
}
if (symbol->vbranch) {
graphics[0] = graphics[1] = ACS_HLINE;
} else
graphics[0] = graphics[1] = ' ';
return graphics;
}
const char *
graph_symbol_to_ascii(struct graph_symbol *symbol)
{
if (symbol->commit) {
if (symbol->boundary)
return " o";
else if (symbol->initial)
return " I";
else if (symbol->merge)
return " M";
return " *";
}
if (symbol->merge) {
if (symbol->branch)
return "-+";
return "-.";
}
if (symbol->branch) {
if (symbol->branched) {
if (symbol->vbranch)
return "-+";
return "-'";
}
if (symbol->vbranch)
return "-|";
return " |";
}
if (symbol->vbranch)
return "--";
return " ";
}
|