Commit 9c000f5e authored by Wayne Davison's avatar Wayne Davison

Implement the new --skip-empty-dirs (-k) option.

parent 0e887ef2
...@@ -53,6 +53,7 @@ extern int preserve_uid; ...@@ -53,6 +53,7 @@ extern int preserve_uid;
extern int preserve_gid; extern int preserve_gid;
extern int relative_paths; extern int relative_paths;
extern int implied_dirs; extern int implied_dirs;
extern int skip_empty_dirs;
extern int copy_links; extern int copy_links;
extern int copy_unsafe_links; extern int copy_unsafe_links;
extern int protocol_version; extern int protocol_version;
...@@ -75,6 +76,7 @@ unsigned int file_struct_len; ...@@ -75,6 +76,7 @@ unsigned int file_struct_len;
static char empty_sum[MD4_SUM_LENGTH]; static char empty_sum[MD4_SUM_LENGTH];
static int flist_count_offset; static int flist_count_offset;
static int max_dir_depth = 0;
static void clean_flist(struct file_list *flist, int strip_root, int no_dups); static void clean_flist(struct file_list *flist, int strip_root, int no_dups);
static void output_flist(struct file_list *flist); static void output_flist(struct file_list *flist);
...@@ -633,6 +635,8 @@ static struct file_struct *receive_file_entry(struct file_list *flist, ...@@ -633,6 +635,8 @@ static struct file_struct *receive_file_entry(struct file_list *flist,
bp[-1] = '\0'; bp[-1] = '\0';
lastdir_depth = count_dir_elements(lastdir); lastdir_depth = count_dir_elements(lastdir);
file->dir.depth = lastdir_depth + 1; file->dir.depth = lastdir_depth + 1;
if (lastdir_depth >= max_dir_depth)
max_dir_depth = lastdir_depth + 1;
} else if (dirname) { } else if (dirname) {
file->dirname = dirname; /* we're reusing lastname */ file->dirname = dirname; /* we're reusing lastname */
file->dir.depth = lastdir_depth + 1; file->dir.depth = lastdir_depth + 1;
...@@ -1540,6 +1544,20 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups) ...@@ -1540,6 +1544,20 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
if (!file->basename) if (!file->basename)
continue; continue;
if (strip_root && file->dirname) {
/* We need to strip off the leading slashes for
* relative paths, but this must be done _after_
* the sorting phase (above). */
if (*file->dirname == '/') {
char *s = file->dirname + 1;
while (*s == '/') s++;
memmove(file->dirname, s, strlen(s) + 1);
}
if (!*file->dirname)
file->dirname = NULL;
}
if (f_name_cmp(file, flist->files[prev_i]) == 0) if (f_name_cmp(file, flist->files[prev_i]) == 0)
j = prev_i; j = prev_i;
else if (protocol_version >= 29 && S_ISDIR(file->mode)) { else if (protocol_version >= 29 && S_ISDIR(file->mode)) {
...@@ -1552,6 +1570,7 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups) ...@@ -1552,6 +1570,7 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
file->mode = save_mode; file->mode = save_mode;
} else } else
j = -1; j = -1;
if (j >= 0) { if (j >= 0) {
struct file_struct *fp = flist->files[j]; struct file_struct *fp = flist->files[j];
int keep, drop; int keep, drop;
...@@ -1570,8 +1589,8 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups) ...@@ -1570,8 +1589,8 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
"removing duplicate name %s from file list (%d)\n", "removing duplicate name %s from file list (%d)\n",
f_name(file, NULL), drop); f_name(file, NULL), drop);
} }
/* Make sure that if we unduplicate '.', that we don't /* Make sure we don't lose track of a user-specified
* lose track of a user-specified top directory. */ * top directory. */
flist->files[keep]->flags |= flist->files[drop]->flags flist->files[keep]->flags |= flist->files[drop]->flags
& (FLAG_TOP_DIR|FLAG_DEL_HERE); & (FLAG_TOP_DIR|FLAG_DEL_HERE);
...@@ -1591,23 +1610,45 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups) ...@@ -1591,23 +1610,45 @@ static void clean_flist(struct file_list *flist, int strip_root, int no_dups)
} }
flist->high = no_dups ? prev_i : flist->count - 1; flist->high = no_dups ? prev_i : flist->count - 1;
if (strip_root) { if (skip_empty_dirs && no_dups && max_dir_depth) {
/* We need to strip off the leading slashes for relative int j, cur_depth = 0;
* paths, but this must be done _after_ the sorting phase. */ int *maybe_dirs = new_array(int, max_dir_depth);
maybe_dirs[0] = -1;
for (i = flist->low; i <= flist->high; i++) { for (i = flist->low; i <= flist->high; i++) {
struct file_struct *file = flist->files[i]; struct file_struct *file = flist->files[i];
if (!file->dirname) if (S_ISDIR(file->mode) && file->dir.depth) {
continue; j = cur_depth;
if (*file->dirname == '/') { cur_depth = file->dir.depth - 1;
char *s = file->dirname + 1; for ( ; j >= cur_depth; j--) {
while (*s == '/') s++; if (maybe_dirs[j] < 0)
memmove(file->dirname, s, strlen(s) + 1); continue;
clear_file(maybe_dirs[j], flist);
}
maybe_dirs[cur_depth] = i;
} else if (maybe_dirs[cur_depth] >= 0) {
for (j = 0; j <= cur_depth; j++)
maybe_dirs[j] = -1;
} }
}
for (j = cur_depth; j >= 0; j--) {
if (maybe_dirs[j] < 0)
continue;
clear_file(maybe_dirs[j], flist);
}
if (!*file->dirname) for (i = flist->low; i <= flist->high; i++) {
file->dirname = NULL; if (flist->files[i]->basename)
break;
}
flist->low = i;
for (i = flist->high; i >= flist->low; i--) {
if (flist->files[i]->basename)
break;
} }
flist->high = i;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment