builtin-fast-export.con commit Merge branch 'jc/maint-combine-diff-pre-context' into maint (4ace4fc)
   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 "path-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;
  27
  28static int parse_opt_signed_tag_mode(const struct option *opt,
  29                                     const char *arg, int unset)
  30{
  31        if (unset || !strcmp(arg, "abort"))
  32                signed_tag_mode = ABORT;
  33        else if (!strcmp(arg, "verbatim") || !strcmp(arg, "ignore"))
  34                signed_tag_mode = VERBATIM;
  35        else if (!strcmp(arg, "warn"))
  36                signed_tag_mode = WARN;
  37        else if (!strcmp(arg, "strip"))
  38                signed_tag_mode = STRIP;
  39        else
  40                return error("Unknown signed-tag mode: %s", arg);
  41        return 0;
  42}
  43
  44static struct decoration idnums;
  45static uint32_t last_idnum;
  46
  47static int has_unshown_parent(struct commit *commit)
  48{
  49        struct commit_list *parent;
  50
  51        for (parent = commit->parents; parent; parent = parent->next)
  52                if (!(parent->item->object.flags & SHOWN) &&
  53                    !(parent->item->object.flags & UNINTERESTING))
  54                        return 1;
  55        return 0;
  56}
  57
  58/* Since intptr_t is C99, we do not use it here */
  59static void mark_object(struct object *object)
  60{
  61        last_idnum++;
  62        add_decoration(&idnums, object, ((uint32_t *)NULL) + last_idnum);
  63}
  64
  65static int get_object_mark(struct object *object)
  66{
  67        void *decoration = lookup_decoration(&idnums, object);
  68        if (!decoration)
  69                return 0;
  70        return (uint32_t *)decoration - (uint32_t *)NULL;
  71}
  72
  73static void show_progress(void)
  74{
  75        static int counter = 0;
  76        if (!progress)
  77                return;
  78        if ((++counter % progress) == 0)
  79                printf("progress %d objects\n", counter);
  80}
  81
  82static void handle_object(const unsigned char *sha1)
  83{
  84        unsigned long size;
  85        enum object_type type;
  86        char *buf;
  87        struct object *object;
  88
  89        if (is_null_sha1(sha1))
  90                return;
  91
  92        object = parse_object(sha1);
  93        if (!object)
  94                die ("Could not read blob %s", sha1_to_hex(sha1));
  95
  96        if (object->flags & SHOWN)
  97                return;
  98
  99        buf = read_sha1_file(sha1, &type, &size);
 100        if (!buf)
 101                die ("Could not read blob %s", sha1_to_hex(sha1));
 102
 103        mark_object(object);
 104
 105        printf("blob\nmark :%d\ndata %lu\n", last_idnum, size);
 106        if (size && fwrite(buf, size, 1, stdout) != 1)
 107                die ("Could not write blob %s", sha1_to_hex(sha1));
 108        printf("\n");
 109
 110        show_progress();
 111
 112        object->flags |= SHOWN;
 113        free(buf);
 114}
 115
 116static void show_filemodify(struct diff_queue_struct *q,
 117                            struct diff_options *options, void *data)
 118{
 119        int i;
 120        for (i = 0; i < q->nr; i++) {
 121                struct diff_filespec *spec = q->queue[i]->two;
 122                if (is_null_sha1(spec->sha1))
 123                        printf("D %s\n", spec->path);
 124                else {
 125                        struct object *object = lookup_object(spec->sha1);
 126                        printf("M %06o :%d %s\n", spec->mode,
 127                               get_object_mark(object), spec->path);
 128                }
 129        }
 130}
 131
 132static const char *find_encoding(const char *begin, const char *end)
 133{
 134        const char *needle = "\nencoding ";
 135        char *bol, *eol;
 136
 137        bol = memmem(begin, end ? end - begin : strlen(begin),
 138                     needle, strlen(needle));
 139        if (!bol)
 140                return git_commit_encoding;
 141        bol += strlen(needle);
 142        eol = strchrnul(bol, '\n');
 143        *eol = '\0';
 144        return bol;
 145}
 146
 147static void handle_commit(struct commit *commit, struct rev_info *rev)
 148{
 149        int saved_output_format = rev->diffopt.output_format;
 150        const char *author, *author_end, *committer, *committer_end;
 151        const char *encoding, *message;
 152        char *reencoded = NULL;
 153        struct commit_list *p;
 154        int i;
 155
 156        rev->diffopt.output_format = DIFF_FORMAT_CALLBACK;
 157
 158        parse_commit(commit);
 159        author = strstr(commit->buffer, "\nauthor ");
 160        if (!author)
 161                die ("Could not find author in commit %s",
 162                     sha1_to_hex(commit->object.sha1));
 163        author++;
 164        author_end = strchrnul(author, '\n');
 165        committer = strstr(author_end, "\ncommitter ");
 166        if (!committer)
 167                die ("Could not find committer in commit %s",
 168                     sha1_to_hex(commit->object.sha1));
 169        committer++;
 170        committer_end = strchrnul(committer, '\n');
 171        message = strstr(committer_end, "\n\n");
 172        encoding = find_encoding(committer_end, message);
 173        if (message)
 174                message += 2;
 175
 176        if (commit->parents) {
 177                parse_commit(commit->parents->item);
 178                diff_tree_sha1(commit->parents->item->tree->object.sha1,
 179                               commit->tree->object.sha1, "", &rev->diffopt);
 180        }
 181        else
 182                diff_root_tree_sha1(commit->tree->object.sha1,
 183                                    "", &rev->diffopt);
 184
 185        for (i = 0; i < diff_queued_diff.nr; i++)
 186                handle_object(diff_queued_diff.queue[i]->two->sha1);
 187
 188        mark_object(&commit->object);
 189        if (!is_encoding_utf8(encoding))
 190                reencoded = reencode_string(message, "UTF-8", encoding);
 191        if (!commit->parents)
 192                printf("reset %s\n", (const char*)commit->util);
 193        printf("commit %s\nmark :%d\n%.*s\n%.*s\ndata %u\n%s",
 194               (const char *)commit->util, last_idnum,
 195               (int)(author_end - author), author,
 196               (int)(committer_end - committer), committer,
 197               (unsigned)(reencoded
 198                          ? strlen(reencoded) : message
 199                          ? strlen(message) : 0),
 200               reencoded ? reencoded : message ? message : "");
 201        free(reencoded);
 202
 203        for (i = 0, p = commit->parents; p; p = p->next) {
 204                int mark = get_object_mark(&p->item->object);
 205                if (!mark)
 206                        continue;
 207                if (i == 0)
 208                        printf("from :%d\n", mark);
 209                else
 210                        printf("merge :%d\n", mark);
 211                i++;
 212        }
 213
 214        log_tree_diff_flush(rev);
 215        rev->diffopt.output_format = saved_output_format;
 216
 217        printf("\n");
 218
 219        show_progress();
 220}
 221
 222static void handle_tail(struct object_array *commits, struct rev_info *revs)
 223{
 224        struct commit *commit;
 225        while (commits->nr) {
 226                commit = (struct commit *)commits->objects[commits->nr - 1].item;
 227                if (has_unshown_parent(commit))
 228                        return;
 229                handle_commit(commit, revs);
 230                commits->nr--;
 231        }
 232}
 233
 234static void handle_tag(const char *name, struct tag *tag)
 235{
 236        unsigned long size;
 237        enum object_type type;
 238        char *buf;
 239        const char *tagger, *tagger_end, *message;
 240        size_t message_size = 0;
 241
 242        buf = read_sha1_file(tag->object.sha1, &type, &size);
 243        if (!buf)
 244                die ("Could not read tag %s", sha1_to_hex(tag->object.sha1));
 245        message = memmem(buf, size, "\n\n", 2);
 246        if (message) {
 247                message += 2;
 248                message_size = strlen(message);
 249        }
 250        tagger = memmem(buf, message ? message - buf : size, "\ntagger ", 8);
 251        if (!tagger)
 252                die ("No tagger for tag %s", sha1_to_hex(tag->object.sha1));
 253        tagger++;
 254        tagger_end = strchrnul(tagger, '\n');
 255
 256        /* handle signed tags */
 257        if (message) {
 258                const char *signature = strstr(message,
 259                                               "\n-----BEGIN PGP SIGNATURE-----\n");
 260                if (signature)
 261                        switch(signed_tag_mode) {
 262                        case ABORT:
 263                                die ("Encountered signed tag %s; use "
 264                                     "--signed-tag=<mode> to handle it.",
 265                                     sha1_to_hex(tag->object.sha1));
 266                        case WARN:
 267                                warning ("Exporting signed tag %s",
 268                                         sha1_to_hex(tag->object.sha1));
 269                                /* fallthru */
 270                        case VERBATIM:
 271                                break;
 272                        case STRIP:
 273                                message_size = signature + 1 - message;
 274                                break;
 275                        }
 276        }
 277
 278        if (!prefixcmp(name, "refs/tags/"))
 279                name += 10;
 280        printf("tag %s\nfrom :%d\n%.*s\ndata %d\n%.*s\n",
 281               name, get_object_mark(tag->tagged),
 282               (int)(tagger_end - tagger), tagger,
 283               (int)message_size, (int)message_size, message ? message : "");
 284}
 285
 286static void get_tags_and_duplicates(struct object_array *pending,
 287                                    struct path_list *extra_refs)
 288{
 289        struct tag *tag;
 290        int i;
 291
 292        for (i = 0; i < pending->nr; i++) {
 293                struct object_array_entry *e = pending->objects + i;
 294                unsigned char sha1[20];
 295                struct commit *commit = commit;
 296                char *full_name;
 297
 298                if (dwim_ref(e->name, strlen(e->name), sha1, &full_name) != 1)
 299                        continue;
 300
 301                switch (e->item->type) {
 302                case OBJ_COMMIT:
 303                        commit = (struct commit *)e->item;
 304                        break;
 305                case OBJ_TAG:
 306                        tag = (struct tag *)e->item;
 307                        while (tag && tag->object.type == OBJ_TAG) {
 308                                path_list_insert(full_name, extra_refs)->util = tag;
 309                                tag = (struct tag *)tag->tagged;
 310                        }
 311                        if (!tag)
 312                                die ("Tag %s points nowhere?", e->name);
 313                        switch(tag->object.type) {
 314                        case OBJ_COMMIT:
 315                                commit = (struct commit *)tag;
 316                                break;
 317                        case OBJ_BLOB:
 318                                handle_object(tag->object.sha1);
 319                                continue;
 320                        }
 321                        break;
 322                default:
 323                        die ("Unexpected object of type %s",
 324                             typename(e->item->type));
 325                }
 326                if (commit->util)
 327                        /* more than one name for the same object */
 328                        path_list_insert(full_name, extra_refs)->util = commit;
 329                else
 330                        commit->util = full_name;
 331        }
 332}
 333
 334static void handle_tags_and_duplicates(struct path_list *extra_refs)
 335{
 336        struct commit *commit;
 337        int i;
 338
 339        for (i = extra_refs->nr - 1; i >= 0; i--) {
 340                const char *name = extra_refs->items[i].path;
 341                struct object *object = extra_refs->items[i].util;
 342                switch (object->type) {
 343                case OBJ_TAG:
 344                        handle_tag(name, (struct tag *)object);
 345                        break;
 346                case OBJ_COMMIT:
 347                        /* create refs pointing to already seen commits */
 348                        commit = (struct commit *)object;
 349                        printf("reset %s\nfrom :%d\n\n", name,
 350                               get_object_mark(&commit->object));
 351                        show_progress();
 352                        break;
 353                }
 354        }
 355}
 356
 357int cmd_fast_export(int argc, const char **argv, const char *prefix)
 358{
 359        struct rev_info revs;
 360        struct object_array commits = { 0, 0, NULL };
 361        struct path_list extra_refs = { NULL, 0, 0, 0 };
 362        struct commit *commit;
 363        struct option options[] = {
 364                OPT_INTEGER(0, "progress", &progress,
 365                            "show progress after <n> objects"),
 366                OPT_CALLBACK(0, "signed-tags", &signed_tag_mode, "mode",
 367                             "select handling of signed tags",
 368                             parse_opt_signed_tag_mode),
 369                OPT_END()
 370        };
 371
 372        /* we handle encodings */
 373        git_config(git_default_config, NULL);
 374
 375        init_revisions(&revs, prefix);
 376        argc = setup_revisions(argc, argv, &revs, NULL);
 377        argc = parse_options(argc, argv, options, fast_export_usage, 0);
 378        if (argc > 1)
 379                usage_with_options (fast_export_usage, options);
 380
 381        get_tags_and_duplicates(&revs.pending, &extra_refs);
 382
 383        if (prepare_revision_walk(&revs))
 384                die("revision walk setup failed");
 385        revs.diffopt.format_callback = show_filemodify;
 386        DIFF_OPT_SET(&revs.diffopt, RECURSIVE);
 387        while ((commit = get_revision(&revs))) {
 388                if (has_unshown_parent(commit)) {
 389                        struct commit_list *parent = commit->parents;
 390                        add_object_array(&commit->object, NULL, &commits);
 391                        for (; parent; parent = parent->next)
 392                                if (!parent->item->util)
 393                                        parent->item->util = commit->util;
 394                }
 395                else {
 396                        handle_commit(commit, &revs);
 397                        handle_tail(&commits, &revs);
 398                }
 399        }
 400
 401        handle_tags_and_duplicates(&extra_refs);
 402
 403        return 0;
 404}