builtin-add.con commit Merge branch 'maint' of git://repo.or.cz/git-gui into maint (1b2782a)
   1/*
   2 * "git add" builtin command
   3 *
   4 * Copyright (C) 2006 Linus Torvalds
   5 */
   6#include "cache.h"
   7#include "builtin.h"
   8#include "dir.h"
   9#include "exec_cmd.h"
  10#include "cache-tree.h"
  11#include "diff.h"
  12#include "diffcore.h"
  13#include "commit.h"
  14#include "revision.h"
  15
  16static const char builtin_add_usage[] =
  17"git-add [-n] [-v] [-f] [--interactive | -i] [-u] [--] <filepattern>...";
  18
  19static int take_worktree_changes;
  20static const char *excludes_file;
  21
  22static void prune_directory(struct dir_struct *dir, const char **pathspec, int prefix)
  23{
  24        char *seen;
  25        int i, specs;
  26        struct dir_entry **src, **dst;
  27
  28        for (specs = 0; pathspec[specs];  specs++)
  29                /* nothing */;
  30        seen = xcalloc(specs, 1);
  31
  32        src = dst = dir->entries;
  33        i = dir->nr;
  34        while (--i >= 0) {
  35                struct dir_entry *entry = *src++;
  36                if (match_pathspec(pathspec, entry->name, entry->len,
  37                                   prefix, seen))
  38                        *dst++ = entry;
  39        }
  40        dir->nr = dst - dir->entries;
  41
  42        for (i = 0; i < specs; i++) {
  43                struct stat st;
  44                const char *match;
  45                if (seen[i])
  46                        continue;
  47
  48                match = pathspec[i];
  49                if (!match[0])
  50                        continue;
  51
  52                /* Existing file? We must have ignored it */
  53                if (!lstat(match, &st)) {
  54                        struct dir_entry *ent;
  55
  56                        ent = dir_add_name(dir, match, strlen(match));
  57                        ent->ignored = 1;
  58                        if (S_ISDIR(st.st_mode))
  59                                ent->ignored_dir = 1;
  60                        continue;
  61                }
  62                die("pathspec '%s' did not match any files", match);
  63        }
  64}
  65
  66static void fill_directory(struct dir_struct *dir, const char **pathspec)
  67{
  68        const char *path, *base;
  69        int baselen;
  70
  71        /* Set up the default git porcelain excludes */
  72        memset(dir, 0, sizeof(*dir));
  73        dir->exclude_per_dir = ".gitignore";
  74        path = git_path("info/exclude");
  75        if (!access(path, R_OK))
  76                add_excludes_from_file(dir, path);
  77        if (!access(excludes_file, R_OK))
  78                add_excludes_from_file(dir, excludes_file);
  79
  80        /*
  81         * Calculate common prefix for the pathspec, and
  82         * use that to optimize the directory walk
  83         */
  84        baselen = common_prefix(pathspec);
  85        path = ".";
  86        base = "";
  87        if (baselen) {
  88                char *common = xmalloc(baselen + 1);
  89                memcpy(common, *pathspec, baselen);
  90                common[baselen] = 0;
  91                path = base = common;
  92        }
  93
  94        /* Read the directory and prune it */
  95        read_directory(dir, path, base, baselen, pathspec);
  96        if (pathspec)
  97                prune_directory(dir, pathspec, baselen);
  98}
  99
 100static void update_callback(struct diff_queue_struct *q,
 101                            struct diff_options *opt, void *cbdata)
 102{
 103        int i, verbose;
 104
 105        verbose = *((int *)cbdata);
 106        for (i = 0; i < q->nr; i++) {
 107                struct diff_filepair *p = q->queue[i];
 108                const char *path = p->one->path;
 109                switch (p->status) {
 110                default:
 111                        die("unexpacted diff status %c", p->status);
 112                case DIFF_STATUS_UNMERGED:
 113                case DIFF_STATUS_MODIFIED:
 114                        add_file_to_cache(path, verbose);
 115                        break;
 116                case DIFF_STATUS_DELETED:
 117                        remove_file_from_cache(path);
 118                        if (verbose)
 119                                printf("remove '%s'\n", path);
 120                        break;
 121                }
 122        }
 123}
 124
 125static void update(int verbose, const char **files)
 126{
 127        struct rev_info rev;
 128        init_revisions(&rev, "");
 129        setup_revisions(0, NULL, &rev, NULL);
 130        rev.prune_data = get_pathspec(rev.prefix, files);
 131        rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
 132        rev.diffopt.format_callback = update_callback;
 133        rev.diffopt.format_callback_data = &verbose;
 134        if (read_cache() < 0)
 135                die("index file corrupt");
 136        run_diff_files(&rev, 0);
 137}
 138
 139static int git_add_config(const char *var, const char *value)
 140{
 141        if (!strcmp(var, "core.excludesfile")) {
 142                if (!value)
 143                        die("core.excludesfile without value");
 144                excludes_file = xstrdup(value);
 145                return 0;
 146        }
 147
 148        return git_default_config(var, value);
 149}
 150
 151static struct lock_file lock_file;
 152
 153static const char ignore_warning[] =
 154"The following paths are ignored by one of your .gitignore files:\n";
 155
 156int cmd_add(int argc, const char **argv, const char *prefix)
 157{
 158        int i, newfd;
 159        int verbose = 0, show_only = 0, ignored_too = 0;
 160        const char **pathspec;
 161        struct dir_struct dir;
 162        int add_interactive = 0;
 163
 164        for (i = 1; i < argc; i++) {
 165                if (!strcmp("--interactive", argv[i]) ||
 166                    !strcmp("-i", argv[i]))
 167                        add_interactive++;
 168        }
 169        if (add_interactive) {
 170                const char *args[] = { "add--interactive", NULL };
 171
 172                if (add_interactive != 1 || argc != 2)
 173                        die("add --interactive does not take any parameters");
 174                execv_git_cmd(args);
 175                exit(1);
 176        }
 177
 178        git_config(git_add_config);
 179
 180        newfd = hold_locked_index(&lock_file, 1);
 181
 182        for (i = 1; i < argc; i++) {
 183                const char *arg = argv[i];
 184
 185                if (arg[0] != '-')
 186                        break;
 187                if (!strcmp(arg, "--")) {
 188                        i++;
 189                        break;
 190                }
 191                if (!strcmp(arg, "-n")) {
 192                        show_only = 1;
 193                        continue;
 194                }
 195                if (!strcmp(arg, "-f")) {
 196                        ignored_too = 1;
 197                        continue;
 198                }
 199                if (!strcmp(arg, "-v")) {
 200                        verbose = 1;
 201                        continue;
 202                }
 203                if (!strcmp(arg, "-u")) {
 204                        take_worktree_changes = 1;
 205                        continue;
 206                }
 207                usage(builtin_add_usage);
 208        }
 209
 210        if (take_worktree_changes) {
 211                update(verbose, argv + i);
 212                goto finish;
 213        }
 214
 215        if (argc <= i) {
 216                fprintf(stderr, "Nothing specified, nothing added.\n");
 217                fprintf(stderr, "Maybe you wanted to say 'git add .'?\n");
 218                return 0;
 219        }
 220        pathspec = get_pathspec(prefix, argv + i);
 221
 222        fill_directory(&dir, pathspec);
 223
 224        if (show_only) {
 225                const char *sep = "", *eof = "";
 226                for (i = 0; i < dir.nr; i++) {
 227                        if (!ignored_too && dir.entries[i]->ignored)
 228                                continue;
 229                        printf("%s%s", sep, dir.entries[i]->name);
 230                        sep = " ";
 231                        eof = "\n";
 232                }
 233                fputs(eof, stdout);
 234                return 0;
 235        }
 236
 237        if (read_cache() < 0)
 238                die("index file corrupt");
 239
 240        if (!ignored_too) {
 241                int has_ignored = 0;
 242                for (i = 0; i < dir.nr; i++)
 243                        if (dir.entries[i]->ignored)
 244                                has_ignored = 1;
 245                if (has_ignored) {
 246                        fprintf(stderr, ignore_warning);
 247                        for (i = 0; i < dir.nr; i++) {
 248                                if (!dir.entries[i]->ignored)
 249                                        continue;
 250                                fprintf(stderr, "%s", dir.entries[i]->name);
 251                                if (dir.entries[i]->ignored_dir)
 252                                        fprintf(stderr, " (directory)");
 253                                fputc('\n', stderr);
 254                        }
 255                        fprintf(stderr,
 256                                "Use -f if you really want to add them.\n");
 257                        exit(1);
 258                }
 259        }
 260
 261        for (i = 0; i < dir.nr; i++)
 262                add_file_to_cache(dir.entries[i]->name, verbose);
 263
 264 finish:
 265        if (active_cache_changed) {
 266                if (write_cache(newfd, active_cache, active_nr) ||
 267                    close(newfd) || commit_locked_index(&lock_file))
 268                        die("Unable to write new index file");
 269        }
 270
 271        return 0;
 272}