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
/*
* Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/queue.h>
#include <sys/stat.h>
#include <sha1.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <util.h>
#include <zlib.h>
#include "got_error.h"
#include "got_object.h"
#include "got_blame.h"
#include "got_opentemp.h"
#include "got_lib_zbuf.h"
#include "got_lib_delta.h"
#include "got_lib_object.h"
#include "got_lib_diff.h"
struct got_blame_line {
int annotated;
struct got_object_id id;
};
struct got_blame {
FILE *f;
size_t nlines;
struct got_blame_line *lines; /* one per line */
};
static const struct got_error *
dump_blob_and_count_lines(size_t *nlines, FILE *outfile,
struct got_blob_object *blob)
{
const struct got_error *err = NULL;
size_t len, hdrlen;
const uint8_t *buf;
int i;
hdrlen = got_object_blob_get_hdrlen(blob);
*nlines = 0;
do {
err = got_object_blob_read_block(&len, blob);
if (err)
return err;
if (len == 0)
break;
buf = got_object_blob_get_read_buf(blob);
for (i = 0; i < len; i++) {
if (buf[i] == '\n')
(*nlines)++;
}
/* Skip blob object header first time around. */
fwrite(buf + hdrlen, len - hdrlen, 1, outfile);
hdrlen = 0;
} while (len != 0);
fflush(outfile);
rewind(outfile);
return NULL;
}
static void
annotate_line(struct got_blame *blame, int lineno, struct got_object_id *id)
{
struct got_blame_line *line;
if (lineno < 1 || lineno > blame->nlines)
return;
line = &blame->lines[lineno - 1];
if (line->annotated)
return;
memcpy(&line->id, id, sizeof(line->id));
line->annotated = 1;
}
static const struct got_error *
blame_commit(struct got_blame *blame, struct got_object_id *id,
struct got_object_id *pid, const char *path, struct got_repository *repo)
{
const struct got_error *err = NULL;
struct got_object *obj = NULL, *pobj = NULL;
struct got_blob_object *blob = NULL, *pblob = NULL;
struct got_diff_changes *changes = NULL;
err = got_object_open_by_path(&obj, repo, id, path);
if (err)
goto done;
if (got_object_get_type(obj) != GOT_OBJ_TYPE_BLOB) {
err = got_error(GOT_ERR_OBJ_TYPE);
goto done;
}
err = got_object_open_by_path(&pobj, repo, pid, path);
if (err) {
if (err->code == GOT_ERR_NO_OBJ) {
/* Blob's history began in previous commit. */
err = got_error(GOT_ERR_ITER_COMPLETED);
}
goto done;
}
if (got_object_get_type(pobj) != GOT_OBJ_TYPE_BLOB) {
/*
* Encountered a non-blob at the path (probably a tree).
* Blob's history began in previous commit.
*/
err = got_error(GOT_ERR_ITER_COMPLETED);
goto done;
}
/* If blob hashes match then don't bother with diffing. */
if (got_object_id_cmp(&obj->id, &pobj->id) == 0)
goto done;
err = got_object_blob_open(&blob, repo, obj, 8192);
if (err)
goto done;
err = got_object_blob_open(&pblob, repo, pobj, 8192);
if (err)
goto done;
err = got_diff_blob_lines_changed(&changes, blob, pblob);
if (err)
goto done;
if (changes) {
struct got_diff_change *change;
SIMPLEQ_FOREACH(change, &changes->entries, entry) {
int a = change->cv.a;
int b = change->cv.b;
int lineno;
for (lineno = a; lineno <= b; lineno++)
annotate_line(blame, lineno, id);
}
}
done:
if (obj)
got_object_close(obj);
if (pobj)
got_object_close(pobj);
if (blob)
got_object_blob_close(blob);
if (pblob)
got_object_blob_close(pblob);
return err;
}
static void
blame_close(struct got_blame *blame)
{
if (blame->f)
fclose(blame->f);
free(blame->lines);
free(blame);
}
static const struct got_error *
blame_open(struct got_blame **blamep, const char *path,
struct got_object_id *start_commit_id, struct got_repository *repo)
{
const struct got_error *err = NULL;
struct got_object *obj = NULL;
struct got_blob_object *blob = NULL;
struct got_blame *blame = NULL;
struct got_commit_object *commit = NULL;
struct got_object_id *id = NULL;
int lineno;
*blamep = NULL;
err = got_object_open_by_path(&obj, repo, start_commit_id, path);
if (err)
return err;
if (got_object_get_type(obj) != GOT_OBJ_TYPE_BLOB) {
err = got_error(GOT_ERR_OBJ_TYPE);
goto done;
}
err = got_object_blob_open(&blob, repo, obj, 8192);
if (err)
goto done;
blame = calloc(1, sizeof(*blame));
if (blame == NULL)
return got_error_from_errno();
blame->f = got_opentemp();
if (blame->f == NULL) {
err = got_error_from_errno();
goto done;
}
err = dump_blob_and_count_lines(&blame->nlines, blame->f, blob);
if (err)
goto done;
blame->lines = calloc(blame->nlines, sizeof(*blame->lines));
if (blame->lines == NULL) {
err = got_error_from_errno();
goto done;
}
/* Loop over first-parent history and try to blame commits. */
err = got_object_open_as_commit(&commit, repo, start_commit_id);
if (err)
goto done;
id = got_object_id_dup(start_commit_id);
if (id == NULL) {
err = got_error_from_errno();
goto done;
}
while (1) {
struct got_object_qid *pid;
pid = SIMPLEQ_FIRST(&commit->parent_ids);
if (pid == NULL)
break;
err = blame_commit(blame, id, pid->id, path, repo);
if (err) {
if (err->code == GOT_ERR_ITER_COMPLETED)
err = NULL;
break;
}
free(id);
id = got_object_id_dup(pid->id);
if (id == NULL) {
err = got_error_from_errno();
goto done;
}
got_object_commit_close(commit);
err = got_object_open_as_commit(&commit, repo, id);
if (err)
break;
}
/* Annotate remaining non-annotated lines with last commit. */
for (lineno = 1; lineno < blame->nlines; lineno++)
annotate_line(blame, lineno, id);
done:
free(id);
if (obj)
got_object_close(obj);
if (blob)
got_object_blob_close(blob);
if (commit)
got_object_commit_close(commit);
if (err)
blame_close(blame);
else
*blamep = blame;
return err;
}
static const struct got_error *
blame_line(struct got_object_id **id, struct got_blame *blame, int lineno)
{
if (lineno < 1 || lineno > blame->nlines)
return got_error(GOT_ERR_RANGE);
*id = &blame->lines[lineno - 1].id;
return NULL;
}
static char *
parse_next_line(FILE *f, size_t *len)
{
char *line;
size_t linelen;
size_t lineno;
const char delim[3] = { '\0', '\0', '\0'};
line = fparseln(f, &linelen, &lineno, delim, 0);
if (len)
*len = linelen;
return line;
}
const struct got_error *
got_blame(const char *path, struct got_object_id *start_commit_id,
struct got_repository *repo, FILE *outfile)
{
const struct got_error *err = NULL;
struct got_blame *blame;
int lineno;
char *abspath;
if (asprintf(&abspath, "%s%s", path[0] == '/' ? "" : "/", path) == -1)
return got_error_from_errno();
err = blame_open(&blame, abspath, start_commit_id, repo);
if (err) {
free(abspath);
return err;
}
for (lineno = 1; lineno < blame->nlines; lineno++) {
struct got_object_id *id;
char *line, *id_str;
line = parse_next_line(blame->f, NULL);
if (line == NULL)
break;
err = blame_line(&id, blame, lineno);
if (err)
break;
err = got_object_id_str(&id_str, id);
if (err) {
free(line);
break;
}
fprintf(outfile, "%.8s %s\n", id_str, line);
free(line);
free(id_str);
}
blame_close(blame);
free(abspath);
return err;
}