Add external API to access detailed commit attributes The following new external methods have been added: GIT_EXTERN(const char *) git_commit_message_short(git_commit *commit); GIT_EXTERN(const char *) git_commit_message(git_commit *commit); GIT_EXTERN(time_t) git_commit_time(git_commit *commit); GIT_EXTERN(const git_commit_person *) git_commit_committer(git_commit *commit); GIT_EXTERN(const git_commit_person *) git_commit_author(git_commit *commit); GIT_EXTERN(const git_tree *) git_commit_tree(git_commit *commit); A new structure, git_commit_person has been added to represent a commit's author or committer. The parsing of a commit has been split in two phases. When adding a commit to the revision pool: - the commit's ODB object is opened - its raw contents are parsed for commit TIME, PARENTS and TREE (the minimal amount of data required to traverse the pool) - the commit's ODB object is closed When querying for extended information on a commit: - the commit's ODB object is reopened - its raw contents are parsed for the requested information - the commit's ODB object remains open to handle additional queries New unit tests have been added for the new functionality: In t0401-parse: parse_person_test In t0402-details: query_details_test Signed-off-by: Vicent Marti <tanoku@gmail.com>
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 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
diff --git a/src/commit.c b/src/commit.c
index a1a5bf7..6b0b661 100644
--- a/src/commit.c
+++ b/src/commit.c
@@ -29,14 +29,22 @@
#include "git/odb.h"
#define COMMIT_PRINT(commit) {\
- char oid[41]; oid[40] = 0;\
- git_oid_fmt(oid, &commit->object.id);\
- printf("Oid: %s | In degree: %d | Time: %u\n", oid, commit->in_degree, commit->commit_time);\
+ char oid[41]; oid[40] = 0;\
+ git_oid_fmt(oid, &commit->object.id);\
+ printf("Oid: %s | In degree: %d | Time: %u\n", oid, commit->in_degree, commit->commit_time);\
}
void git_commit__free(git_commit *commit)
{
git_commit_list_clear(&commit->parents, 0);
+
+ if (commit->odb_open)
+ git_obj_close(&commit->odb_object);
+
+ free(commit->author);
+ free(commit->committer);
+ free(commit->message);
+ free(commit->message_short);
free(commit);
}
@@ -69,7 +77,7 @@ git_commit *git_commit_parse(git_revpool *pool, const git_oid *id)
if ((commit = git_commit_lookup(pool, id)) == NULL)
return NULL;
- if (git_commit_parse_existing(commit) < 0)
+ if (git_commit__parse_basic(commit) < 0)
goto error_cleanup;
return commit;
@@ -79,30 +87,51 @@ error_cleanup:
return NULL;
}
-int git_commit_parse_existing(git_commit *commit)
+int git_commit__parse(git_commit *commit, unsigned int parse_flags, int close_db_object)
{
int error = 0;
- git_obj commit_obj;
- if (commit->parsed)
- return 0;
+ if (!commit->odb_open) {
+ error = git_odb_read(&commit->odb_object, commit->object.pool->db, &commit->object.id);
+ if (error < 0)
+ return error;
- error = git_odb_read(&commit_obj, commit->object.pool->db, &commit->object.id);
- if (error < 0)
- return error;
+ if (commit->odb_object.type != GIT_OBJ_COMMIT) {
+ git_obj_close(&commit->odb_object);
+ return GIT_EOBJTYPE;
+ }
- if (commit_obj.type != GIT_OBJ_COMMIT) {
- error = GIT_EOBJTYPE;
- goto cleanup;
+ commit->odb_open = 1;
}
- error = git_commit__parse_buffer(commit, commit_obj.data, commit_obj.len);
+ error = git_commit__parse_buffer(commit,
+ commit->odb_object.data, commit->odb_object.len, parse_flags);
+
+ if (close_db_object) {
+ git_obj_close(&commit->odb_object);
+ commit->odb_open = 0;
+ }
-cleanup:
- git_obj_close(&commit_obj);
return error;
}
+int git_commit__parse_basic(git_commit *commit)
+{
+ int error;
+
+ if (commit->basic_parse)
+ return 0;
+
+ error = git_commit__parse(commit,
+ (GIT_COMMIT_TREE | GIT_COMMIT_PARENTS | GIT_COMMIT_TIME), 1);
+
+ if (error < 0)
+ return error;
+
+ commit->basic_parse = 1;
+ return 0;
+}
+
git_commit *git_commit_lookup(git_revpool *pool, const git_oid *id)
{
git_commit *commit = NULL;
@@ -131,35 +160,67 @@ git_commit *git_commit_lookup(git_revpool *pool, const git_oid *id)
return commit;
}
-int git_commit__parse_time(time_t *commit_time, char *buffer, const char *buffer_end)
+int git_commit__parse_person(git_commit_person *person, char **buffer_out,
+ const char *buffer_end, const char *header)
{
- if (memcmp(buffer, "author ", 7) != 0)
+ const size_t header_len = strlen(header);
+
+ int i;
+ char *buffer = *buffer_out;
+ char *line_end, *name, *email;
+
+ line_end = memchr(buffer, '\n', buffer_end - buffer);
+ if (!line_end)
return GIT_EOBJCORRUPTED;
- buffer = memchr(buffer, '\n', buffer_end - buffer);
- if (!buffer || ++buffer >= buffer_end)
+ if (buffer + (header_len + 1) > line_end)
return GIT_EOBJCORRUPTED;
- if (memcmp(buffer, "committer ", 10) != 0)
+ if (memcmp(buffer, header, header_len) != 0)
return GIT_EOBJCORRUPTED;
- buffer = memchr(buffer, '>', buffer_end - buffer);
- if (!buffer || ++buffer >= buffer_end)
+ buffer += header_len;
+
+
+ /* Parse name field */
+ for (i = 0, name = person->name;
+ i < 64 && buffer < line_end && *buffer != '<';
+ ++i)
+ *name++ = *buffer++;
+
+ *(name - 1) = 0;
+
+ while (buffer < line_end && *buffer != '<')
+ buffer++;
+
+ if (++buffer >= line_end)
return GIT_EOBJCORRUPTED;
- *commit_time = strtol(buffer, &buffer, 10);
+ /* Parse email field */
+ for (i = 0, email = person->email;
+ i < 64 && buffer < line_end && *buffer != '>';
+ ++i)
+ *email++ = *buffer++;
+
+ *email = 0;
+
+ while (buffer < line_end && *buffer != '>')
+ buffer++;
- if (*commit_time == 0)
+ if (++buffer >= line_end)
return GIT_EOBJCORRUPTED;
- buffer = memchr(buffer, '\n', buffer_end - buffer);
- if (!buffer || ++buffer >= buffer_end)
+ person->time = strtol(buffer, &buffer, 10);
+
+ if (person->time == 0)
return GIT_EOBJCORRUPTED;
- return (buffer < buffer_end) ? 0 : -1;
+ *buffer_out = (line_end + 1);
+ return 0;
}
-int git_commit__parse_oid(git_oid *oid, char **buffer_out, const char *buffer_end, const char *header)
+int git_commit__parse_oid(git_oid *oid, char **buffer_out,
+ const char *buffer_end, const char *header)
{
const size_t sha_len = GIT_OID_HEXSZ;
const size_t header_len = strlen(header);
@@ -183,28 +244,33 @@ int git_commit__parse_oid(git_oid *oid, char **buffer_out, const char *buffer_en
return 0;
}
-int git_commit__parse_buffer(git_commit *commit, void *data, size_t len)
+int git_commit__parse_buffer(git_commit *commit, void *data, size_t len, unsigned int parse_flags)
{
char *buffer = (char *)data;
const char *buffer_end = (char *)data + len;
git_oid oid;
-
- if (commit->parsed)
- return 0;
+ git_commit_person person;
if (git_commit__parse_oid(&oid, &buffer, buffer_end, "tree ") < 0)
return GIT_EOBJCORRUPTED;
- commit->tree = git_tree_lookup(commit->object.pool, &oid);
+ if (parse_flags & GIT_COMMIT_TREE)
+ commit->tree = git_tree_lookup(commit->object.pool, &oid);
/*
* TODO: commit grafts!
*/
+ if (parse_flags & GIT_COMMIT_PARENTS)
+ git_commit_list_clear(&commit->parents, 0);
+
while (git_commit__parse_oid(&oid, &buffer, buffer_end, "parent ") == 0) {
git_commit *parent;
+ if ((parse_flags & GIT_COMMIT_PARENTS) == 0)
+ continue;
+
if ((parent = git_commit_lookup(commit->object.pool, &oid)) == NULL)
return GIT_ENOTFOUND;
@@ -216,14 +282,117 @@ int git_commit__parse_buffer(git_commit *commit, void *data, size_t len)
return GIT_ENOMEM;
}
- if (git_commit__parse_time(&commit->commit_time, buffer, buffer_end) < 0)
+ if (git_commit__parse_person(&person, &buffer, buffer_end, "author ") < 0)
return GIT_EOBJCORRUPTED;
- commit->parsed = 1;
+ if (parse_flags & GIT_COMMIT_AUTHOR) {
+ if (commit->author)
+ free(commit->author);
+
+ commit->author = git__malloc(sizeof(git_commit_person));
+ memcpy(commit->author, &person, sizeof(git_commit_person));
+ }
+
+ if (git_commit__parse_person(&person, &buffer, buffer_end, "committer ") < 0)
+ return GIT_EOBJCORRUPTED;
+
+ if (parse_flags & GIT_COMMIT_TIME)
+ commit->commit_time = person.time;
+
+ if (parse_flags & GIT_COMMIT_COMMITTER) {
+ if (commit->committer)
+ free(commit->committer);
+
+ commit->committer = git__malloc(sizeof(git_commit_person));
+ memcpy(commit->committer, &person, sizeof(git_commit_person));
+ }
+
+ /* parse commit message */
+ while (buffer <= buffer_end && *buffer == '\n')
+ buffer++;
+
+ if (buffer < buffer_end)
+ {
+ if (parse_flags & GIT_COMMIT_MESSAGE) {
+ size_t message_len = buffer_end - buffer;
+
+ commit->message = git__malloc(message_len + 1);
+ memcpy(commit->message, buffer, message_len);
+ commit->message[message_len] = 0;
+ }
+
+ if (parse_flags & GIT_COMMIT_MESSAGE_SHORT) {
+ char *line_end;
+ size_t message_len;
+
+ line_end = memchr(buffer, '\n', buffer_end - buffer);
+ message_len = line_end - buffer;
+
+ commit->message_short = git__malloc(message_len + 1);
+ memcpy(commit->message_short, buffer, message_len);
+ commit->message_short[message_len] = 0;
+ }
+ }
return 0;
}
+const git_tree *git_commit_tree(git_commit *commit)
+{
+ if (commit->tree)
+ return commit->tree;
+
+ git_commit__parse(commit, GIT_COMMIT_TREE, 0);
+ return commit->tree;
+}
+
+const git_commit_person *git_commit_author(git_commit *commit)
+{
+ if (commit->author)
+ return commit->author;
+
+ git_commit__parse(commit, GIT_COMMIT_AUTHOR, 0);
+ return commit->author;
+}
+
+const git_commit_person *git_commit_committer(git_commit *commit)
+{
+ if (commit->committer)
+ return commit->committer;
+
+ git_commit__parse(commit, GIT_COMMIT_COMMITTER, 0);
+ return commit->committer;
+}
+
+time_t git_commit_time(git_commit *commit)
+{
+ if (commit->commit_time)
+ return commit->commit_time;
+
+ git_commit__parse(commit, GIT_COMMIT_TIME, 0);
+ return commit->commit_time;
+}
+
+const char *git_commit_message(git_commit *commit)
+{
+ if (commit->message)
+ return commit->message;
+
+ git_commit__parse(commit, GIT_COMMIT_MESSAGE, 0);
+ return commit->message;
+}
+
+const char *git_commit_message_short(git_commit *commit)
+{
+ if (commit->message_short)
+ return commit->message_short;
+
+ git_commit__parse(commit, GIT_COMMIT_MESSAGE_SHORT, 0);
+ return commit->message_short;
+}
+
+
+
int git_commit_list_push_back(git_commit_list *list, git_commit *commit)
{
git_commit_node *node = NULL;
diff --git a/src/commit.h b/src/commit.h
index 524570f..36fd65c 100644
--- a/src/commit.h
+++ b/src/commit.h
@@ -23,31 +23,46 @@ struct git_commit_list {
typedef struct git_commit_list git_commit_list;
typedef struct git_commit_node git_commit_node;
+#define GIT_COMMIT_TREE (1 << 1)
+#define GIT_COMMIT_PARENTS (1 << 2)
+#define GIT_COMMIT_AUTHOR (1 << 3)
+#define GIT_COMMIT_COMMITTER (1 << 4)
+#define GIT_COMMIT_TIME (1 << 5)
+#define GIT_COMMIT_MESSAGE (1 << 6)
+#define GIT_COMMIT_MESSAGE_SHORT (1 << 7)
+#define GIT_COMMIT_FOOTERS (1 << 8)
struct git_commit {
git_revpool_object object;
+ git_obj odb_object;
time_t commit_time;
git_commit_list parents;
git_tree *tree;
+ git_commit_person *author;
+ git_commit_person *committer;
+
+ char *message;
+ char *message_short;
unsigned short in_degree;
- unsigned parsed:1,
+ unsigned basic_parse:1,
+ odb_open:1,
seen:1,
uninteresting:1,
topo_delay:1,
- flags:26;
+ flags:25;
};
void git_commit__free(git_commit *c);
+int git_commit__parse(git_commit *commit, unsigned int flags, int close_odb);
+int git_commit__parse_basic(git_commit *commit);
int git_commit__parse_oid(git_oid *oid, char **buffer_out, const char *buffer_end, const char *header);
-int git_commit__parse_buffer(git_commit *commit, void *data, size_t len);
-int git_commit__parse_time(time_t *commit_time, char *buffer, const char *buffer_end);
+int git_commit__parse_buffer(git_commit *commit, void *data, size_t len, unsigned int parse_flags);
+int git_commit__parse_person(git_commit_person *person, char **buffer_out, const char *buffer_end, const char *header);
void git_commit__mark_uninteresting(git_commit *commit);
-int git_commit_parse_existing(git_commit *commit);
-
int git_commit_list_push_back(git_commit_list *list, git_commit *commit);
int git_commit_list_push_front(git_commit_list *list, git_commit *commit);
diff --git a/src/git/commit.h b/src/git/commit.h
index 0ccf3c2..6d34f01 100644
--- a/src/git/commit.h
+++ b/src/git/commit.h
@@ -3,6 +3,7 @@
#include "common.h"
#include "oid.h"
+#include "tree.h"
/**
* @file git/commit.h
@@ -16,6 +17,13 @@ GIT_BEGIN_DECL
/** Parsed representation of a commit object. */
typedef struct git_commit git_commit;
+/** Parsed representation of an author/committer of a commit */
+typedef struct git_commit_person {
+ char name[64]; /**< Full name */
+ char email[64]; /**< Email address */
+ time_t time; /**< Time when this person commited the change */
+} git_commit_person;
+
/**
* Locate a reference to a commit without loading it.
* The generated commit object is owned by the revision
@@ -45,11 +53,53 @@ GIT_EXTERN(git_commit *) git_commit_parse(git_revpool *pool, const git_oid *id);
/**
* Get the id of a commit.
- * @param commit a previously parsed commit.
+ * @param commit a previously loaded commit.
* @return object identity for the commit.
*/
GIT_EXTERN(const git_oid *) git_commit_id(git_commit *commit);
+/**
+ * Get the short (one line) message of a commit.
+ * @param commit a previously loaded commit.
+ * @return the short message of a commit
+ */
+GIT_EXTERN(const char *) git_commit_message_short(git_commit *commit);
+
+/**
+ * Get the full message of a commit.
+ * @param commit a previously loaded commit.
+ * @return the message of a commit
+ */
+GIT_EXTERN(const char *) git_commit_message(git_commit *commit);
+
+/**
+ * Get the commit time (i.e. committer time) of a commit.
+ * @param commit a previously loaded commit.
+ * @return the time of a commit
+ */
+GIT_EXTERN(time_t) git_commit_time(git_commit *commit);
+
+/**
+ * Get the committer of a commit.
+ * @param commit a previously loaded commit.
+ * @return the committer of a commit
+ */
+GIT_EXTERN(const git_commit_person *) git_commit_committer(git_commit *commit);
+
+/**
+ * Get the author of a commit.
+ * @param commit a previously loaded commit.
+ * @return the author of a commit
+ */
+GIT_EXTERN(const git_commit_person *) git_commit_author(git_commit *commit);
+
+/**
+ * Get the tree pointed to by a commit.
+ * @param commit a previously loaded commit.
+ * @return the tree of a commit
+ */
+GIT_EXTERN(const git_tree *) git_commit_tree(git_commit *commit);
+
/** @} */
GIT_END_DECL
#endif
diff --git a/src/revwalk.c b/src/revwalk.c
index 422ef9d..d4627ae 100644
--- a/src/revwalk.c
+++ b/src/revwalk.c
@@ -92,8 +92,9 @@ int gitrp_push(git_revpool *pool, git_commit *commit)
if (commit->object.pool != pool || pool->walking)
return GIT_ERROR;
- if (!commit->parsed) {
- int error = git_commit_parse_existing(commit);
+ if (!commit->basic_parse) {
+ int error = git_commit__parse_basic(commit);
+
if (error < 0)
return error;
}
@@ -129,8 +130,8 @@ int gitrp__enroot(git_revpool *pool, git_commit *commit)
if (commit->seen)
return 0;
- if (commit->parsed == 0) {
- error = git_commit_parse_existing(commit);
+ if (!commit->basic_parse) {
+ error = git_commit__parse_basic(commit);
if (error < 0)
return error;
}
diff --git a/tests/t0401-parse.c b/tests/t0401-parse.c
index d01f757..3c6a4c0 100644
--- a/tests/t0401-parse.c
+++ b/tests/t0401-parse.c
@@ -7,13 +7,13 @@
static char *test_commits_broken[] = {
- /* empty commit */
+/* empty commit */
"",
- /* random garbage */
+/* random garbage */
"asd97sa9du902e9a0jdsuusad09as9du098709aweu8987sd\n",
- /* broken endlines 1 */
+/* broken endlines 1 */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\r\n\
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\r\n\
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\r\n\
@@ -21,7 +21,7 @@ committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\r\n\
\r\n\
a test commit with broken endlines\r\n",
- /* broken endlines 2 */
+/* broken endlines 2 */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\
@@ -29,7 +29,7 @@ committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\
\
another test commit with broken endlines",
- /* starting endlines */
+/* starting endlines */
"\ntree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n\
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
@@ -37,53 +37,40 @@ committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
\n\
a test commit with a starting endline\n",
- /* corrupted commit 1 */
+/* corrupted commit 1 */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
parent 05452d6349abcd67aa396df",
- /* corrupted commit 2 */
+/* corrupted commit 2 */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
parent ",
- /* corrupted commit 3 */
+/* corrupted commit 3 */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
parent ",
- /* corrupted commit 4 */
+/* corrupted commit 4 */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
par",
- /*
- * FIXME: duplicated parents?
- * It this supposed to pass?
- */
-/*
-"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
-parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n\
-parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n\
-author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
-committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
-\n\
-duplicated parent",
-*/
};
static char *test_commits_working[] = {
- /* simple commit with no message */
+/* simple commit with no message */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
\n",
- /* simple commit, no parent */
+/* simple commit, no parent */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
\n\
a simple commit which works\n",
- /* simple commit, 1 parents */
+/* simple commit, 1 parents */
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n\
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
@@ -94,81 +81,179 @@ a simple commit which works\n",
BEGIN_TEST(parse_oid_test)
- git_oid oid;
+ git_oid oid;
#define TEST_OID_PASS(string, header) { \
- char *ptr = string;\
- char *ptr_original = ptr;\
- size_t len = strlen(ptr);\
- must_pass(git_commit__parse_oid(&oid, &ptr, ptr + len, header));\
- must_be_true(ptr == ptr_original + len);\
+ char *ptr = string;\
+ char *ptr_original = ptr;\
+ size_t len = strlen(ptr);\
+ must_pass(git_commit__parse_oid(&oid, &ptr, ptr + len, header));\
+ must_be_true(ptr == ptr_original + len);\
}
#define TEST_OID_FAIL(string, header) { \
- char *ptr = string;\
- size_t len = strlen(ptr);\
- must_fail(git_commit__parse_oid(&oid, &ptr, ptr + len, header));\
+ char *ptr = string;\
+ size_t len = strlen(ptr);\
+ must_fail(git_commit__parse_oid(&oid, &ptr, ptr + len, header));\
}
- TEST_OID_PASS("parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "parent ");
- TEST_OID_PASS("tree 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree ");
- TEST_OID_PASS("random_heading 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "random_heading ");
- TEST_OID_PASS("stuck_heading05452d6349abcd67aa396dfb28660d765d8b2a36\n", "stuck_heading");
- TEST_OID_PASS("tree 5F4BEFFC0759261D015AA63A3A85613FF2F235DE\n", "tree ");
- TEST_OID_PASS("tree 1A669B8AB81B5EB7D9DB69562D34952A38A9B504\n", "tree ");
- TEST_OID_PASS("tree 5B20DCC6110FCC75D31C6CEDEBD7F43ECA65B503\n", "tree ");
- TEST_OID_PASS("tree 173E7BF00EA5C33447E99E6C1255954A13026BE4\n", "tree ");
-
- TEST_OID_FAIL("parent 05452d6349abcd67aa396dfb28660d765d8b2a36", "parent ");
- TEST_OID_FAIL("05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree ");
- TEST_OID_FAIL("parent05452d6349abcd67aa396dfb28660d765d8b2a6a\n", "parent ");
- TEST_OID_FAIL("parent 05452d6349abcd67aa396dfb280d765d8b2a6\n", "parent ");
- TEST_OID_FAIL("tree 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree ");
- TEST_OID_FAIL("parent 0545xd6349abcd67aa396dfb28660d765d8b2a36\n", "parent ");
- TEST_OID_FAIL("parent 0545xd6349abcd67aa396dfb28660d765d8b2a36FF\n", "parent ");
- TEST_OID_FAIL("", "tree ");
- TEST_OID_FAIL("", "");
+ TEST_OID_PASS("parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "parent ");
+ TEST_OID_PASS("tree 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree ");
+ TEST_OID_PASS("random_heading 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "random_heading ");
+ TEST_OID_PASS("stuck_heading05452d6349abcd67aa396dfb28660d765d8b2a36\n", "stuck_heading");
+ TEST_OID_PASS("tree 5F4BEFFC0759261D015AA63A3A85613FF2F235DE\n", "tree ");
+ TEST_OID_PASS("tree 1A669B8AB81B5EB7D9DB69562D34952A38A9B504\n", "tree ");
+ TEST_OID_PASS("tree 5B20DCC6110FCC75D31C6CEDEBD7F43ECA65B503\n", "tree ");
+ TEST_OID_PASS("tree 173E7BF00EA5C33447E99E6C1255954A13026BE4\n", "tree ");
+
+ TEST_OID_FAIL("parent 05452d6349abcd67aa396dfb28660d765d8b2a36", "parent ");
+ TEST_OID_FAIL("05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree ");
+ TEST_OID_FAIL("parent05452d6349abcd67aa396dfb28660d765d8b2a6a\n", "parent ");
+ TEST_OID_FAIL("parent 05452d6349abcd67aa396dfb280d765d8b2a6\n", "parent ");
+ TEST_OID_FAIL("tree 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree ");
+ TEST_OID_FAIL("parent 0545xd6349abcd67aa396dfb28660d765d8b2a36\n", "parent ");
+ TEST_OID_FAIL("parent 0545xd6349abcd67aa396dfb28660d765d8b2a36FF\n", "parent ");
+ TEST_OID_FAIL("", "tree ");
+ TEST_OID_FAIL("", "");
#undef TEST_OID_PASS
#undef TEST_OID_FAIL
END_TEST
+BEGIN_TEST(parse_person_test)
+
+#define TEST_PERSON_PASS(_string, _header, _name, _email, _time) { \
+ char *ptr = _string; \
+ size_t len = strlen(_string);\
+ git_commit_person person; \
+ must_pass(git_commit__parse_person(&person, &ptr, ptr + len, _header));\
+ must_be_true(strncmp(_name, person.name, 63) == 0);\
+ must_be_true(strncmp(_email, person.email, 63) == 0);\
+ must_be_true(_time == person.time);\
+}
+
+#define TEST_PERSON_FAIL(_string, _header) { \
+ char *ptr = _string; \
+ size_t len = strlen(_string);\
+ git_commit_person person; \
+ must_fail(git_commit__parse_person(&person, &ptr, ptr + len, _header));\
+}
+
+ TEST_PERSON_PASS(
+ "author Vicent Marti <tanoku@gmail.com> 12345 \n",
+ "author ",
+ "Vicent Marti",
+ "tanoku@gmail.com",
+ 12345);
+
+ TEST_PERSON_PASS(
+ "author Vicent Marti <> 12345 \n",
+ "author ",
+ "Vicent Marti",
+ "",
+ 12345);
+
+ TEST_PERSON_PASS(
+ "author Vicent Marti <tanoku@gmail.com> 231301 +2020\n",
+ "author ",
+ "Vicent Marti",
+ "tanoku@gmail.com",
+ 231301);
+
+ TEST_PERSON_PASS(
+ "author Vicent Marti with an outrageously long name \
+ which will probably overflow the buffer <tanoku@gmail.com> 12345 \n",
+ "author ",
+ "Vicent Marti with an outrageously long name \
+ which will probably overflow the buffer",
+ "tanoku@gmail.com",
+ 12345);
+
+ TEST_PERSON_PASS(
+ "author Vicent Marti <tanokuwithaveryveryverylongemail\
+ whichwillprobablyvoverflowtheemailbuffer@gmail.com> 12345 \n",
+ "author ",
+ "Vicent Marti",
+ "tanokuwithaveryveryverylongemail\
+ whichwillprobablyvoverflowtheemailbuffer@gmail.com",
+ 12345);
+
+ TEST_PERSON_FAIL(
+ "author Vicent Marti <tanoku@gmail.com> 12345 \n",
+ "author ");
+
+ TEST_PERSON_FAIL(
+ "author Vicent Marti <tanoku@gmail.com> 12345 \n",
+ "committer ");
+
+ TEST_PERSON_FAIL(
+ "author Vicent Marti 12345 \n",
+ "author ");
+
+ TEST_PERSON_FAIL(
+ "author Vicent Marti <broken@email 12345 \n",
+ "author ");
+
+ TEST_PERSON_FAIL(
+ "author Vicent Marti <tanoku@gmail.com> notime \n",
+ "author ");
+
+ TEST_PERSON_FAIL(
+ "author Vicent Marti <tanoku@gmail.com>\n",
+ "author ");
+
+ TEST_PERSON_FAIL(
+ "author ",
+ "author ");
+
+#undef TEST_PERSON_PASS
+#undef TESt_PERSON_FAIL
+
+END_TEST
+
BEGIN_TEST(parse_buffer_test)
- const int broken_commit_count = sizeof(test_commits_broken) / sizeof(*test_commits_broken);
- const int working_commit_count = sizeof(test_commits_working) / sizeof(*test_commits_working);
- int i;
+ const int broken_commit_count = sizeof(test_commits_broken) / sizeof(*test_commits_broken);
+ const int working_commit_count = sizeof(test_commits_working) / sizeof(*test_commits_working);
+
+ const unsigned int default_flags = 0xFF; /* parse everything */
+
+ int i;
- git_revpool *pool = gitrp_alloc(NULL);
+ git_revpool *pool = gitrp_alloc(NULL);
- for (i = 0; i < broken_commit_count; ++i) {
- git_commit commit;
- memset(&commit, 0x0, sizeof(git_commit));
- commit.object.pool = pool;
+ for (i = 0; i < broken_commit_count; ++i) {
+ git_commit *commit;
+ commit = git__malloc(sizeof(git_commit));
+ memset(commit, 0x0, sizeof(git_commit));
+ commit->object.pool = pool;
- must_fail(git_commit__parse_buffer(
- &commit,
- test_commits_broken[i],
- strlen(test_commits_broken[i]))
- );
+ must_fail(git_commit__parse_buffer(
+ commit,
+ test_commits_broken[i],
+ strlen(test_commits_broken[i]),
+ default_flags)
+ );
- git_commit_list_clear(&commit.parents, 0);
- }
+ git_commit__free(commit);
+ }
- for (i = 0; i < working_commit_count; ++i) {
- git_commit commit;
- memset(&commit, 0x0, sizeof(git_commit));
- commit.object.pool = pool;
+ for (i = 0; i < working_commit_count; ++i) {
+ git_commit *commit;
+ commit = git__malloc(sizeof(git_commit));
+ memset(commit, 0x0, sizeof(git_commit));
+ commit->object.pool = pool;
- must_pass(git_commit__parse_buffer(
- &commit,
- test_commits_working[i],
- strlen(test_commits_working[i]))
- );
+ must_pass(git_commit__parse_buffer(
+ commit,
+ test_commits_working[i],
+ strlen(test_commits_working[i]),
+ default_flags)
+ );
- git_commit_list_clear(&commit.parents, 0);
- }
+ git_commit__free(commit);
+ }
- gitrp_free(pool);
+ gitrp_free(pool);
END_TEST
diff --git a/tests/t0402-details.c b/tests/t0402-details.c
new file mode 100644
index 0000000..15c883b
--- /dev/null
+++ b/tests/t0402-details.c
@@ -0,0 +1,61 @@
+#include "test_lib.h"
+#include "test_helpers.h"
+#include "commit.h"
+
+#include <git/odb.h>
+#include <git/commit.h>
+#include <git/revwalk.h>
+
+static const char *odb_dir = "../t0501-objects";
+static const char *commit_ids[] = {
+ "a4a7dce85cf63874e984719f4fdd239f5145052f", /* 0 */
+ "9fd738e8f7967c078dceed8190330fc8648ee56a", /* 1 */
+ "4a202b346bb0fb0db7eff3cffeb3c70babbd2045", /* 2 */
+ "c47800c7266a2be04c571c04d5a6614691ea99bd", /* 3 */
+ "8496071c1b46c854b31185ea97743be6a8774479", /* 4 */
+ "5b5b025afb0b4c913b4c338a42934a3863bf3644", /* 5 */
+};
+
+BEGIN_TEST(query_details_test)
+ const size_t commit_count = sizeof(commit_ids) / sizeof(const char *);
+
+ unsigned int i;
+ git_odb *db;
+ git_revpool *pool;
+
+ must_pass(git_odb_open(&db, odb_dir));
+
+ pool = gitrp_alloc(db);
+ must_be_true(pool != NULL);
+
+ for (i = 0; i < commit_count; ++i) {
+ git_oid id;
+ git_commit *commit;
+
+ const git_commit_person *author, *committer;
+ const char *message, *message_short;
+ time_t commit_time;
+
+ git_oid_mkstr(&id, commit_ids[i]);
+
+ commit = git_commit_parse(pool, &id);
+ must_be_true(commit != NULL);
+
+ message = git_commit_message(commit);
+ message_short = git_commit_message_short(commit);
+ author = git_commit_author(commit);
+ committer = git_commit_committer(commit);
+ commit_time = git_commit_time(commit);
+
+ must_be_true(strcmp(author->name, "Scott Chacon") == 0);
+ must_be_true(strcmp(author->email, "schacon@gmail.com") == 0);
+ must_be_true(strcmp(committer->name, "Scott Chacon") == 0);
+ must_be_true(strcmp(committer->email, "schacon@gmail.com") == 0);
+ must_be_true(strchr(message, '\n') != NULL);
+ must_be_true(strchr(message_short, '\n') == NULL);
+ must_be_true(commit_time > 0);
+ }
+
+ gitrp_free(pool);
+ git_odb_close(db);
+END_TEST