Hash :
7bafd175
Author :
Date :
2018-03-18T01:39:57
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
/*
* Copyright (C) the libgit2 contributors. All rights reserved.
*
* This file is part of libgit2, distributed under the GNU GPL v2 with
* a Linking Exception. For full terms see the included COPYING file.
*/
#include "git2/mailmap.h"
#include "blob.h"
#include "commit.h"
#include "git2/common.h"
#include "git2/repository.h"
#include "git2/revparse.h"
#include "git2/sys/commit.h"
/**
* Helper type and methods for the mailmap parser
*/
typedef struct char_range {
const char *p;
size_t len;
} char_range;
static const char_range NULL_RANGE = {0};
/* Split a range at the first instance of 'c'. Returns whether 'c' was found */
static bool range_split(
char_range range,
char c,
char_range *before,
char_range *after)
{
const char *off;
*before = *after = NULL_RANGE;
before->p = range.p;
off = memchr(range.p, c, range.len);
if (!off) {
before->len = range.len;
return false;
}
before->len = off - range.p;
after->p = off + 1;
after->len = (range.p + range.len) - after->p;
return true;
}
/* Trim whitespace from the beginning and end of the range */
static void range_trim(char_range *range) {
while (range->len > 0 && git__isspace(range->p[0])) {
++range->p;
--range->len;
}
while (range->len > 0 && git__isspace(range->p[range->len - 1]))
--range->len;
}
/**
* If `buf` is not NULL, copies range into it with a '\0', and bumps buf.
* If `size` is not NULL, adds the number of bytes to be written to it.
* returns a pointer to the copied string, or NULL.
*/
static const char *range_copyz(char **buf, size_t *size, char_range src)
{
char *s = NULL;
if (src.p == NULL)
return NULL;
if (size)
*size += src.len + 1;
if (buf) {
s = *buf;
memcpy(s, src.p, src.len);
s[src.len] = '\0';
*buf += src.len + 1;
}
return s;
}
struct git_mailmap {
git_vector entries;
};
/**
* Parse a single entry out of a mailmap file.
* Advances the `file` range past the parsed entry.
*/
static int git_mailmap_parse_single(
char_range *file,
bool *found,
char_range *real_name,
char_range *real_email,
char_range *replace_name,
char_range *replace_email)
{
char_range line, comment, name_a, email_a, name_b, email_b;
bool two_emails = false;
*found = false;
*real_name = NULL_RANGE;
*real_email = NULL_RANGE;
*replace_name = NULL_RANGE;
*replace_email = NULL_RANGE;
while (file->len > 0) {
/* Get the line, and remove any comments */
range_split(*file, '\n', &line, file);
range_split(line, '#', &line, &comment);
/* Skip blank lines */
range_trim(&line);
if (line.len == 0)
continue;
/* Get the first name and email */
if (!range_split(line, '<', &name_a, &line))
return -1; /* garbage in line */
if (!range_split(line, '>', &email_a, &line))
return -1; /* unfinished <> pair */
/* Get an optional second name and/or email */
two_emails = range_split(line, '<', &name_b, &line);
if (two_emails && !range_split(line, '>', &email_b, &line))
return -1; /* unfinished <> pair */
/* Trim whitespace from around names */
range_trim(&name_a);
range_trim(&name_b);
*found = true;
if (name_a.len > 0)
*real_name = name_a;
if (two_emails) {
*real_email = email_a;
*replace_email = email_b;
if (name_b.len > 0)
*replace_name = name_b;
} else {
*replace_email = email_a;
}
break;
}
return 0;
}
int git_mailmap_parse(
git_mailmap **mailmap,
const char *data,
size_t size)
{
char_range file = { data, size };
git_mailmap_entry* entry = NULL;
int error = 0;
*mailmap = git__calloc(1, sizeof(git_mailmap));
if (!*mailmap)
return -1;
/* XXX: Is it worth it to precompute the size? */
error = git_vector_init(&(*mailmap)->entries, 0, NULL);
if (error < 0)
goto cleanup;
while (file.len > 0) {
bool found = false;
char_range real_name, real_email, replace_name, replace_email;
size_t size = 0;
char *buf = NULL;
error = git_mailmap_parse_single(
&file, &found,
&real_name, &real_email,
&replace_name, &replace_email);
if (error < 0 || !found) {
error = 0;
continue;
}
/* Compute how much space we'll need to store our entry */
size = sizeof(git_mailmap_entry);
range_copyz(NULL, &size, real_name);
range_copyz(NULL, &size, real_email);
range_copyz(NULL, &size, replace_name);
range_copyz(NULL, &size, replace_email);
entry = git__malloc(size);
if (!entry) {
error = -1;
goto cleanup;
}
buf = (char*)(entry + 1);
entry->real_name = range_copyz(&buf, NULL, real_name);
entry->real_email = range_copyz(&buf, NULL, real_email);
entry->replace_name = range_copyz(&buf, NULL, replace_name);
entry->replace_email = range_copyz(&buf, NULL, replace_email);
assert(buf == ((char*)entry) + size);
error = git_vector_insert(&(*mailmap)->entries, entry);
if (error < 0)
goto cleanup;
entry = NULL;
}
cleanup:
if (entry)
git__free(entry);
if (error < 0 && *mailmap) {
git_mailmap_free(*mailmap);
*mailmap = NULL;
}
return error;
}
void git_mailmap_free(git_mailmap *mailmap)
{
git_vector_free_deep(&mailmap->entries);
git__free(mailmap);
}
void git_mailmap_resolve(
const char **name_out,
const char **email_out,
git_mailmap *mailmap,
const char *name,
const char *email)
{
git_mailmap_entry *entry = NULL;
*name_out = name;
*email_out = email;
entry = git_mailmap_entry_lookup(mailmap, name, email);
if (entry) {
if (entry->real_name)
*name_out = entry->real_name;
if (entry->real_email)
*email_out = entry->real_email;
}
}
git_mailmap_entry *git_mailmap_entry_lookup(
git_mailmap *mailmap,
const char *name,
const char *email)
{
size_t i;
git_mailmap_entry *entry;
assert(mailmap && name && email);
git_vector_foreach(&mailmap->entries, i, entry) {
if (!git__strcmp(email, entry->replace_email) &&
(!entry->replace_name || !git__strcmp(name, entry->replace_name))) {
return entry;
}
}
return NULL;
}
git_mailmap_entry *git_mailmap_entry_byindex(git_mailmap *mailmap, size_t idx)
{
return git_vector_get(&mailmap->entries, idx);
}
size_t git_mailmap_entry_count(git_mailmap *mailmap)
{
return git_vector_length(&mailmap->entries);
}
int git_mailmap_from_tree(
git_mailmap **mailmap,
const git_object *treeish)
{
git_blob *blob = NULL;
const char *content = NULL;
git_off_t size = 0;
int error;
*mailmap = NULL;
error = git_object_lookup_bypath(
(git_object **) &blob,
treeish,
".mailmap",
GIT_OBJ_BLOB);
if (error < 0)
goto cleanup;
content = git_blob_rawcontent(blob);
size = git_blob_rawsize(blob);
error = git_mailmap_parse(mailmap, content, size);
cleanup:
if (blob != NULL)
git_blob_free(blob);
return error;
}
int git_mailmap_from_repo(git_mailmap **mailmap, git_repository *repo)
{
git_object *head = NULL;
int error;
*mailmap = NULL;
error = git_revparse_single(&head, repo, "HEAD");
if (error < 0)
goto cleanup;
error = git_mailmap_from_tree(mailmap, head);
cleanup:
if (head)
git_object_free(head);
return error;
}