aboutsummaryrefslogtreecommitdiffstats
path: root/src/tree.c
blob: 387ef8b5b9b8a6a9e9bc150d17731a221228a114 (plain)
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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <dirent.h>
#include <sys/stat.h>

#include "tree.h"
#include "xstd.h"

#define ANSIC_RST  "\x1B[0m"
#define ANSIC_BBLU  "\x1B[34;1m"
#define ANSIC_BGRN  "\x1B[32;1m"

static void entries_sort(char **entries, const int size)
{
	int i, j;
	char *temp;
	for(i = 0; i < size; i++) {
		for(j = i + 1; j < size; j++) {
			if(strcmp(entries[i], entries[j]) > 0)
			{
				temp = entries[i];
				entries[i] = entries[j];
				entries[j] = temp;
			}
		}
	}
}

static int is_dir(const char *path)
{
	struct stat buffer;
	if(stat(path, &buffer))
		return 0;
	return S_ISDIR(buffer.st_mode);
}

static int count_dir_entries(const char *path)
{
	int counter = 0;
	DIR *dir;
	struct dirent *dir_entry;

	dir = opendir(path);
	if(dir == NULL) {
		fprintf(stderr, "opendir() failed\n");
		return -1;
	}

	errno = 0;
	while((dir_entry = readdir(dir))) {
		if(dir_entry->d_name[0] == '.')
			continue;
		counter++;
	}
	if(errno) {
		fprintf(stderr, "readdir() failed\n");
		return -1;
	}
	closedir(dir);
	return counter;
}

int tree(const char *path, const char *prefix)
{
	DIR *main_dir;
	struct dirent *temp_dirent;
	char **entries;
	char *pointer, *prefix_depth;
	int cnt_ent, i;

	cnt_ent = count_dir_entries(path);
	if(cnt_ent == -1)
		return 1;
	entries = malloc(sizeof(char *) * cnt_ent);

	main_dir = opendir(path);
	if(main_dir == NULL) {
		perror("opendir");
		return 1;
	}

	i = 0;
	while((temp_dirent = readdir(main_dir))) {
		char *file_name = temp_dirent->d_name;
		if(file_name[0] == '.')
			continue;
		entries[i] = malloc(sizeof(char) * (strlen(file_name) + 1));
		strcpy(entries[i], file_name);
		i++;
	}
	closedir(main_dir);
	if(errno) {
		perror("opendir");
		return 1;
	}

	entries_sort(entries, cnt_ent);
	for(i = 0; i < cnt_ent; i++) {
		char *full_path;
		if(i == cnt_ent - 1) {
			pointer = "└── ";
			prefix_depth = "    ";
		}
		else {
			pointer = "├── ";
			prefix_depth = "│   ";
		}

		full_path = xstrcat(path, entries[i], "/");
		if(is_dir(full_path)) {
			printf("%s%s%s%s%s\n", prefix, pointer, ANSIC_BBLU,
				entries[i], ANSIC_RST);

			prefix_depth = xstrcat(prefix, prefix_depth, NULL);
			tree(full_path, prefix_depth);
			free(prefix_depth);
		}
		else
			printf("%s%s%s\n", prefix, pointer, entries[i]);

		free(entries[i]);
		free(full_path);
	}

	free(entries);
	return 0;
}