summaryrefslogtreecommitdiff
path: root/src/file.c
blob: 27db72010d34c075597b17cf4e6a943117379322 (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
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
/*
 * AUTHOR
 * N. Nielsen
 *
 * LICENSE
 * This software is in the public domain.
 *
 * The software is provided "as is", without warranty of any kind,
 * express or implied, including but not limited to the warranties
 * of merchantability, fitness for a particular purpose, and
 * noninfringement. In no event shall the author(s) be liable for any
 * claim, damages, or other liability, whether in an action of
 * contract, tort, or otherwise, arising from, out of, or in connection
 * with the software or the use or other dealings in the software.
 *
 * SUPPORT
 * Send bug reports to: <nielsen@memberwebs.com>
 */

#include <sys/stat.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "common/compat.h"
#include "file.h"


#if HAVE_UNISTD_H && HAVE_DIRENT_H

int is_dots(struct dirent* entry)
{
  return entry->d_name &&
    (!strcmp(entry->d_name, ".") || !strcmp(entry->d_name, ".."));
}

int dir_next(DIR* handle, const char* wildcard, struct dirent* entry)
{
	struct dirent* ent = 0;

#ifndef HAVE_FNMATCH
	if(wildcard != NULL)
	{
		errno = EOPNOTSUPPORTED;
		return 0;
	}
#endif

	if(!wildcard)
		wildcard = "*";

	do
	{
		ent = readdir(handle);
		if(ent == NULL)
		{
			errno = ENOENT;
			break;
		}
	}
#ifdef HAVE_FNMATCH
	while(is_dots(ent));
#else
	while(is_dots(ent) ||
          fnmatch(wildcard, ent->d_name, FNM_PATHNAME) == FNM_NOMATCH);
#endif

	if(ent)
		memcpy(entry, ent, sizeof(struct dirent));

	return ent != NULL;
}

DIR* dir_first(const char* folder, const char* wildcard, struct dirent* entry)
{
	DIR* handle = opendir((folder && strlen(folder) > 0)  ? folder : ".");
	if(handle == NULL)
		return INVALID_DIR;

	if(dir_next(handle, wildcard, entry))
		return handle;
	else
	{
		errno = ENOENT;
		dir_close(handle);
		return INVALID_DIR;
	}
}

void dir_close(DIR* handle)
{
	closedir(handle);
}


#else

#include <direct.h>
#include <io.h>

int is_dots(struct _finddata_t* findinfo)
{
  return findinfo->name &&
    (!strcmp(findinfo->name, ".") || !strcmp(findinfo->name, ".."));
}

static void copyDirStruct(struct _finddata_t* findinfo, struct dirent* entry)
{
	/* Copy the structure */
	memset(entry, 0, sizeof(struct dirent));
	entry->d_fileno = ~0;
	entry->d_reclen = ~0;
	strcpy(entry->d_name, findinfo->name);
	entry->d_namlen = strlen(findinfo->name);

	if(findinfo->attrib & _A_SUBDIR)
		entry->d_type |= DT_DIR;
	else
		entry->d_type |= DT_REG;
}

DIR* dir_first(const char* folder, const char* wildcard, struct dirent* entry)
{
	DIR* handle;
	char buff[MAX_PATH * 2];
	struct _finddata_t findinfo;

	if(!wildcard)
		wildcard = "*.*";

	/* Check against buffer overflow hacks */
	if(strlen(folder) + strlen(wildcard) + 1 > MAX_PATH * 2)
	{
		errno = ENAMETOOLONG;
		return INVALID_DIR;
	}

	if(!(handle = malloc(sizeof(DIR))))
	{
		errno = ENOMEM;
		return INVALID_DIR;
	}

	strcpy(buff, folder);
	strcat(buff, strlen(folder) ? "\\" : "");
	strcat(buff, wildcard);

	/* Okay get the first file */
	*handle = _findfirst(buff, &findinfo);

	if(*handle == -1)
	{
		free(handle);
		return INVALID_DIR;
	}

  /* We don't do dots */
  else if(is_dots(&findinfo))
  {
    if(dir_next(handle, wildcard, entry))
      return handle;

    errno = ENOENT;
    return INVALID_DIR;
  }

  /* Copy the first file */
	else
	{
		copyDirStruct(&findinfo, entry);
		return handle;
	}
}

int dir_next(DIR* handle, const char* wildcard, struct dirent* entry)
{
	struct _finddata_t findinfo;
	int ret = _findnext(*handle, &findinfo) == 0;
	if(ret)
  {
    if(is_dots(&findinfo))
      return dir_next(handle, wildcard, entry);
    else
		  copyDirStruct(&findinfo, entry);
  }

	return ret;
}

void dir_close(DIR* handle)
{
	if(handle)
	{
		_findclose(*handle);
		free(handle);
	}
}

#endif

const char* getFilename(const char* path)
{
	const char* filename = strrchr(path, '\\');
	const char* filename2 = strrchr(path, '/');
	if(filename2 > filename)
		filename = filename2;
	return filename ? filename : path;
}

const char* getExtension(const char* path)
{
	return strrchr(path, '.');
}

int isDots(const char* path)
{
	const char* filename = getFilename(path);
	return (filename[0] == '.' && (filename[1] == '.' || filename[1] == '\0'));
}

int isDirectory(const char* path)
{
	struct stat st;
	if(stat(path, &st) == -1)
		return 0;

	return (st.st_mode & S_IFDIR) ? 1 : 0;
}