Subversion Repositories Tewi

Rev

Rev 215 | Rev 255 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21 nishi 1
/* $Id: dir.c 219 2024-10-02 20:40:37Z nishi $ */
2
 
3
#include "cm_dir.h"
4
 
5
#include "cm_string.h"
6
 
7
#include <sys/stat.h>
219 nishi 8
#if !defined(_MSC_VER) && !defined(__WATCOMC__)
21 nishi 9
#include <dirent.h>
219 nishi 10
#elif defined(__WATCOMC__)
11
#include <direct.h>
212 nishi 12
#endif
21 nishi 13
#include <stdlib.h>
14
#include <string.h>
15
 
22 nishi 16
int cm_sort(const void* _a, const void* _b) {
21 nishi 17
	char* a = *(char**)_a;
18
	char* b = *(char**)_b;
19
	return strcmp(a, b);
20
}
21
 
22 nishi 22
char** cm_scandir(const char* path) {
215 nishi 23
#if defined(_MSC_VER) || defined(__BORLANDC__)
212 nishi 24
	return NULL;
25
#else
21 nishi 26
	DIR* dir = opendir(path);
22 nishi 27
	if(dir != NULL) {
21 nishi 28
		char** r = malloc(sizeof(*r));
212 nishi 29
		struct dirent* d;
21 nishi 30
		r[0] = NULL;
22 nishi 31
		while((d = readdir(dir)) != NULL) {
32
			if(strcmp(d->d_name, ".") != 0 && strcmp(d->d_name, "..") != 0) {
21 nishi 33
				struct stat s;
34
				char* p = cm_strcat3(path, "/", d->d_name);
35
				stat(p, &s);
36
				free(p);
37
 
38
				char** old = r;
39
				int i;
22 nishi 40
				for(i = 0; old[i] != NULL; i++)
41
					;
21 nishi 42
				r = malloc(sizeof(*r) * (i + 2));
43
				for(i = 0; old[i] != NULL; i++) r[i] = old[i];
44
				r[i] = cm_strcat(d->d_name, S_ISDIR(s.st_mode) ? "/" : "");
45
				r[i + 1] = NULL;
46
				free(old);
47
			}
48
		}
49
		int len;
22 nishi 50
		for(len = 0; r[len] != NULL; len++)
51
			;
21 nishi 52
		qsort(r, len, sizeof(char*), cm_sort);
22 nishi 53
 
54
		char** old = r;
55
		int i;
56
		for(i = 0; old[i] != NULL; i++)
57
			;
58
		r = malloc(sizeof(*r) * (i + 2));
59
		for(i = 0; old[i] != NULL; i++) r[i + 1] = old[i];
60
		r[0] = cm_strdup("../");
61
		r[i + 1] = NULL;
62
		free(old);
63
 
150 nishi 64
		closedir(dir);
65
 
21 nishi 66
		return r;
22 nishi 67
	} else {
21 nishi 68
		return NULL;
69
	}
212 nishi 70
#endif
21 nishi 71
}