summaryrefslogtreecommitdiff
path: root/compat/win32/dirent.c
blob: 7a0debe51bcad9f8d46c9c675aa3a6bbaaf7f537 (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
#include "../git-compat-util.h"
#include "dirent.h"
 
struct DIR {
	struct dirent dd_dir; /* includes d_type */
	HANDLE dd_handle;     /* FindFirstFile handle */
	int dd_stat;          /* 0-based index */
	char dd_name[1];      /* extend struct */
};
 
DIR *opendir(const char *name)
{
	DWORD attrs = GetFileAttributesA(name);
	int len;
	DIR *p;
 
	/* check for valid path */
	if (attrs == INVALID_FILE_ATTRIBUTES) {
		errno = ENOENT;
		return NULL;
	}
 
	/* check if it's a directory */
	if (!(attrs & FILE_ATTRIBUTE_DIRECTORY)) {
		errno = ENOTDIR;
		return NULL;
	}
 
	/* check that the pattern won't be too long for FindFirstFileA */
	len = strlen(name);
	if (is_dir_sep(name[len - 1]))
		len--;
	if (len + 2 >= MAX_PATH) {
		errno = ENAMETOOLONG;
		return NULL;
	}
 
	p = malloc(sizeof(DIR) + len + 2);
	if (!p)
		return NULL;
 
	memset(p, 0, sizeof(DIR) + len + 2);
	strcpy(p->dd_name, name);
	p->dd_name[len] = '/';
	p->dd_name[len+1] = '*';
 
	p->dd_handle = INVALID_HANDLE_VALUE;
	return p;
}
 
struct dirent *readdir(DIR *dir)
{
	WIN32_FIND_DATAA buf;
	HANDLE handle;
 
	if (!dir || !dir->dd_handle) {
		errno = EBADF; /* No set_errno for mingw */
		return NULL;
	}
 
	if (dir->dd_handle == INVALID_HANDLE_VALUE && dir->dd_stat == 0) {
		DWORD lasterr;
		handle = FindFirstFileA(dir->dd_name, &buf);
		lasterr = GetLastError();
		dir->dd_handle = handle;
		if (handle == INVALID_HANDLE_VALUE && (lasterr != ERROR_NO_MORE_FILES)) {
			errno = err_win_to_posix(lasterr);
			return NULL;
		}
	} else if (dir->dd_handle == INVALID_HANDLE_VALUE) {
		return NULL;
	} else if (!FindNextFileA(dir->dd_handle, &buf)) {
		DWORD lasterr = GetLastError();
		FindClose(dir->dd_handle);
		dir->dd_handle = INVALID_HANDLE_VALUE;
		/* POSIX says you shouldn't set errno when readdir can't
		   find any more files; so, if another error we leave it set. */
		if (lasterr != ERROR_NO_MORE_FILES)
			errno = err_win_to_posix(lasterr);
		return NULL;
	}
 
	/* We get here if `buf' contains valid data.  */
	strcpy(dir->dd_dir.d_name, buf.cFileName);
	++dir->dd_stat;
 
	/* Set file type, based on WIN32_FIND_DATA */
	dir->dd_dir.d_type = 0;
	if (buf.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
		dir->dd_dir.d_type |= DT_DIR;
	else
		dir->dd_dir.d_type |= DT_REG;
 
	return &dir->dd_dir;
}
 
int closedir(DIR *dir)
{
	if (!dir) {
		errno = EBADF;
		return -1;
	}
 
	if (dir->dd_handle != INVALID_HANDLE_VALUE)
		FindClose(dir->dd_handle);
	free(dir);
	return 0;
}