builtin-mv.con commit finish_connect(): thinkofix (53e1a76)
   1/*
   2 * "git mv" builtin command
   3 *
   4 * Copyright (C) 2006 Johannes Schindelin
   5 */
   6#include <fnmatch.h>
   7
   8#include "cache.h"
   9#include "builtin.h"
  10#include "dir.h"
  11#include "cache-tree.h"
  12#include "path-list.h"
  13
  14static const char builtin_mv_usage[] =
  15"git-mv [-n] [-f] (<source> <destination> | [-k] <source>... <destination>)";
  16
  17static const char **copy_pathspec(const char *prefix, const char **pathspec,
  18                                  int count, int base_name)
  19{
  20        const char **result = xmalloc((count + 1) * sizeof(const char *));
  21        memcpy(result, pathspec, count * sizeof(const char *));
  22        result[count] = NULL;
  23        if (base_name) {
  24                int i;
  25                for (i = 0; i < count; i++) {
  26                        const char *last_slash = strrchr(result[i], '/');
  27                        if (last_slash)
  28                                result[i] = last_slash + 1;
  29                }
  30        }
  31        return get_pathspec(prefix, result);
  32}
  33
  34static void show_list(const char *label, struct path_list *list)
  35{
  36        if (list->nr > 0) {
  37                int i;
  38                printf("%s", label);
  39                for (i = 0; i < list->nr; i++)
  40                        printf("%s%s", i > 0 ? ", " : "", list->items[i].path);
  41                putchar('\n');
  42        }
  43}
  44
  45static const char *add_slash(const char *path)
  46{
  47        int len = strlen(path);
  48        if (path[len - 1] != '/') {
  49                char *with_slash = xmalloc(len + 2);
  50                memcpy(with_slash, path, len);
  51                with_slash[len++] = '/';
  52                with_slash[len] = 0;
  53                return with_slash;
  54        }
  55        return path;
  56}
  57
  58static struct lock_file lock_file;
  59
  60int cmd_mv(int argc, const char **argv, const char *prefix)
  61{
  62        int i, newfd, count;
  63        int verbose = 0, show_only = 0, force = 0, ignore_errors = 0;
  64        const char **source, **destination, **dest_path;
  65        enum update_mode { BOTH = 0, WORKING_DIRECTORY, INDEX } *modes;
  66        struct stat st;
  67        struct path_list overwritten = {NULL, 0, 0, 0};
  68        struct path_list src_for_dst = {NULL, 0, 0, 0};
  69        struct path_list added = {NULL, 0, 0, 0};
  70        struct path_list deleted = {NULL, 0, 0, 0};
  71        struct path_list changed = {NULL, 0, 0, 0};
  72
  73        git_config(git_default_config);
  74
  75        newfd = hold_lock_file_for_update(&lock_file, get_index_file(), 1);
  76        if (read_cache() < 0)
  77                die("index file corrupt");
  78
  79        for (i = 1; i < argc; i++) {
  80                const char *arg = argv[i];
  81
  82                if (arg[0] != '-')
  83                        break;
  84                if (!strcmp(arg, "--")) {
  85                        i++;
  86                        break;
  87                }
  88                if (!strcmp(arg, "-n")) {
  89                        show_only = 1;
  90                        continue;
  91                }
  92                if (!strcmp(arg, "-f")) {
  93                        force = 1;
  94                        continue;
  95                }
  96                if (!strcmp(arg, "-k")) {
  97                        ignore_errors = 1;
  98                        continue;
  99                }
 100                usage(builtin_mv_usage);
 101        }
 102        count = argc - i - 1;
 103        if (count < 1)
 104                usage(builtin_mv_usage);
 105
 106        source = copy_pathspec(prefix, argv + i, count, 0);
 107        modes = xcalloc(count, sizeof(enum update_mode));
 108        dest_path = copy_pathspec(prefix, argv + argc - 1, 1, 0);
 109
 110        if (!lstat(dest_path[0], &st) &&
 111                        S_ISDIR(st.st_mode)) {
 112                dest_path[0] = add_slash(dest_path[0]);
 113                destination = copy_pathspec(dest_path[0], argv + i, count, 1);
 114        } else {
 115                if (count != 1)
 116                        usage(builtin_mv_usage);
 117                destination = dest_path;
 118        }
 119
 120        /* Checking */
 121        for (i = 0; i < count; i++) {
 122                int length;
 123                const char *bad = NULL;
 124
 125                if (show_only)
 126                        printf("Checking rename of '%s' to '%s'\n",
 127                                source[i], destination[i]);
 128
 129                if (lstat(source[i], &st) < 0)
 130                        bad = "bad source";
 131
 132                if (S_ISDIR(st.st_mode)) {
 133                        const char *dir = source[i], *dest_dir = destination[i];
 134                        int first, last, len = strlen(dir);
 135
 136                        if (lstat(dest_dir, &st) == 0) {
 137                                bad = "cannot move directory over file";
 138                                goto next;
 139                        }
 140
 141                        modes[i] = WORKING_DIRECTORY;
 142
 143                        first = cache_name_pos(source[i], len);
 144                        if (first >= 0)
 145                                die ("Huh? %s/ is in index?", dir);
 146
 147                        first = -1 - first;
 148                        for (last = first; last < active_nr; last++) {
 149                                const char *path = active_cache[last]->name;
 150                                if (strncmp(path, dir, len) || path[len] != '/')
 151                                        break;
 152                        }
 153
 154                        if (last - first < 1)
 155                                bad = "source directory is empty";
 156                        else if (!bad) {
 157                                int j, dst_len = strlen(dest_dir);
 158
 159                                if (last - first > 0) {
 160                                        source = realloc(source,
 161                                                        (count + last - first)
 162                                                        * sizeof(char *));
 163                                        destination = realloc(destination,
 164                                                        (count + last - first)
 165                                                        * sizeof(char *));
 166                                        modes = realloc(modes,
 167                                                        (count + last - first)
 168                                                        * sizeof(enum update_mode));
 169                                }
 170
 171                                dest_dir = add_slash(dest_dir);
 172
 173                                for (j = 0; j < last - first; j++) {
 174                                        const char *path =
 175                                                active_cache[first + j]->name;
 176                                        source[count + j] = path;
 177                                        destination[count + j] =
 178                                                prefix_path(dest_dir, dst_len,
 179                                                        path + len);
 180                                        modes[count + j] = INDEX;
 181                                }
 182                                count += last - first;
 183                        }
 184
 185                        goto next;
 186                }
 187
 188                if (!bad && lstat(destination[i], &st) == 0) {
 189                        bad = "destination exists";
 190                        if (force) {
 191                                /*
 192                                 * only files can overwrite each other:
 193                                 * check both source and destination
 194                                 */
 195                                if (S_ISREG(st.st_mode)) {
 196                                        fprintf(stderr, "Warning: %s;"
 197                                                        " will overwrite!\n",
 198                                                        bad);
 199                                        bad = NULL;
 200                                        path_list_insert(destination[i],
 201                                                        &overwritten);
 202                                } else
 203                                        bad = "Cannot overwrite";
 204                        }
 205                }
 206
 207                if (!bad &&
 208                    (length = strlen(source[i])) >= 0 &&
 209                    !strncmp(destination[i], source[i], length) &&
 210                    (destination[i][length] == 0 || destination[i][length] == '/'))
 211                        bad = "can not move directory into itself";
 212
 213                if (!bad && cache_name_pos(source[i], strlen(source[i])) < 0)
 214                        bad = "not under version control";
 215
 216                if (!bad) {
 217                        if (path_list_has_path(&src_for_dst, destination[i]))
 218                                bad = "multiple sources for the same target";
 219                        else
 220                                path_list_insert(destination[i], &src_for_dst);
 221                }
 222
 223next:
 224                if (bad) {
 225                        if (ignore_errors) {
 226                                if (--count > 0) {
 227                                        memmove(source + i, source + i + 1,
 228                                                (count - i) * sizeof(char *));
 229                                        memmove(destination + i,
 230                                                destination + i + 1,
 231                                                (count - i) * sizeof(char *));
 232                                }
 233                        } else
 234                                die ("%s, source=%s, destination=%s",
 235                                     bad, source[i], destination[i]);
 236                }
 237        }
 238
 239        for (i = 0; i < count; i++) {
 240                if (show_only || verbose)
 241                        printf("Renaming %s to %s\n",
 242                               source[i], destination[i]);
 243                if (!show_only && modes[i] != INDEX &&
 244                    rename(source[i], destination[i]) < 0 &&
 245                    !ignore_errors)
 246                        die ("renaming %s failed: %s",
 247                             source[i], strerror(errno));
 248
 249                if (modes[i] == WORKING_DIRECTORY)
 250                        continue;
 251
 252                if (cache_name_pos(source[i], strlen(source[i])) >= 0) {
 253                        path_list_insert(source[i], &deleted);
 254
 255                        /* destination can be a directory with 1 file inside */
 256                        if (path_list_has_path(&overwritten, destination[i]))
 257                                path_list_insert(destination[i], &changed);
 258                        else
 259                                path_list_insert(destination[i], &added);
 260                } else
 261                        path_list_insert(destination[i], &added);
 262        }
 263
 264        if (show_only) {
 265                show_list("Changed  : ", &changed);
 266                show_list("Adding   : ", &added);
 267                show_list("Deleting : ", &deleted);
 268        } else {
 269                for (i = 0; i < changed.nr; i++) {
 270                        const char *path = changed.items[i].path;
 271                        int i = cache_name_pos(path, strlen(path));
 272                        struct cache_entry *ce = active_cache[i];
 273
 274                        if (i < 0)
 275                                die ("Huh? Cache entry for %s unknown?", path);
 276                        refresh_cache_entry(ce, 0);
 277                }
 278
 279                for (i = 0; i < added.nr; i++) {
 280                        const char *path = added.items[i].path;
 281                        add_file_to_index(path, verbose);
 282                }
 283
 284                for (i = 0; i < deleted.nr; i++) {
 285                        const char *path = deleted.items[i].path;
 286                        remove_file_from_cache(path);
 287                }
 288
 289                if (active_cache_changed) {
 290                        if (write_cache(newfd, active_cache, active_nr) ||
 291                            close(newfd) ||
 292                            commit_lock_file(&lock_file))
 293                                die("Unable to write new index file");
 294                }
 295        }
 296
 297        return 0;
 298}