builtin-fast-export.con commit Merge branch 'rj/maint-1.6.0-svn-parse-fix' into maint (54e0e6e)
   1/*
   2 * "git fast-export" builtin command
   3 *
   4 * Copyright (C) 2007 Johannes E. Schindelin
   5 */
   6#include "builtin.h"
   7#include "cache.h"
   8#include "commit.h"
   9#include "object.h"
  10#include "tag.h"
  11#include "diff.h"
  12#include "diffcore.h"
  13#include "log-tree.h"
  14#include "revision.h"
  15#include "decorate.h"
  16#include "string-list.h"
  17#include "utf8.h"
  18#include "parse-options.h"
  19
  20static const char *fast_export_usage[] = {
  21        "git fast-export [rev-list-opts]",
  22        NULL
  23};
  24
  25static int progress;
  26static enum { VERBATIM, WARN, STRIP, ABORT } signed_tag_mode = ABORT;
  27static int fake_missing_tagger;
  28
  29static int parse_opt_signed_tag_mode(const struct option *opt,
  30                                     const char *arg, int unset)
  31{
  32        if (unset || !strcmp(arg, "abort"))
  33                signed_tag_mode = ABORT;
  34        else if (!strcmp(arg, "verbatim") || !strcmp(arg, "ignore"))
  35                signed_tag_mode = VERBATIM;
  36        else if (!strcmp(arg, "warn"))
  37                signed_tag_mode = WARN;
  38        else if (!strcmp(arg, "strip"))
  39                signed_tag_mode = STRIP;
  40        else
  41                return error("Unknown signed-tag mode: %s", arg);
  42        return 0;
  43}
  44
  45static struct decoration idnums;
  46static uint32_t last_idnum;
  47
  48static int has_unshown_parent(struct commit *commit)
  49{
  50        struct commit_list *parent;
  51
  52        for (parent = commit->parents; parent; parent = parent->next)
  53                if (!(parent->item->object.flags & SHOWN) &&
  54                    !(parent->item->object.flags & UNINTERESTING))
  55                        return 1;
  56        return 0;
  57}
  58
  59/* Since intptr_t is C99, we do not use it here */
  60static inline uint32_t *mark_to_ptr(uint32_t mark)
  61{
  62        return ((uint32_t *)NULL) + mark;
  63}
  64
  65static inline uint32_t ptr_to_mark(void * mark)
  66{
  67        return (uint32_t *)mark - (uint32_t *)NULL;
  68}
  69
  70static inline void mark_object(struct object *object, uint32_t mark)
  71{
  72        add_decoration(&idnums, object, mark_to_ptr(mark));
  73}
  74
  75static inline void mark_next_object(struct object *object)
  76{
  77        mark_object(object, ++last_idnum);
  78}
  79
  80static int get_object_mark(struct object *object)
  81{
  82        void *decoration = lookup_decoration(&idnums, object);
  83        if (!decoration)
  84                return 0;
  85        return ptr_to_mark(decoration);
  86}
  87
  88static void show_progress(void)
  89{
  90        static int counter = 0;
  91        if (!progress)
  92                return;
  93        if ((++counter % progress) == 0)
  94                printf("progress %d objects\n", counter);
  95}
  96
  97static void handle_object(const unsigned char *sha1)
  98{
  99        unsigned long size;
 100        enum object_type type;
 101        char *buf;
 102        struct object *object;
 103
 104        if (is_null_sha1(sha1))
 105                return;
 106
 107        object = parse_object(sha1);
 108        if (!object)
 109                die ("Could not read blob %s", sha1_to_hex(sha1));
 110
 111        if (object->flags & SHOWN)
 112                return;
 113
 114        buf = read_sha1_file(sha1, &type, &size);
 115        if (!buf)
 116                die ("Could not read blob %s", sha1_to_hex(sha1));
 117
 118        mark_next_object(object);
 119
 120        printf("blob\nmark :%"PRIu32"\ndata %lu\n", last_idnum, size);
 121        if (size && fwrite(buf, size, 1, stdout) != 1)
 122                die ("Could not write blob %s", sha1_to_hex(sha1));
 123        printf("\n");
 124
 125        show_progress();
 126
 127        object->flags |= SHOWN;
 128        free(buf);
 129}
 130
 131static void show_filemodify(struct diff_queue_struct *q,
 132                            struct diff_options *options, void *data)
 133{
 134        int i;
 135        for (i = 0; i < q->nr; i++) {
 136                struct diff_filespec *ospec = q->queue[i]->one;
 137                struct diff_filespec *spec = q->queue[i]->two;
 138
 139                switch (q->queue[i]->status) {
 140                case DIFF_STATUS_DELETED:
 141                        printf("D %s\n", spec->path);
 142                        break;
 143
 144                case DIFF_STATUS_COPIED:
 145                case DIFF_STATUS_RENAMED:
 146                        printf("%c \"%s\" \"%s\"\n", q->queue[i]->status,
 147                               ospec->path, spec->path);
 148
 149                        if (!hashcmp(ospec->sha1, spec->sha1) &&
 150                            ospec->mode == spec->mode)
 151                                break;
 152                        /* fallthrough */
 153
 154                case DIFF_STATUS_TYPE_CHANGED:
 155                case DIFF_STATUS_MODIFIED:
 156                case DIFF_STATUS_ADDED:
 157                        /*
 158                         * Links refer to objects in another repositories;
 159                         * output the SHA-1 verbatim.
 160                         */
 161                        if (S_ISGITLINK(spec->mode))
 162                                printf("M %06o %s %s\n", spec->mode,
 163                                       sha1_to_hex(spec->sha1), spec->path);
 164                        else {
 165                                struct object *object = lookup_object(spec->sha1);
 166                                printf("M %06o :%d %s\n", spec->mode,
 167                                       get_object_mark(object), spec->path);
 168                        }
 169                        break;
 170
 171                default:
 172                        die("Unexpected comparison status '%c' for %s, %s",
 173                                q->queue[i]->status,
 174                                ospec->path ? ospec->path : "none",
 175                                spec->path ? spec->path : "none");
 176                }
 177        }
 178}
 179
 180static const char *find_encoding(const char *begin, const char *end)
 181{
 182        const char *needle = "\nencoding ";
 183        char *bol, *eol;
 184
 185        bol = memmem(begin, end ? end - begin : strlen(begin),
 186                     needle, strlen(needle));
 187        if (!bol)
 188                return git_commit_encoding;
 189        bol += strlen(needle);
 190        eol = strchrnul(bol, '\n');
 191        *eol = '\0';
 192        return bol;
 193}
 194
 195static void handle_commit(struct commit *commit, struct rev_info *rev)
 196{
 197        int saved_output_format = rev->diffopt.output_format;
 198        const char *author, *author_end, *committer, *committer_end;
 199        const char *encoding, *message;
 200        char *reencoded = NULL;
 201        struct commit_list *p;
 202        int i;
 203
 204        rev->diffopt.output_format = DIFF_FORMAT_CALLBACK;
 205
 206        parse_commit(commit);
 207        author = strstr(commit->buffer, "\nauthor ");
 208        if (!author)
 209                die ("Could not find author in commit %s",
 210                     sha1_to_hex(commit->object.sha1));
 211        author++;
 212        author_end = strchrnul(author, '\n');
 213        committer = strstr(author_end, "\ncommitter ");
 214        if (!committer)
 215                die ("Could not find committer in commit %s",
 216                     sha1_to_hex(commit->object.sha1));
 217        committer++;
 218        committer_end = strchrnul(committer, '\n');
 219        message = strstr(committer_end, "\n\n");
 220        encoding = find_encoding(committer_end, message);
 221        if (message)
 222                message += 2;
 223
 224        if (commit->parents) {
 225                parse_commit(commit->parents->item);
 226                diff_tree_sha1(commit->parents->item->tree->object.sha1,
 227                               commit->tree->object.sha1, "", &rev->diffopt);
 228        }
 229        else
 230                diff_root_tree_sha1(commit->tree->object.sha1,
 231                                    "", &rev->diffopt);
 232
 233        /* Export the referenced blobs, and remember the marks. */
 234        for (i = 0; i < diff_queued_diff.nr; i++)
 235                if (!S_ISGITLINK(diff_queued_diff.queue[i]->two->mode))
 236                        handle_object(diff_queued_diff.queue[i]->two->sha1);
 237
 238        mark_next_object(&commit->object);
 239        if (!is_encoding_utf8(encoding))
 240                reencoded = reencode_string(message, "UTF-8", encoding);
 241        if (!commit->parents)
 242                printf("reset %s\n", (const char*)commit->util);
 243        printf("commit %s\nmark :%"PRIu32"\n%.*s\n%.*s\ndata %u\n%s",
 244               (const char *)commit->util, last_idnum,
 245               (int)(author_end - author), author,
 246               (int)(committer_end - committer), committer,
 247               (unsigned)(reencoded
 248                          ? strlen(reencoded) : message
 249                          ? strlen(message) : 0),
 250               reencoded ? reencoded : message ? message : "");
 251        free(reencoded);
 252
 253        for (i = 0, p = commit->parents; p; p = p->next) {
 254                int mark = get_object_mark(&p->item->object);
 255                if (!mark)
 256                        continue;
 257                if (i == 0)
 258                        printf("from :%d\n", mark);
 259                else
 260                        printf("merge :%d\n", mark);
 261                i++;
 262        }
 263
 264        log_tree_diff_flush(rev);
 265        rev->diffopt.output_format = saved_output_format;
 266
 267        printf("\n");
 268
 269        show_progress();
 270}
 271
 272static void handle_tail(struct object_array *commits, struct rev_info *revs)
 273{
 274        struct commit *commit;
 275        while (commits->nr) {
 276                commit = (struct commit *)commits->objects[commits->nr - 1].item;
 277                if (has_unshown_parent(commit))
 278                        return;
 279                handle_commit(commit, revs);
 280                commits->nr--;
 281        }
 282}
 283
 284static void handle_tag(const char *name, struct tag *tag)
 285{
 286        unsigned long size;
 287        enum object_type type;
 288        char *buf;
 289        const char *tagger, *tagger_end, *message;
 290        size_t message_size = 0;
 291
 292        buf = read_sha1_file(tag->object.sha1, &type, &size);
 293        if (!buf)
 294                die ("Could not read tag %s", sha1_to_hex(tag->object.sha1));
 295        message = memmem(buf, size, "\n\n", 2);
 296        if (message) {
 297                message += 2;
 298                message_size = strlen(message);
 299        }
 300        tagger = memmem(buf, message ? message - buf : size, "\ntagger ", 8);
 301        if (!tagger) {
 302                if (fake_missing_tagger)
 303                        tagger = "tagger Unspecified Tagger "
 304                                "<unspecified-tagger> 0 +0000";
 305                else
 306                        tagger = "";
 307                tagger_end = tagger + strlen(tagger);
 308        } else {
 309                tagger++;
 310                tagger_end = strchrnul(tagger, '\n');
 311        }
 312
 313        /* handle signed tags */
 314        if (message) {
 315                const char *signature = strstr(message,
 316                                               "\n-----BEGIN PGP SIGNATURE-----\n");
 317                if (signature)
 318                        switch(signed_tag_mode) {
 319                        case ABORT:
 320                                die ("Encountered signed tag %s; use "
 321                                     "--signed-tag=<mode> to handle it.",
 322                                     sha1_to_hex(tag->object.sha1));
 323                        case WARN:
 324                                warning ("Exporting signed tag %s",
 325                                         sha1_to_hex(tag->object.sha1));
 326                                /* fallthru */
 327                        case VERBATIM:
 328                                break;
 329                        case STRIP:
 330                                message_size = signature + 1 - message;
 331                                break;
 332                        }
 333        }
 334
 335        if (!prefixcmp(name, "refs/tags/"))
 336                name += 10;
 337        printf("tag %s\nfrom :%d\n%.*s%sdata %d\n%.*s\n",
 338               name, get_object_mark(tag->tagged),
 339               (int)(tagger_end - tagger), tagger,
 340               tagger == tagger_end ? "" : "\n",
 341               (int)message_size, (int)message_size, message ? message : "");
 342}
 343
 344static void get_tags_and_duplicates(struct object_array *pending,
 345                                    struct string_list *extra_refs)
 346{
 347        struct tag *tag;
 348        int i;
 349
 350        for (i = 0; i < pending->nr; i++) {
 351                struct object_array_entry *e = pending->objects + i;
 352                unsigned char sha1[20];
 353                struct commit *commit = commit;
 354                char *full_name;
 355
 356                if (dwim_ref(e->name, strlen(e->name), sha1, &full_name) != 1)
 357                        continue;
 358
 359                switch (e->item->type) {
 360                case OBJ_COMMIT:
 361                        commit = (struct commit *)e->item;
 362                        break;
 363                case OBJ_TAG:
 364                        tag = (struct tag *)e->item;
 365
 366                        /* handle nested tags */
 367                        while (tag && tag->object.type == OBJ_TAG) {
 368                                parse_object(tag->object.sha1);
 369                                string_list_append(full_name, extra_refs)->util = tag;
 370                                tag = (struct tag *)tag->tagged;
 371                        }
 372                        if (!tag)
 373                                die ("Tag %s points nowhere?", e->name);
 374                        switch(tag->object.type) {
 375                        case OBJ_COMMIT:
 376                                commit = (struct commit *)tag;
 377                                break;
 378                        case OBJ_BLOB:
 379                                handle_object(tag->object.sha1);
 380                                continue;
 381                        default: /* OBJ_TAG (nested tags) is already handled */
 382                                warning("Tag points to object of unexpected type %s, skipping.",
 383                                        typename(tag->object.type));
 384                                continue;
 385                        }
 386                        break;
 387                default:
 388                        warning("%s: Unexpected object of type %s, skipping.",
 389                                e->name,
 390                                typename(e->item->type));
 391                        continue;
 392                }
 393                if (commit->util)
 394                        /* more than one name for the same object */
 395                        string_list_append(full_name, extra_refs)->util = commit;
 396                else
 397                        commit->util = full_name;
 398        }
 399}
 400
 401static void handle_tags_and_duplicates(struct string_list *extra_refs)
 402{
 403        struct commit *commit;
 404        int i;
 405
 406        for (i = extra_refs->nr - 1; i >= 0; i--) {
 407                const char *name = extra_refs->items[i].string;
 408                struct object *object = extra_refs->items[i].util;
 409                switch (object->type) {
 410                case OBJ_TAG:
 411                        handle_tag(name, (struct tag *)object);
 412                        break;
 413                case OBJ_COMMIT:
 414                        /* create refs pointing to already seen commits */
 415                        commit = (struct commit *)object;
 416                        printf("reset %s\nfrom :%d\n\n", name,
 417                               get_object_mark(&commit->object));
 418                        show_progress();
 419                        break;
 420                }
 421        }
 422}
 423
 424static void export_marks(char *file)
 425{
 426        unsigned int i;
 427        uint32_t mark;
 428        struct object_decoration *deco = idnums.hash;
 429        FILE *f;
 430
 431        f = fopen(file, "w");
 432        if (!f)
 433                error("Unable to open marks file %s for writing", file);
 434
 435        for (i = 0; i < idnums.size; i++) {
 436                if (deco->base && deco->base->type == 1) {
 437                        mark = ptr_to_mark(deco->decoration);
 438                        fprintf(f, ":%"PRIu32" %s\n", mark,
 439                                sha1_to_hex(deco->base->sha1));
 440                }
 441                deco++;
 442        }
 443
 444        if (ferror(f) || fclose(f))
 445                error("Unable to write marks file %s.", file);
 446}
 447
 448static void import_marks(char *input_file)
 449{
 450        char line[512];
 451        FILE *f = fopen(input_file, "r");
 452        if (!f)
 453                die("cannot read %s: %s", input_file, strerror(errno));
 454
 455        while (fgets(line, sizeof(line), f)) {
 456                uint32_t mark;
 457                char *line_end, *mark_end;
 458                unsigned char sha1[20];
 459                struct object *object;
 460
 461                line_end = strchr(line, '\n');
 462                if (line[0] != ':' || !line_end)
 463                        die("corrupt mark line: %s", line);
 464                *line_end = '\0';
 465
 466                mark = strtoumax(line + 1, &mark_end, 10);
 467                if (!mark || mark_end == line + 1
 468                        || *mark_end != ' ' || get_sha1(mark_end + 1, sha1))
 469                        die("corrupt mark line: %s", line);
 470
 471                object = parse_object(sha1);
 472                if (!object)
 473                        die ("Could not read blob %s", sha1_to_hex(sha1));
 474
 475                if (object->flags & SHOWN)
 476                        error("Object %s already has a mark", sha1);
 477
 478                mark_object(object, mark);
 479                if (last_idnum < mark)
 480                        last_idnum = mark;
 481
 482                object->flags |= SHOWN;
 483        }
 484        fclose(f);
 485}
 486
 487int cmd_fast_export(int argc, const char **argv, const char *prefix)
 488{
 489        struct rev_info revs;
 490        struct object_array commits = { 0, 0, NULL };
 491        struct string_list extra_refs = { NULL, 0, 0, 0 };
 492        struct commit *commit;
 493        char *export_filename = NULL, *import_filename = NULL;
 494        struct option options[] = {
 495                OPT_INTEGER(0, "progress", &progress,
 496                            "show progress after <n> objects"),
 497                OPT_CALLBACK(0, "signed-tags", &signed_tag_mode, "mode",
 498                             "select handling of signed tags",
 499                             parse_opt_signed_tag_mode),
 500                OPT_STRING(0, "export-marks", &export_filename, "FILE",
 501                             "Dump marks to this file"),
 502                OPT_STRING(0, "import-marks", &import_filename, "FILE",
 503                             "Import marks from this file"),
 504                OPT_BOOLEAN(0, "fake-missing-tagger", &fake_missing_tagger,
 505                             "Fake a tagger when tags lack one"),
 506                OPT_END()
 507        };
 508
 509        if (argc == 1)
 510                usage_with_options (fast_export_usage, options);
 511
 512        /* we handle encodings */
 513        git_config(git_default_config, NULL);
 514
 515        init_revisions(&revs, prefix);
 516        argc = setup_revisions(argc, argv, &revs, NULL);
 517        argc = parse_options(argc, argv, options, fast_export_usage, 0);
 518        if (argc > 1)
 519                usage_with_options (fast_export_usage, options);
 520
 521        if (import_filename)
 522                import_marks(import_filename);
 523
 524        get_tags_and_duplicates(&revs.pending, &extra_refs);
 525
 526        revs.topo_order = 1;
 527        if (prepare_revision_walk(&revs))
 528                die("revision walk setup failed");
 529        revs.diffopt.format_callback = show_filemodify;
 530        DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
 531        while ((commit = get_revision(&revs))) {
 532                if (has_unshown_parent(commit)) {
 533                        struct commit_list *parent = commit->parents;
 534                        add_object_array(&commit->object, NULL, &commits);
 535                        for (; parent; parent = parent->next)
 536                                if (!parent->item->util)
 537                                        parent->item->util = commit->util;
 538                }
 539                else {
 540                        handle_commit(commit, &revs);
 541                        handle_tail(&commits, &revs);
 542                }
 543        }
 544
 545        handle_tags_and_duplicates(&extra_refs);
 546
 547        if (export_filename)
 548                export_marks(export_filename);
 549
 550        return 0;
 551}