forked from simonsj/fdupes-jody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
act_deletefiles.c
195 lines (166 loc) · 5.61 KB
/
act_deletefiles.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* Delete duplicate files automatically or interactively
* This file is part of jdupes; see jdupes.c for license information */
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <string.h>
#include "jdupes.h"
#include "jody_win_unicode.h"
#include "act_deletefiles.h"
#include "act_linkfiles.h"
#include "oom.h"
/* For interactive deletion input */
#define INPUT_SIZE 512
#ifdef UNICODE
static wpath_t wstr;
#endif
extern void deletefiles(file_t *files, int prompt, FILE *tty)
{
unsigned int counter, groups;
unsigned int curgroup = 0;
file_t *tmpfile;
file_t **dupelist;
unsigned int *preserve;
char *preservestr;
char *token;
char *tstr;
unsigned int number, sum, max, x;
size_t i;
LOUD(fprintf(stderr, "deletefiles: %p, %d, %p\n", files, prompt, tty));
groups = get_max_dupes(files, &max, NULL);
max++;
dupelist = (file_t **) malloc(sizeof(file_t*) * max);
preserve = (unsigned int *) malloc(sizeof(int) * max);
preservestr = (char *) malloc(INPUT_SIZE);
if (!dupelist || !preserve || !preservestr) oom("deletefiles() structures");
for (; files; files = files->next) {
if (ISFLAG(files->flags, FF_HAS_DUPES)) {
curgroup++;
counter = 1;
dupelist[counter] = files;
if (prompt) {
printf("[%u] ", counter); fwprint(stdout, files->d_name, 1);
}
tmpfile = files->duplicates;
while (tmpfile) {
dupelist[++counter] = tmpfile;
if (prompt) {
printf("[%u] ", counter); fwprint(stdout, tmpfile->d_name, 1);
}
tmpfile = tmpfile->duplicates;
}
if (prompt) printf("\n");
/* Preserve only the first file */
if (!prompt) {
preserve[1] = 1;
for (x = 2; x <= counter; x++) preserve[x] = 0;
} else do {
/* Prompt for files to preserve */
printf("Set %u of %u: keep which files? (1 - %u, [a]ll, [n]one",
curgroup, groups, counter);
#ifndef NO_HARDLINKS
printf(", [l]ink all");
#endif
#ifndef NO_SYMLINKS
printf(", [s]ymlink all");
#endif
printf(")");
if (ISFLAG(a_flags, FA_SHOWSIZE)) printf(" (%" PRIuMAX " byte%c each)", (uintmax_t)files->size,
(files->size != 1) ? 's' : ' ');
printf(": ");
fflush(stdout);
/* Treat fgets() failure as if nothing was entered */
if (!fgets(preservestr, INPUT_SIZE, tty)) preservestr[0] = '\n';
/* If nothing is entered, treat it as if 'a' was entered */
if (preservestr[0] == '\n') strcpy(preservestr, "a\n");
i = strlen(preservestr) - 1;
/* tail of buffer must be a newline */
while (preservestr[i] != '\n') {
tstr = (char *)realloc(preservestr, strlen(preservestr) + 1 + INPUT_SIZE);
if (!tstr) oom("deletefiles() prompt string");
preservestr = tstr;
if (!fgets(preservestr + i + 1, INPUT_SIZE, tty))
{
preservestr[0] = '\n'; /* treat fgets() failure as if nothing was entered */
break;
}
i = strlen(preservestr) - 1;
}
for (x = 1; x <= counter; x++) preserve[x] = 0;
token = strtok(preservestr, " ,\n");
if (token != NULL) {
#if defined NO_HARDLINKS && defined NO_SYMLINKS
/* no linktype needed */
#else
int linktype = -1;
#endif /* defined NO_HARDLINKS && defined NO_SYMLINKS */
/* "Delete none" = stop parsing string */
if (*token == 'n' || *token == 'N') goto stop_scanning;
/* If requested, link this set instead */
#ifndef NO_HARDLINKS
if (*token == 'l' || *token == 'L') linktype = 1; /* hard link */
#endif
#ifndef NO_SYMLINKS
if (*token == 's' || *token == 'S') linktype = 0; /* symlink */
#endif
#if defined NO_HARDLINKS && defined NO_SYMLINKS
/* no linking calls */
#else
if (linktype != -1) {
linkfiles(files, linktype, 1);
goto skip_deletion;
}
#endif /* defined NO_HARDLINKS && defined NO_SYMLINKS */
}
while (token != NULL) {
if (*token == 'a' || *token == 'A')
for (x = 0; x <= counter; x++) preserve[x] = 1;
number = 0;
sscanf(token, "%u", &number);
if (number > 0 && number <= counter) preserve[number] = 1;
token = strtok(NULL, " ,\n");
}
for (sum = 0, x = 1; x <= counter; x++) sum += preserve[x];
} while (sum < 1); /* save at least one file */
stop_scanning:
printf("\n");
for (x = 1; x <= counter; x++) {
if (preserve[x]) {
printf(" [+] "); fwprint(stdout, dupelist[x]->d_name, 1);
} else {
#ifdef UNICODE
if (!M2W(dupelist[x]->d_name, wstr)) {
printf(" [!] "); fwprint(stdout, dupelist[x]->d_name, 0);
printf("-- MultiByteToWideChar failed\n");
continue;
}
#endif
if (file_has_changed(dupelist[x])) {
printf(" [!] "); fwprint(stdout, dupelist[x]->d_name, 0);
printf("-- file changed since being scanned\n");
#ifdef UNICODE
} else if (DeleteFileW(wstr) != 0) {
#else
} else if (remove(dupelist[x]->d_name) == 0) {
#endif
printf(" [-] "); fwprint(stdout, dupelist[x]->d_name, 1);
} else {
printf(" [!] "); fwprint(stdout, dupelist[x]->d_name, 0);
printf("-- unable to delete file\n");
}
}
}
#if defined NO_HARDLINKS && defined NO_SYMLINKS
/* label not needed */
#else
skip_deletion:
#endif /* defined NO_HARDLINKS && defined NO_SYMLINKS */
printf("\n");
}
}
free(dupelist);
free(preserve);
free(preservestr);
return;
}