Flush (work in progress)
[mono.git] / support / dirent.c
1 /*
2  * <dirent.h> wrapper functions.
3  *
4  * Authors:
5  *   Jonathan Pryor (jonpryor@vt.edu)
6  *
7  * Copyright (C) 2004-2005 Jonathan Pryor
8  */
9
10 #include <dirent.h>
11 #include <errno.h>
12 #include <string.h>
13 #include <stdlib.h>
14 #include <limits.h>
15 #include <unistd.h>
16
17 #include "map.h"
18 #include "mph.h"
19
20 #if defined (PATH_MAX) && defined (NAME_MAX)
21         #define MPH_PATH_MAX MAX(PATH_MAX, NAME_MAX)
22 #elif defined (PATH_MAX)
23         #define MPH_PATH_MAX PATH_MAX
24 #elif defined (NAME_MAX)
25         #define MPH_PATH_MAX NAME_MAX
26 #else /* !defined PATH_MAX && !defined NAME_MAX */
27         #define MPH_PATH_MAX 2048
28 #endif
29
30 G_BEGIN_DECLS
31
32 #if HAVE_SEEKDIR
33 gint32
34 Mono_Posix_Syscall_seekdir (void *dir, mph_off_t offset)
35 {
36         mph_return_if_off_t_overflow (offset);
37
38         seekdir ((DIR*) dir, (off_t) offset);
39
40         return 0;
41 }
42 #endif  /* def HAVE_SEEKDIR */
43
44 #if HAVE_TELLDIR
45 mph_off_t
46 Mono_Posix_Syscall_telldir (void *dir)
47 {
48         return telldir ((DIR*) dir);
49 }
50 #endif  /* def HAVE_TELLDIR */
51
52 static void
53 copy_dirent (struct Mono_Posix_Syscall__Dirent *to, struct dirent *from)
54 {
55         memset (to, 0, sizeof(*to));
56
57         to->d_ino    = from->d_ino;
58         to->d_name   = strdup (from->d_name);
59
60 #ifdef HAVE_STRUCT_DIRENT_D_OFF
61         to->d_off    = from->d_off;
62 #endif
63 #ifdef HAVE_STRUCT_DIRENT_D_RECLEN
64         to->d_reclen = from->d_reclen;
65 #endif
66 #ifdef HAVE_STRUCT_DIRENT_D_TYPE
67         to->d_type   = from->d_type;
68 #endif
69 }
70
71 gint32
72 Mono_Posix_Syscall_readdir (void *dirp, struct Mono_Posix_Syscall__Dirent *entry)
73 {
74         struct dirent *d;
75
76         if (entry == NULL) {
77                 errno = EFAULT;
78                 return -1;
79         }
80
81         d = readdir (dirp);
82
83         if (d == NULL) {
84                 return -1;
85         }
86
87         copy_dirent (entry, d);
88
89         return 0;
90 }
91
92 gint32
93 Mono_Posix_Syscall_readdir_r (void *dirp, struct Mono_Posix_Syscall__Dirent *entry, void **result)
94 {
95         struct dirent *_entry = malloc (sizeof (struct dirent) + MPH_PATH_MAX + 1);
96         int r;
97
98         r = readdir_r (dirp, _entry, (struct dirent**) result);
99
100         if (r == 0 && *result != NULL) {
101                 copy_dirent (entry, _entry);
102         }
103
104         free (_entry);
105
106         return r;
107 }
108
109 int
110 Mono_Posix_Syscall_rewinddir (void* dir)
111 {
112         rewinddir (dir);
113         return 0;
114 }
115
116 G_END_DECLS
117
118 /*
119  * vim: noexpandtab
120  */