-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.c
428 lines (349 loc) · 10.2 KB
/
main.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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <limits.h> // PATH_MAX
#include <unistd.h>
#define INITIAL_STACK_SIZE 64
#define STACK_CHUNK_SIZE 64
/**
* Implementacja stosu
*/
typedef struct v_stack {
void** data;
unsigned int size; // ilość zaalokowanych int'ów
unsigned int count; // ilość elementów na stosie
} v_stack;
v_stack v_stack_init() {
return (v_stack) {
.data = malloc(INITIAL_STACK_SIZE * sizeof(void*)),
.size = INITIAL_STACK_SIZE,
.count = 0,
};
}
void v_stack_push(v_stack* stk, void* data) {
// rozszerz stos
if (stk->count + 1 >= stk->size) {
stk->size += STACK_CHUNK_SIZE;
void* new_buffer = malloc(stk->size * sizeof(void*));
memcpy(new_buffer, stk->data, (stk->size - STACK_CHUNK_SIZE) * sizeof(void*));
free(stk->data);
stk->data = new_buffer;
}
// przypisz dane
stk->data[stk->count] = data;
// zwiększ ilość elementów na stosie
stk->count++;
}
void* v_stack_peek(v_stack* stk) {
if (stk->count == 0)
return NULL;
return stk->data[stk->count - 1];
}
int v_stack_pop(v_stack* stk, bool release) {
// todo: Dodac realloc?
if (stk->count > 0) {
if (release)
free(stk->data[stk->count - 1]);
stk->count--;
return 0;
}
return -1;
}
int v_stack_release(v_stack* stk, bool release_nested) {
if (stk->data == NULL)
return -1;
// kasuje nested itemki void*
if (release_nested) {
for (int i = stk->count - 1; i >= 0; --i)
free(stk->data[i]);
}
free(stk->data);
stk->data = NULL;
return 0;
}
/**
* Implementacja tree
*/
#define MAX_POSIX_FILENAME_LEN 256
#define TREE_LEVEL_SPACING_LEN 3
#define TREE_EDGE_CHARACTER "├"
#define TREE_LINE_CHARACTER "─"
#define TREE_ROW_CHARACTER "│"
#define TREE_EDGE_TERMINATOR_CHARACTER "└"
typedef struct tree_file {
unsigned char type; // DT_DIR, DT_REG
bool is_dir;
bool is_symlink;
char* name;
char* path;
// daty dostępu
time_t last_access_time;
time_t last_modificiation_time;
off_t size; // w bajtach rozmiar
// jeśli symlink
struct tree_file* symlink_dest;
} tree_file;
// informacje podsumowujące drzewo
typedef struct tree_stats {
unsigned int files_count;
unsigned int dir_count;
} tree_stats;
// informacje używane do rysowania drzewa
typedef struct tree_print_flags {
bool dir_only;
bool follow_symlinks;
bool print_full_path;
int max_level;
} tree_print_flags;
/**
* Łączy dwie ścieżki
*/
char* join_paths(const char* parent, const char* child) {
if (!parent || !child)
return NULL;
// jeśli druga część ścieżki zaczyna się od /
// lub rodzic kończy się na / to łącz bez slasha
char* output = NULL;
int parent_length = strlen(parent);
int total_length = parent_length + strlen(child);
if (child[0] == '/' || parent[parent_length - 1] == '/')
asprintf(&output, "%s%s", parent, child);
else
asprintf(&output, "%s/%s", parent, child);
return output;
}
/**
* Listuje pliki w katalogu wskazanym w path.
* Zwraca stos ze wskaźnikami do tree_file
*/
v_stack tree_list_files(
const char* path,
struct tree_print_flags* flags) {
DIR* dp = opendir(path);
struct dirent *ep;
struct v_stack files = v_stack_init();
if (dp == NULL)
return files;
// wrzucanie info o pliku do struktury
while ((ep = readdir(dp))) {
// ignorowanie . i ..
if (!strcmp("..", ep->d_name) || !strcmp(".", ep->d_name))
continue;
// ignorowanie plików jeśli tylko foldery przyzwolone są
bool is_dir = ep->d_type == DT_DIR;
if (!is_dir && flags->dir_only)
continue;
struct tree_file* file = malloc(sizeof(tree_file));
// Zbieranie informacji z pliku
file->name = malloc(MAX_POSIX_FILENAME_LEN);
memcpy(file->name, ep->d_name, MAX_POSIX_FILENAME_LEN);
file->symlink_dest = NULL;
file->path = join_paths(path, file->name);
file->type = ep->d_type;
file->is_dir = is_dir;
file->is_symlink = ep->d_type == DT_LNK;
// zbieranie bardziej zaawansowanych informacji o pliku
struct stat file_stat;
stat(file->path, &file_stat);
file->size = file_stat.st_size;
file->last_modificiation_time = file_stat.st_mtime;
file->last_access_time = file_stat.st_atime;
// pobieranie informacji nt. symlinków
if (file->is_symlink) {
char* relative_path = malloc(MAX_POSIX_FILENAME_LEN);
size_t buf = readlink(file->path, relative_path, MAX_POSIX_FILENAME_LEN);
relative_path[buf] = '\0';
if (buf) {
struct stat link_stat;
struct tree_file* symlink_dest = malloc(sizeof(tree_file));
// nazwa wyswietlana zlimitowana jest
symlink_dest->name = relative_path;
// absolutna ścieżka do symlinka
// ścieżka relatywna ./test prefixowana jest jeszcze z nazwą pliku
// czyli ./nazwa_pliku/./test i z tego liczona jest absolutna ściezka
char* fixed_relative_path = join_paths(path, relative_path);
char* absolute_path = malloc(PATH_MAX + 1);
realpath(fixed_relative_path, absolute_path);
absolute_path[PATH_MAX] = '\0';
symlink_dest->path = absolute_path;
free(fixed_relative_path);
// żeby podczas release się nie zawiesiło
symlink_dest->is_symlink = false;
symlink_dest->symlink_dest = NULL;
int stat_result = stat(absolute_path, &link_stat);
if (stat_result == 0)
symlink_dest->is_dir = S_ISDIR(link_stat.st_mode);
else
symlink_dest->is_dir = false;
// przypisanie pliku
file->symlink_dest = symlink_dest;
} else {
// jeśli coś poszło nie tak :(
free(relative_path);
}
}
// wrzucenie itemka na stos
v_stack_push(&files, (void*) file);
}
closedir(dp);
return files;
}
/**
* Usuwanie stosu z plikami, ścieżki są dynamicznie alokowane
*/
void tree_free_file(tree_file* file) {
free(file->path);
free(file->name);
if (file->symlink_dest != NULL)
tree_free_file(file->symlink_dest);
free(file);
}
void tree_release_files(v_stack* stk) {
for (int i = 0; i < stk->count; ++i) {
struct tree_file* file = (tree_file*)stk->data[i];
tree_free_file(file);
}
v_stack_release(stk, false);
}
/**
* Rysuje drzewo we wskazanej ścieżce
*/
int tree_recursive_print(
const char* path,
struct v_stack* parents, // przechowuje flagi czy parent jest ostatnim elementem
struct tree_print_flags* flags,
struct tree_stats* stats) {
int level = parents->count;
if (level == flags->max_level)
return -1;
// lista zawierająca listę rodziców przetwarzanego wierzchołka
struct v_stack stk = tree_list_files(path, flags);
// aktualny katalog
if (!level)
printf("%s\n", path);
for (int i = 0; i < stk.count; ++i) {
const tree_file* file = (tree_file*) stk.data[i];
bool last_file = i == stk.count - 1;
// wyświetlanie "|" na poczatku linii levelu
for (int i = 0; i < level; ++i) {
bool is_last_parent = (bool) parents->data[i];
printf(
"%s%*s",
// rozpoczęcie linii, jeśli level jest ostatni
// to nie wyświetlaj separatora
(is_last_parent ? " " : TREE_ROW_CHARACTER),
// %*s powtarza spację
TREE_LEVEL_SPACING_LEN, "");
}
// wyświetlanie "|--- " do pliku
printf(
"%s%s ",
// znak rozpoczynający linię
last_file
? TREE_EDGE_TERMINATOR_CHARACTER
: TREE_EDGE_CHARACTER,
// znak linii
TREE_LINE_CHARACTER""TREE_LINE_CHARACTER);
// wyświetlenie i formatowanie nazwy pliku
// todo: Symlinki i formatowanie nazwy
const char* file_title = file->name;
// wyświetlanie całych ścieżek
if (flags->print_full_path)
file_title = file->path;
// wyświetlanie symlinka
if (file->is_symlink && file->symlink_dest) {
const tree_file* dest_file = file->symlink_dest;
printf("\33[1;31m%s\33[m -> ", file->path);
if (dest_file->is_dir) {
printf("\33[1;34m%s\33[m", dest_file->name);
if (flags->follow_symlinks)
printf(" [follow]");
printf("\n");
} else
printf("%s\n", dest_file->name);
} else if (file->is_dir)
printf("\33[1;34m%s\33[m\n", file->path);
else
printf("%s\n", file->path);
// jeśli to ścieżka to rekursywnie pokaż następny level
// todo: Follow symlinks
if (file->is_dir) {
stats->dir_count++;
// wrzuca na stos info czy parent jest ostatni
v_stack_push(parents, (void*) last_file);
tree_recursive_print(
file->path,
parents,
flags,
stats);
v_stack_pop(parents, false);
} else {
stats->files_count++;
// jeśli symlink i pozwala na follow
if (file->is_symlink && file->symlink_dest->is_dir && flags->follow_symlinks) {
v_stack_push(parents, (void*) last_file);
tree_recursive_print(
file->symlink_dest->path,
parents,
flags,
stats);
v_stack_pop(parents, false);
}
}
}
tree_release_files(&stk);
return 0;
}
/**
* Główna funkcja wyświetlająca i podsumowująca drzewo
*/
void tree_print(
const char* path,
struct tree_print_flags* flags) {
struct tree_stats stats = {
.files_count = 0,
.dir_count = 0,
};
// rendering drzewa
struct v_stack parents = v_stack_init();
tree_recursive_print(path, &parents, flags, &stats);
v_stack_release(&parents, false);
// wyświetlanie ilości folderów
printf("\n");
if (stats.dir_count == 1)
printf("1 directory, ");
else
printf("%d directories, ", stats.dir_count);
// wyświetlanie ilości plików
if (stats.files_count == 1)
printf("1 file\n");
else
printf("%d files\n", stats.files_count);
}
/**
* Opcje:
* -d Dir onlly
* -L Max level
* -l Follow symlinks
* -f Print full path
*/
int main(int argc, char* argv[]) {
struct tree_print_flags flags = {
.print_full_path = true,
.dir_only = false,
.follow_symlinks = true,
.max_level = 4,
};
char* default_path = argv[1];
if (default_path == NULL)
default_path = ".";
tree_print(default_path, &flags);
return 0;
}