37b33c9d70c86f28f71d4c257c0c52d8b0ba42ba
   1#include "builtin.h"
   2#include "lockfile.h"
   3#include "commit.h"
   4#include "refs.h"
   5#include "dir.h"
   6#include "tree-walk.h"
   7#include "diff.h"
   8#include "revision.h"
   9#include "reachable.h"
  10
  11/*
  12 * reflog expire
  13 */
  14
  15static const char reflog_expire_usage[] =
  16"git reflog expire [--verbose] [--dry-run] [--stale-fix] [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>...";
  17static const char reflog_delete_usage[] =
  18"git reflog delete [--verbose] [--dry-run] [--rewrite] [--updateref] <refs>...";
  19
  20static unsigned long default_reflog_expire;
  21static unsigned long default_reflog_expire_unreachable;
  22
  23struct cmd_reflog_expire_cb {
  24        struct rev_info revs;
  25        int dry_run;
  26        int stalefix;
  27        int rewrite;
  28        int updateref;
  29        int verbose;
  30        unsigned long expire_total;
  31        unsigned long expire_unreachable;
  32        int recno;
  33};
  34
  35struct expire_reflog_cb {
  36        FILE *newlog;
  37        enum {
  38                UE_NORMAL,
  39                UE_ALWAYS,
  40                UE_HEAD
  41        } unreachable_expire_kind;
  42        struct commit_list *mark_list;
  43        unsigned long mark_limit;
  44        struct cmd_reflog_expire_cb *cmd;
  45        unsigned char last_kept_sha1[20];
  46};
  47
  48struct collected_reflog {
  49        unsigned char sha1[20];
  50        char reflog[FLEX_ARRAY];
  51};
  52struct collect_reflog_cb {
  53        struct collected_reflog **e;
  54        int alloc;
  55        int nr;
  56};
  57
  58#define INCOMPLETE      (1u<<10)
  59#define STUDYING        (1u<<11)
  60#define REACHABLE       (1u<<12)
  61
  62static int tree_is_complete(const unsigned char *sha1)
  63{
  64        struct tree_desc desc;
  65        struct name_entry entry;
  66        int complete;
  67        struct tree *tree;
  68
  69        tree = lookup_tree(sha1);
  70        if (!tree)
  71                return 0;
  72        if (tree->object.flags & SEEN)
  73                return 1;
  74        if (tree->object.flags & INCOMPLETE)
  75                return 0;
  76
  77        if (!tree->buffer) {
  78                enum object_type type;
  79                unsigned long size;
  80                void *data = read_sha1_file(sha1, &type, &size);
  81                if (!data) {
  82                        tree->object.flags |= INCOMPLETE;
  83                        return 0;
  84                }
  85                tree->buffer = data;
  86                tree->size = size;
  87        }
  88        init_tree_desc(&desc, tree->buffer, tree->size);
  89        complete = 1;
  90        while (tree_entry(&desc, &entry)) {
  91                if (!has_sha1_file(entry.sha1) ||
  92                    (S_ISDIR(entry.mode) && !tree_is_complete(entry.sha1))) {
  93                        tree->object.flags |= INCOMPLETE;
  94                        complete = 0;
  95                }
  96        }
  97        free_tree_buffer(tree);
  98
  99        if (complete)
 100                tree->object.flags |= SEEN;
 101        return complete;
 102}
 103
 104static int commit_is_complete(struct commit *commit)
 105{
 106        struct object_array study;
 107        struct object_array found;
 108        int is_incomplete = 0;
 109        int i;
 110
 111        /* early return */
 112        if (commit->object.flags & SEEN)
 113                return 1;
 114        if (commit->object.flags & INCOMPLETE)
 115                return 0;
 116        /*
 117         * Find all commits that are reachable and are not marked as
 118         * SEEN.  Then make sure the trees and blobs contained are
 119         * complete.  After that, mark these commits also as SEEN.
 120         * If some of the objects that are needed to complete this
 121         * commit are missing, mark this commit as INCOMPLETE.
 122         */
 123        memset(&study, 0, sizeof(study));
 124        memset(&found, 0, sizeof(found));
 125        add_object_array(&commit->object, NULL, &study);
 126        add_object_array(&commit->object, NULL, &found);
 127        commit->object.flags |= STUDYING;
 128        while (study.nr) {
 129                struct commit *c;
 130                struct commit_list *parent;
 131
 132                c = (struct commit *)study.objects[--study.nr].item;
 133                if (!c->object.parsed && !parse_object(c->object.sha1))
 134                        c->object.flags |= INCOMPLETE;
 135
 136                if (c->object.flags & INCOMPLETE) {
 137                        is_incomplete = 1;
 138                        break;
 139                }
 140                else if (c->object.flags & SEEN)
 141                        continue;
 142                for (parent = c->parents; parent; parent = parent->next) {
 143                        struct commit *p = parent->item;
 144                        if (p->object.flags & STUDYING)
 145                                continue;
 146                        p->object.flags |= STUDYING;
 147                        add_object_array(&p->object, NULL, &study);
 148                        add_object_array(&p->object, NULL, &found);
 149                }
 150        }
 151        if (!is_incomplete) {
 152                /*
 153                 * make sure all commits in "found" array have all the
 154                 * necessary objects.
 155                 */
 156                for (i = 0; i < found.nr; i++) {
 157                        struct commit *c =
 158                                (struct commit *)found.objects[i].item;
 159                        if (!tree_is_complete(c->tree->object.sha1)) {
 160                                is_incomplete = 1;
 161                                c->object.flags |= INCOMPLETE;
 162                        }
 163                }
 164                if (!is_incomplete) {
 165                        /* mark all found commits as complete, iow SEEN */
 166                        for (i = 0; i < found.nr; i++)
 167                                found.objects[i].item->flags |= SEEN;
 168                }
 169        }
 170        /* clear flags from the objects we traversed */
 171        for (i = 0; i < found.nr; i++)
 172                found.objects[i].item->flags &= ~STUDYING;
 173        if (is_incomplete)
 174                commit->object.flags |= INCOMPLETE;
 175        else {
 176                /*
 177                 * If we come here, we have (1) traversed the ancestry chain
 178                 * from the "commit" until we reach SEEN commits (which are
 179                 * known to be complete), and (2) made sure that the commits
 180                 * encountered during the above traversal refer to trees that
 181                 * are complete.  Which means that we know *all* the commits
 182                 * we have seen during this process are complete.
 183                 */
 184                for (i = 0; i < found.nr; i++)
 185                        found.objects[i].item->flags |= SEEN;
 186        }
 187        /* free object arrays */
 188        free(study.objects);
 189        free(found.objects);
 190        return !is_incomplete;
 191}
 192
 193static int keep_entry(struct commit **it, unsigned char *sha1)
 194{
 195        struct commit *commit;
 196
 197        if (is_null_sha1(sha1))
 198                return 1;
 199        commit = lookup_commit_reference_gently(sha1, 1);
 200        if (!commit)
 201                return 0;
 202
 203        /*
 204         * Make sure everything in this commit exists.
 205         *
 206         * We have walked all the objects reachable from the refs
 207         * and cache earlier.  The commits reachable by this commit
 208         * must meet SEEN commits -- and then we should mark them as
 209         * SEEN as well.
 210         */
 211        if (!commit_is_complete(commit))
 212                return 0;
 213        *it = commit;
 214        return 1;
 215}
 216
 217/*
 218 * Starting from commits in the cb->mark_list, mark commits that are
 219 * reachable from them.  Stop the traversal at commits older than
 220 * the expire_limit and queue them back, so that the caller can call
 221 * us again to restart the traversal with longer expire_limit.
 222 */
 223static void mark_reachable(struct expire_reflog_cb *cb)
 224{
 225        struct commit *commit;
 226        struct commit_list *pending;
 227        unsigned long expire_limit = cb->mark_limit;
 228        struct commit_list *leftover = NULL;
 229
 230        for (pending = cb->mark_list; pending; pending = pending->next)
 231                pending->item->object.flags &= ~REACHABLE;
 232
 233        pending = cb->mark_list;
 234        while (pending) {
 235                struct commit_list *entry = pending;
 236                struct commit_list *parent;
 237                pending = entry->next;
 238                commit = entry->item;
 239                free(entry);
 240                if (commit->object.flags & REACHABLE)
 241                        continue;
 242                if (parse_commit(commit))
 243                        continue;
 244                commit->object.flags |= REACHABLE;
 245                if (commit->date < expire_limit) {
 246                        commit_list_insert(commit, &leftover);
 247                        continue;
 248                }
 249                commit->object.flags |= REACHABLE;
 250                parent = commit->parents;
 251                while (parent) {
 252                        commit = parent->item;
 253                        parent = parent->next;
 254                        if (commit->object.flags & REACHABLE)
 255                                continue;
 256                        commit_list_insert(commit, &pending);
 257                }
 258        }
 259        cb->mark_list = leftover;
 260}
 261
 262static int unreachable(struct expire_reflog_cb *cb, struct commit *commit, unsigned char *sha1)
 263{
 264        /*
 265         * We may or may not have the commit yet - if not, look it
 266         * up using the supplied sha1.
 267         */
 268        if (!commit) {
 269                if (is_null_sha1(sha1))
 270                        return 0;
 271
 272                commit = lookup_commit_reference_gently(sha1, 1);
 273
 274                /* Not a commit -- keep it */
 275                if (!commit)
 276                        return 0;
 277        }
 278
 279        /* Reachable from the current ref?  Don't prune. */
 280        if (commit->object.flags & REACHABLE)
 281                return 0;
 282
 283        if (cb->mark_list && cb->mark_limit) {
 284                cb->mark_limit = 0; /* dig down to the root */
 285                mark_reachable(cb);
 286        }
 287
 288        return !(commit->object.flags & REACHABLE);
 289}
 290
 291static int expire_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
 292                const char *email, unsigned long timestamp, int tz,
 293                const char *message, void *cb_data)
 294{
 295        struct expire_reflog_cb *cb = cb_data;
 296        struct commit *old, *new;
 297
 298        if (timestamp < cb->cmd->expire_total)
 299                goto prune;
 300
 301        if (cb->cmd->rewrite)
 302                osha1 = cb->last_kept_sha1;
 303
 304        old = new = NULL;
 305        if (cb->cmd->stalefix &&
 306            (!keep_entry(&old, osha1) || !keep_entry(&new, nsha1)))
 307                goto prune;
 308
 309        if (timestamp < cb->cmd->expire_unreachable) {
 310                if (cb->unreachable_expire_kind == UE_ALWAYS)
 311                        goto prune;
 312                if (unreachable(cb, old, osha1) || unreachable(cb, new, nsha1))
 313                        goto prune;
 314        }
 315
 316        if (cb->cmd->recno && --(cb->cmd->recno) == 0)
 317                goto prune;
 318
 319        if (cb->newlog) {
 320                char sign = (tz < 0) ? '-' : '+';
 321                int zone = (tz < 0) ? (-tz) : tz;
 322                fprintf(cb->newlog, "%s %s %s %lu %c%04d\t%s",
 323                        sha1_to_hex(osha1), sha1_to_hex(nsha1),
 324                        email, timestamp, sign, zone,
 325                        message);
 326                hashcpy(cb->last_kept_sha1, nsha1);
 327        }
 328        if (cb->cmd->verbose)
 329                printf("keep %s", message);
 330        return 0;
 331 prune:
 332        if (!cb->newlog)
 333                printf("would prune %s", message);
 334        else if (cb->cmd->verbose)
 335                printf("prune %s", message);
 336        return 0;
 337}
 338
 339static int push_tip_to_list(const char *refname, const unsigned char *sha1, int flags, void *cb_data)
 340{
 341        struct commit_list **list = cb_data;
 342        struct commit *tip_commit;
 343        if (flags & REF_ISSYMREF)
 344                return 0;
 345        tip_commit = lookup_commit_reference_gently(sha1, 1);
 346        if (!tip_commit)
 347                return 0;
 348        commit_list_insert(tip_commit, list);
 349        return 0;
 350}
 351
 352static int expire_reflog(const char *refname, const unsigned char *sha1,
 353                         struct cmd_reflog_expire_cb *cmd)
 354{
 355        struct expire_reflog_cb cb;
 356        struct ref_lock *lock;
 357        char *log_file, *newlog_path = NULL;
 358        struct commit *tip_commit;
 359        struct commit_list *tips;
 360        int status = 0;
 361
 362        memset(&cb, 0, sizeof(cb));
 363
 364        /*
 365         * we take the lock for the ref itself to prevent it from
 366         * getting updated.
 367         */
 368        lock = lock_any_ref_for_update(refname, sha1, 0, NULL);
 369        if (!lock)
 370                return error("cannot lock ref '%s'", refname);
 371        if (!reflog_exists(refname)) {
 372                unlock_ref(lock);
 373                return 0;
 374        }
 375        log_file = git_pathdup("logs/%s", refname);
 376        if (!cmd->dry_run) {
 377                newlog_path = git_pathdup("logs/%s.lock", refname);
 378                cb.newlog = fopen(newlog_path, "w");
 379        }
 380
 381        cb.cmd = cmd;
 382
 383        if (!cmd->expire_unreachable || !strcmp(refname, "HEAD")) {
 384                tip_commit = NULL;
 385                cb.unreachable_expire_kind = UE_HEAD;
 386        } else {
 387                tip_commit = lookup_commit_reference_gently(sha1, 1);
 388                if (!tip_commit)
 389                        cb.unreachable_expire_kind = UE_ALWAYS;
 390                else
 391                        cb.unreachable_expire_kind = UE_NORMAL;
 392        }
 393
 394        if (cmd->expire_unreachable <= cmd->expire_total)
 395                cb.unreachable_expire_kind = UE_ALWAYS;
 396
 397        cb.mark_list = NULL;
 398        tips = NULL;
 399        if (cb.unreachable_expire_kind != UE_ALWAYS) {
 400                if (cb.unreachable_expire_kind == UE_HEAD) {
 401                        struct commit_list *elem;
 402                        for_each_ref(push_tip_to_list, &tips);
 403                        for (elem = tips; elem; elem = elem->next)
 404                                commit_list_insert(elem->item, &cb.mark_list);
 405                } else {
 406                        commit_list_insert(tip_commit, &cb.mark_list);
 407                }
 408                cb.mark_limit = cmd->expire_total;
 409                mark_reachable(&cb);
 410        }
 411
 412        for_each_reflog_ent(refname, expire_reflog_ent, &cb);
 413
 414        if (cb.unreachable_expire_kind != UE_ALWAYS) {
 415                if (cb.unreachable_expire_kind == UE_HEAD) {
 416                        struct commit_list *elem;
 417                        for (elem = tips; elem; elem = elem->next)
 418                                clear_commit_marks(elem->item, REACHABLE);
 419                        free_commit_list(tips);
 420                } else {
 421                        clear_commit_marks(tip_commit, REACHABLE);
 422                }
 423        }
 424
 425        if (cb.newlog) {
 426                if (fclose(cb.newlog)) {
 427                        status |= error("%s: %s", strerror(errno),
 428                                        newlog_path);
 429                        unlink(newlog_path);
 430                } else if (cmd->updateref &&
 431                        (write_in_full(lock->lock_fd,
 432                                sha1_to_hex(cb.last_kept_sha1), 40) != 40 ||
 433                         write_str_in_full(lock->lock_fd, "\n") != 1 ||
 434                         close_ref(lock) < 0)) {
 435                        status |= error("Couldn't write %s",
 436                                        lock->lk->filename.buf);
 437                        unlink(newlog_path);
 438                } else if (rename(newlog_path, log_file)) {
 439                        status |= error("cannot rename %s to %s",
 440                                        newlog_path, log_file);
 441                        unlink(newlog_path);
 442                } else if (cmd->updateref && commit_ref(lock)) {
 443                        status |= error("Couldn't set %s", lock->ref_name);
 444                } else {
 445                        adjust_shared_perm(log_file);
 446                }
 447        }
 448        free(newlog_path);
 449        free(log_file);
 450        unlock_ref(lock);
 451        return status;
 452}
 453
 454static int collect_reflog(const char *ref, const unsigned char *sha1, int unused, void *cb_data)
 455{
 456        struct collected_reflog *e;
 457        struct collect_reflog_cb *cb = cb_data;
 458        size_t namelen = strlen(ref);
 459
 460        e = xmalloc(sizeof(*e) + namelen + 1);
 461        hashcpy(e->sha1, sha1);
 462        memcpy(e->reflog, ref, namelen + 1);
 463        ALLOC_GROW(cb->e, cb->nr + 1, cb->alloc);
 464        cb->e[cb->nr++] = e;
 465        return 0;
 466}
 467
 468static struct reflog_expire_cfg {
 469        struct reflog_expire_cfg *next;
 470        unsigned long expire_total;
 471        unsigned long expire_unreachable;
 472        size_t len;
 473        char pattern[FLEX_ARRAY];
 474} *reflog_expire_cfg, **reflog_expire_cfg_tail;
 475
 476static struct reflog_expire_cfg *find_cfg_ent(const char *pattern, size_t len)
 477{
 478        struct reflog_expire_cfg *ent;
 479
 480        if (!reflog_expire_cfg_tail)
 481                reflog_expire_cfg_tail = &reflog_expire_cfg;
 482
 483        for (ent = reflog_expire_cfg; ent; ent = ent->next)
 484                if (ent->len == len &&
 485                    !memcmp(ent->pattern, pattern, len))
 486                        return ent;
 487
 488        ent = xcalloc(1, (sizeof(*ent) + len));
 489        memcpy(ent->pattern, pattern, len);
 490        ent->len = len;
 491        *reflog_expire_cfg_tail = ent;
 492        reflog_expire_cfg_tail = &(ent->next);
 493        return ent;
 494}
 495
 496static int parse_expire_cfg_value(const char *var, const char *value, unsigned long *expire)
 497{
 498        if (!value)
 499                return config_error_nonbool(var);
 500        if (parse_expiry_date(value, expire))
 501                return error(_("%s' for '%s' is not a valid timestamp"),
 502                             value, var);
 503        return 0;
 504}
 505
 506/* expiry timer slot */
 507#define EXPIRE_TOTAL   01
 508#define EXPIRE_UNREACH 02
 509
 510static int reflog_expire_config(const char *var, const char *value, void *cb)
 511{
 512        const char *pattern, *key;
 513        int pattern_len;
 514        unsigned long expire;
 515        int slot;
 516        struct reflog_expire_cfg *ent;
 517
 518        if (parse_config_key(var, "gc", &pattern, &pattern_len, &key) < 0)
 519                return git_default_config(var, value, cb);
 520
 521        if (!strcmp(key, "reflogexpire")) {
 522                slot = EXPIRE_TOTAL;
 523                if (parse_expire_cfg_value(var, value, &expire))
 524                        return -1;
 525        } else if (!strcmp(key, "reflogexpireunreachable")) {
 526                slot = EXPIRE_UNREACH;
 527                if (parse_expire_cfg_value(var, value, &expire))
 528                        return -1;
 529        } else
 530                return git_default_config(var, value, cb);
 531
 532        if (!pattern) {
 533                switch (slot) {
 534                case EXPIRE_TOTAL:
 535                        default_reflog_expire = expire;
 536                        break;
 537                case EXPIRE_UNREACH:
 538                        default_reflog_expire_unreachable = expire;
 539                        break;
 540                }
 541                return 0;
 542        }
 543
 544        ent = find_cfg_ent(pattern, pattern_len);
 545        if (!ent)
 546                return -1;
 547        switch (slot) {
 548        case EXPIRE_TOTAL:
 549                ent->expire_total = expire;
 550                break;
 551        case EXPIRE_UNREACH:
 552                ent->expire_unreachable = expire;
 553                break;
 554        }
 555        return 0;
 556}
 557
 558static void set_reflog_expiry_param(struct cmd_reflog_expire_cb *cb, int slot, const char *ref)
 559{
 560        struct reflog_expire_cfg *ent;
 561
 562        if (slot == (EXPIRE_TOTAL|EXPIRE_UNREACH))
 563                return; /* both given explicitly -- nothing to tweak */
 564
 565        for (ent = reflog_expire_cfg; ent; ent = ent->next) {
 566                if (!wildmatch(ent->pattern, ref, 0, NULL)) {
 567                        if (!(slot & EXPIRE_TOTAL))
 568                                cb->expire_total = ent->expire_total;
 569                        if (!(slot & EXPIRE_UNREACH))
 570                                cb->expire_unreachable = ent->expire_unreachable;
 571                        return;
 572                }
 573        }
 574
 575        /*
 576         * If unconfigured, make stash never expire
 577         */
 578        if (!strcmp(ref, "refs/stash")) {
 579                if (!(slot & EXPIRE_TOTAL))
 580                        cb->expire_total = 0;
 581                if (!(slot & EXPIRE_UNREACH))
 582                        cb->expire_unreachable = 0;
 583                return;
 584        }
 585
 586        /* Nothing matched -- use the default value */
 587        if (!(slot & EXPIRE_TOTAL))
 588                cb->expire_total = default_reflog_expire;
 589        if (!(slot & EXPIRE_UNREACH))
 590                cb->expire_unreachable = default_reflog_expire_unreachable;
 591}
 592
 593static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
 594{
 595        struct cmd_reflog_expire_cb cb;
 596        unsigned long now = time(NULL);
 597        int i, status, do_all;
 598        int explicit_expiry = 0;
 599
 600        default_reflog_expire_unreachable = now - 30 * 24 * 3600;
 601        default_reflog_expire = now - 90 * 24 * 3600;
 602        git_config(reflog_expire_config, NULL);
 603
 604        save_commit_buffer = 0;
 605        do_all = status = 0;
 606        memset(&cb, 0, sizeof(cb));
 607
 608        cb.expire_total = default_reflog_expire;
 609        cb.expire_unreachable = default_reflog_expire_unreachable;
 610
 611        for (i = 1; i < argc; i++) {
 612                const char *arg = argv[i];
 613                if (!strcmp(arg, "--dry-run") || !strcmp(arg, "-n"))
 614                        cb.dry_run = 1;
 615                else if (starts_with(arg, "--expire=")) {
 616                        if (parse_expiry_date(arg + 9, &cb.expire_total))
 617                                die(_("'%s' is not a valid timestamp"), arg);
 618                        explicit_expiry |= EXPIRE_TOTAL;
 619                }
 620                else if (starts_with(arg, "--expire-unreachable=")) {
 621                        if (parse_expiry_date(arg + 21, &cb.expire_unreachable))
 622                                die(_("'%s' is not a valid timestamp"), arg);
 623                        explicit_expiry |= EXPIRE_UNREACH;
 624                }
 625                else if (!strcmp(arg, "--stale-fix"))
 626                        cb.stalefix = 1;
 627                else if (!strcmp(arg, "--rewrite"))
 628                        cb.rewrite = 1;
 629                else if (!strcmp(arg, "--updateref"))
 630                        cb.updateref = 1;
 631                else if (!strcmp(arg, "--all"))
 632                        do_all = 1;
 633                else if (!strcmp(arg, "--verbose"))
 634                        cb.verbose = 1;
 635                else if (!strcmp(arg, "--")) {
 636                        i++;
 637                        break;
 638                }
 639                else if (arg[0] == '-')
 640                        usage(reflog_expire_usage);
 641                else
 642                        break;
 643        }
 644
 645        /*
 646         * We can trust the commits and objects reachable from refs
 647         * even in older repository.  We cannot trust what's reachable
 648         * from reflog if the repository was pruned with older git.
 649         */
 650        if (cb.stalefix) {
 651                init_revisions(&cb.revs, prefix);
 652                if (cb.verbose)
 653                        printf("Marking reachable objects...");
 654                mark_reachable_objects(&cb.revs, 0, 0, NULL);
 655                if (cb.verbose)
 656                        putchar('\n');
 657        }
 658
 659        if (do_all) {
 660                struct collect_reflog_cb collected;
 661                int i;
 662
 663                memset(&collected, 0, sizeof(collected));
 664                for_each_reflog(collect_reflog, &collected);
 665                for (i = 0; i < collected.nr; i++) {
 666                        struct collected_reflog *e = collected.e[i];
 667                        set_reflog_expiry_param(&cb, explicit_expiry, e->reflog);
 668                        status |= expire_reflog(e->reflog, e->sha1, &cb);
 669                        free(e);
 670                }
 671                free(collected.e);
 672        }
 673
 674        for (; i < argc; i++) {
 675                char *ref;
 676                unsigned char sha1[20];
 677                if (!dwim_log(argv[i], strlen(argv[i]), sha1, &ref)) {
 678                        status |= error("%s points nowhere!", argv[i]);
 679                        continue;
 680                }
 681                set_reflog_expiry_param(&cb, explicit_expiry, ref);
 682                status |= expire_reflog(ref, sha1, &cb);
 683        }
 684        return status;
 685}
 686
 687static int count_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
 688                const char *email, unsigned long timestamp, int tz,
 689                const char *message, void *cb_data)
 690{
 691        struct cmd_reflog_expire_cb *cb = cb_data;
 692        if (!cb->expire_total || timestamp < cb->expire_total)
 693                cb->recno++;
 694        return 0;
 695}
 696
 697static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
 698{
 699        struct cmd_reflog_expire_cb cb;
 700        int i, status = 0;
 701
 702        memset(&cb, 0, sizeof(cb));
 703
 704        for (i = 1; i < argc; i++) {
 705                const char *arg = argv[i];
 706                if (!strcmp(arg, "--dry-run") || !strcmp(arg, "-n"))
 707                        cb.dry_run = 1;
 708                else if (!strcmp(arg, "--rewrite"))
 709                        cb.rewrite = 1;
 710                else if (!strcmp(arg, "--updateref"))
 711                        cb.updateref = 1;
 712                else if (!strcmp(arg, "--verbose"))
 713                        cb.verbose = 1;
 714                else if (!strcmp(arg, "--")) {
 715                        i++;
 716                        break;
 717                }
 718                else if (arg[0] == '-')
 719                        usage(reflog_delete_usage);
 720                else
 721                        break;
 722        }
 723
 724        if (argc - i < 1)
 725                return error("Nothing to delete?");
 726
 727        for ( ; i < argc; i++) {
 728                const char *spec = strstr(argv[i], "@{");
 729                unsigned char sha1[20];
 730                char *ep, *ref;
 731                int recno;
 732
 733                if (!spec) {
 734                        status |= error("Not a reflog: %s", argv[i]);
 735                        continue;
 736                }
 737
 738                if (!dwim_log(argv[i], spec - argv[i], sha1, &ref)) {
 739                        status |= error("no reflog for '%s'", argv[i]);
 740                        continue;
 741                }
 742
 743                recno = strtoul(spec + 2, &ep, 10);
 744                if (*ep == '}') {
 745                        cb.recno = -recno;
 746                        for_each_reflog_ent(ref, count_reflog_ent, &cb);
 747                } else {
 748                        cb.expire_total = approxidate(spec + 2);
 749                        for_each_reflog_ent(ref, count_reflog_ent, &cb);
 750                        cb.expire_total = 0;
 751                }
 752
 753                status |= expire_reflog(ref, sha1, &cb);
 754                free(ref);
 755        }
 756        return status;
 757}
 758
 759/*
 760 * main "reflog"
 761 */
 762
 763static const char reflog_usage[] =
 764"git reflog [ show | expire | delete ]";
 765
 766int cmd_reflog(int argc, const char **argv, const char *prefix)
 767{
 768        if (argc > 1 && !strcmp(argv[1], "-h"))
 769                usage(reflog_usage);
 770
 771        /* With no command, we default to showing it. */
 772        if (argc < 2 || *argv[1] == '-')
 773                return cmd_log_reflog(argc, argv, prefix);
 774
 775        if (!strcmp(argv[1], "show"))
 776                return cmd_log_reflog(argc - 1, argv + 1, prefix);
 777
 778        if (!strcmp(argv[1], "expire"))
 779                return cmd_reflog_expire(argc - 1, argv + 1, prefix);
 780
 781        if (!strcmp(argv[1], "delete"))
 782                return cmd_reflog_delete(argc - 1, argv + 1, prefix);
 783
 784        return cmd_log_reflog(argc, argv, prefix);
 785}