EncoderReplacementFallbackBuffer.Reset() did not really reset its internals.
[mono-project/dkf.git] / eglib / src / gdir-win32.c
blob0ae3fd41cf4565697baa8240e7d51243516426d7
1 /*
2 * Directory utility functions.
4 * Author:
5 * Gonzalo Paniagua Javier (gonzalo@novell.com)
7 * (C) 2006 Novell, Inc.
9 * Permission is hereby granted, free of charge, to any person obtaining
10 * a copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sublicense, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
17 * The above copyright notice and this permission notice shall be
18 * included in all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #include <glib.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <errno.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <io.h>
36 #include <winsock2.h>
38 struct _GDir {
39 HANDLE handle;
40 gchar* current;
41 gchar* next;
44 GDir *
45 g_dir_open (const gchar *path, guint flags, GError **error)
47 GDir *dir;
48 gunichar2* path_utf16;
49 gunichar2* path_utf16_search;
50 WIN32_FIND_DATAW find_data;
52 g_return_val_if_fail (path != NULL, NULL);
53 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
55 dir = g_new0 (GDir, 1);
56 path_utf16 = u8to16 (path);
57 path_utf16_search = g_malloc ((wcslen((wchar_t *) path_utf16) + 3)*sizeof(gunichar2));
58 wcscpy (path_utf16_search, path_utf16);
59 wcscat (path_utf16_search, L"\\*");
61 dir->handle = FindFirstFileW (path_utf16_search, &find_data);
62 if (dir->handle == INVALID_HANDLE_VALUE) {
63 if (error) {
64 gint err = errno;
65 *error = g_error_new (G_LOG_DOMAIN, g_file_error_from_errno (err), strerror (err));
67 g_free (path_utf16_search);
68 g_free (path_utf16);
69 g_free (dir);
70 return NULL;
72 g_free (path_utf16_search);
73 g_free (path_utf16);
75 while ((wcscmp ((wchar_t *) find_data.cFileName, L".") == 0) || (wcscmp ((wchar_t *) find_data.cFileName, L"..") == 0)) {
76 if (!FindNextFileW (dir->handle, &find_data)) {
77 if (error) {
78 gint err = errno;
79 *error = g_error_new (G_LOG_DOMAIN, g_file_error_from_errno (err), strerror (err));
81 g_free (dir);
82 return NULL;
86 dir->current = NULL;
87 dir->next = u16to8 (find_data.cFileName);
88 return dir;
91 const gchar *
92 g_dir_read_name (GDir *dir)
94 WIN32_FIND_DATAW find_data;
96 g_return_val_if_fail (dir != NULL && dir->handle != 0, NULL);
98 if (dir->current)
99 g_free (dir->current);
100 dir->current = NULL;
102 dir->current = dir->next;
104 if (!dir->current)
105 return NULL;
107 dir->next = NULL;
109 do {
110 if (!FindNextFileW (dir->handle, &find_data)) {
111 dir->next = NULL;
112 return dir->current;
114 } while ((wcscmp ((wchar_t *) find_data.cFileName, L".") == 0) || (wcscmp ((wchar_t *) find_data.cFileName, L"..") == 0));
116 dir->next = u16to8 (find_data.cFileName);
117 return dir->current;
120 void
121 g_dir_rewind (GDir *dir)
125 void
126 g_dir_close (GDir *dir)
128 g_return_if_fail (dir != NULL && dir->handle != 0);
130 if (dir->current)
131 g_free (dir->current);
132 dir->current = NULL;
133 if (dir->next)
134 g_free (dir->next);
135 dir->next = NULL;
136 FindClose (dir->handle);
137 dir->handle = 0;
138 g_free (dir);