65afdb31d786f01475530e1d15ed21ff2c069feb
[mono.git] / mono / metadata / w32file.h
1 /**
2  * \file
3  * File IO internal calls
4  *
5  * Authors:
6  *      Dick Porter (dick@ximian.com)
7  *      Dan Lewis (dihlewis@yahoo.co.uk)
8  *
9  * (C) 2001 Ximian, Inc.
10  * Copyright 2012 Xamarin Inc (http://www.xamarin.com)
11  * Licensed under the MIT license. See LICENSE file in the project root for full license information.
12  */
13
14 #ifndef _MONO_METADATA_W32FILE_H_
15 #define _MONO_METADATA_W32FILE_H_
16
17 #include <config.h>
18 #include <glib.h>
19
20 #include <mono/metadata/object-internals.h>
21 #include <mono/utils/mono-compiler.h>
22
23 G_BEGIN_DECLS
24
25 /* This is a copy of System.IO.FileAccess */
26 typedef enum {
27         FileAccess_Read=0x01,
28         FileAccess_Write=0x02,
29         FileAccess_ReadWrite=FileAccess_Read|FileAccess_Write
30 } MonoFileAccess;
31
32 /* This is a copy of System.IO.FileMode */
33 typedef enum {
34         FileMode_CreateNew=1,
35         FileMode_Create=2,
36         FileMode_Open=3,
37         FileMode_OpenOrCreate=4,
38         FileMode_Truncate=5,
39         FileMode_Append=6
40 } MonoFileMode;
41
42 /* This is a copy of System.IO.FileShare */
43 typedef enum {
44         FileShare_None=0x0,
45         FileShare_Read=0x01,
46         FileShare_Write=0x02,
47         FileShare_ReadWrite=FileShare_Read|FileShare_Write,
48         FileShare_Delete=0x04
49 } MonoFileShare;
50
51 /* This is a copy of System.IO.FileOptions */
52 typedef enum {
53         FileOptions_None = 0,
54         FileOptions_Temporary = 1,              // Internal.   See note in System.IO.FileOptions
55         FileOptions_Encrypted = 0x4000,
56         FileOptions_DeleteOnClose = 0x4000000,
57         FileOptions_SequentialScan = 0x8000000,
58         FileOptions_RandomAccess = 0x10000000,
59         FileOptions_Asynchronous = 0x40000000,
60         FileOptions_WriteThrough = 0x80000000
61 } MonoFileOptions;
62
63 /* This is a copy of System.IO.SeekOrigin */
64 typedef enum {
65         SeekOrigin_Begin=0,
66         SeekOrigin_Current=1,
67         SeekOrigin_End=2
68 } MonoSeekOrigin;
69
70 /* This is a copy of System.IO.MonoIOStat */
71 typedef struct _MonoIOStat {
72         gint32 attributes;
73         gint64 length;
74         gint64 creation_time;
75         gint64 last_access_time;
76         gint64 last_write_time;
77 } MonoIOStat;
78
79 /* This is a copy of System.IO.FileAttributes */
80 typedef enum {
81         FileAttributes_ReadOnly=0x00001,
82         FileAttributes_Hidden=0x00002,
83         FileAttributes_System=0x00004,
84         FileAttributes_Directory=0x00010,
85         FileAttributes_Archive=0x00020,
86         FileAttributes_Device=0x00040,
87         FileAttributes_Normal=0x00080,
88         FileAttributes_Temporary=0x00100,
89         FileAttributes_SparseFile=0x00200,
90         FileAttributes_ReparsePoint=0x00400,
91         FileAttributes_Compressed=0x00800,
92         FileAttributes_Offline=0x01000,
93         FileAttributes_NotContentIndexed=0x02000,
94         FileAttributes_Encrypted=0x04000,
95         FileAttributes_MonoExecutable= (int) 0x80000000
96 } MonoFileAttributes;
97 /* This is not used anymore
98 typedef struct _MonoFSAsyncResult {
99         MonoObject obj;
100         MonoObject *state;
101         MonoBoolean completed;
102         MonoBoolean done;
103         MonoException *exc;
104         MonoWaitHandle *wait_handle;
105         MonoDelegate *async_callback;
106         MonoBoolean completed_synch;
107         MonoArray *buffer;
108         gint offset;
109         gint count;
110         gint original_count;
111         gint bytes_read;
112         MonoDelegate *real_cb;
113 } MonoFSAsyncResult;
114 */
115 /* System.IO.MonoIO */
116
117 extern MonoBoolean
118 ves_icall_System_IO_MonoIO_CreateDirectory (MonoString *path, gint32 *error);
119
120 extern MonoBoolean
121 ves_icall_System_IO_MonoIO_RemoveDirectory (MonoString *path, gint32 *error);
122
123 MonoArray *
124 ves_icall_System_IO_MonoIO_GetFileSystemEntries (MonoString *path,
125                                                  MonoString *path_with_pattern,
126                                                  gint mask, gint attrs,
127                                                  gint32 *error);
128
129 extern gpointer
130 ves_icall_System_IO_MonoIO_FindFirstFile (MonoString *path_with_pattern,
131                                                 MonoString **file_name,
132                                                 gint32 *file_attr,
133                                                 gint32 *ioerror);
134
135 extern MonoBoolean
136 ves_icall_System_IO_MonoIO_FindNextFile (gpointer hnd,
137                                                 MonoString **file_name,
138                                                 gint32 *file_attr,
139                                                 gint32 *ioerror);
140
141 extern MonoBoolean
142 ves_icall_System_IO_MonoIO_FindCloseFile (gpointer hnd);
143
144 extern MonoString *
145 ves_icall_System_IO_MonoIO_FindFirst (MonoString *path,
146                                       MonoString *path_with_pattern,
147                                       gint32 *result_mask,
148                                       gint32 *error,
149                                       gpointer *handle);
150 extern MonoString *
151 ves_icall_System_IO_MonoIO_FindNext (gpointer handle, gint32 *result_mask, gint32 *error);
152
153 extern int
154 ves_icall_System_IO_MonoIO_FindClose (gpointer handle);
155
156 extern MonoString *
157 ves_icall_System_IO_MonoIO_GetCurrentDirectory (gint32 *error);
158
159 extern MonoBoolean
160 ves_icall_System_IO_MonoIO_SetCurrentDirectory (MonoString *path,
161                                                 gint32 *error);
162
163 extern MonoBoolean
164 ves_icall_System_IO_MonoIO_MoveFile (MonoString *path, MonoString *dest,
165                                      gint32 *error);
166
167 extern MonoBoolean
168 ves_icall_System_IO_MonoIO_CopyFile (MonoString *path, MonoString *dest,
169                                      MonoBoolean overwrite, gint32 *error);
170
171 extern MonoBoolean
172 ves_icall_System_IO_MonoIO_DeleteFile (MonoString *path, gint32 *error);
173
174 extern gint32 
175 ves_icall_System_IO_MonoIO_GetFileAttributes (MonoString *path, gint32 *error);
176
177 extern MonoBoolean
178 ves_icall_System_IO_MonoIO_SetFileAttributes (MonoString *path, gint32 attrs,
179                                               gint32 *error);
180
181 extern gint32
182 ves_icall_System_IO_MonoIO_GetFileType (gpointer handle, gint32 *error);
183
184 extern MonoBoolean
185 ves_icall_System_IO_MonoIO_GetFileStat (MonoString *path, MonoIOStat *stat,
186                                         gint32 *error);
187
188 extern gpointer 
189 ves_icall_System_IO_MonoIO_Open (MonoString *filename, gint32 mode,
190                                  gint32 access_mode, gint32 share, gint32 options,
191                                  gint32 *error);
192
193 extern MonoBoolean
194 ves_icall_System_IO_MonoIO_Close (gpointer handle, gint32 *error);
195
196 extern gint32 
197 ves_icall_System_IO_MonoIO_Read (gpointer handle, MonoArray *dest,
198                                  gint32 dest_offset, gint32 count,
199                                  gint32 *error);
200
201 extern gint32 
202 ves_icall_System_IO_MonoIO_Write (gpointer handle, MonoArray *src,
203                                   gint32 src_offset, gint32 count,
204                                   gint32 *error);
205
206 extern gint64 
207 ves_icall_System_IO_MonoIO_Seek (gpointer handle, gint64 offset, gint32 origin,
208                                  gint32 *error);
209
210 extern MonoBoolean
211 ves_icall_System_IO_MonoIO_Flush (gpointer handle, gint32 *error);
212
213 extern gint64 
214 ves_icall_System_IO_MonoIO_GetLength (gpointer handle, gint32 *error);
215
216 extern MonoBoolean
217 ves_icall_System_IO_MonoIO_SetLength (gpointer handle, gint64 length,
218                                       gint32 *error);
219
220 extern MonoBoolean
221 ves_icall_System_IO_MonoIO_SetFileTime (gpointer handle, gint64 creation_time,
222                                         gint64 last_access_time,
223                                         gint64 last_write_time, gint32 *error);
224
225 extern gpointer 
226 ves_icall_System_IO_MonoIO_get_ConsoleOutput (void);
227
228 extern gpointer 
229 ves_icall_System_IO_MonoIO_get_ConsoleInput (void);
230
231 extern gpointer 
232 ves_icall_System_IO_MonoIO_get_ConsoleError (void);
233
234 extern MonoBoolean
235 ves_icall_System_IO_MonoIO_CreatePipe (gpointer *read_handle, gpointer *write_handle, gint32 *error);
236
237 extern MonoBoolean
238 ves_icall_System_IO_MonoIO_DuplicateHandle (gpointer source_process_handle, gpointer source_handle,
239                 gpointer target_process_handle, gpointer *target_handle, gint32 access, gint32 inherit, gint32 options, gint32 *error);
240
241 extern gunichar2 
242 ves_icall_System_IO_MonoIO_get_VolumeSeparatorChar (void);
243
244 extern gunichar2 
245 ves_icall_System_IO_MonoIO_get_DirectorySeparatorChar (void);
246
247 extern gunichar2 
248 ves_icall_System_IO_MonoIO_get_AltDirectorySeparatorChar (void);
249
250 extern gunichar2 
251 ves_icall_System_IO_MonoIO_get_PathSeparator (void);
252
253 extern MonoArray *
254 ves_icall_System_IO_MonoIO_get_InvalidPathChars (void);
255
256 extern void ves_icall_System_IO_MonoIO_Lock (gpointer handle, gint64 position,
257                                              gint64 length, gint32 *error);
258 extern void ves_icall_System_IO_MonoIO_Unlock (gpointer handle, gint64 position,
259                                                gint64 length, gint32 *error);
260
261 extern MonoBoolean
262 ves_icall_System_IO_MonoIO_ReplaceFile (MonoString *sourceFileName, MonoString *destinationFileName,
263                                         MonoString *destinationBackupFileName, MonoBoolean ignoreMetadataErrors,
264                                         gint32 *error);
265
266 #if defined (TARGET_IOS) || defined (TARGET_ANDROID)
267
268 MONO_RT_EXTERNAL_ONLY
269 extern gint64
270 mono_filesize_from_path (MonoString *path);
271
272 extern gint64
273 mono_filesize_from_fd (int fd);
274
275 #endif
276
277 void
278 ves_icall_System_IO_MonoIO_DumpHandles (void);
279
280 #if !defined(HOST_WIN32)
281
282 #define GENERIC_READ    0x80000000
283 #define GENERIC_WRITE   0x40000000
284 #define GENERIC_EXECUTE 0x20000000
285 #define GENERIC_ALL     0x10000000
286
287 #define FILE_SHARE_READ   0x00000001
288 #define FILE_SHARE_WRITE  0x00000002
289 #define FILE_SHARE_DELETE 0x00000004
290
291 #define CREATE_NEW        1
292 #define CREATE_ALWAYS     2
293 #define OPEN_EXISTING     3
294 #define OPEN_ALWAYS       4
295 #define TRUNCATE_EXISTING 5
296
297 #define FILE_ATTRIBUTE_READONLY            0x00000001
298 #define FILE_ATTRIBUTE_HIDDEN              0x00000002
299 #define FILE_ATTRIBUTE_SYSTEM              0x00000004
300 #define FILE_ATTRIBUTE_DIRECTORY           0x00000010
301 #define FILE_ATTRIBUTE_ARCHIVE             0x00000020
302 #define FILE_ATTRIBUTE_ENCRYPTED           0x00000040
303 #define FILE_ATTRIBUTE_NORMAL              0x00000080
304 #define FILE_ATTRIBUTE_TEMPORARY           0x00000100
305 #define FILE_ATTRIBUTE_SPARSE_FILE         0x00000200
306 #define FILE_ATTRIBUTE_REPARSE_POINT       0x00000400
307 #define FILE_ATTRIBUTE_COMPRESSED          0x00000800
308 #define FILE_ATTRIBUTE_OFFLINE             0x00001000
309 #define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
310 #define FILE_FLAG_OPEN_NO_RECALL           0x00100000
311 #define FILE_FLAG_OPEN_REPARSE_POINT       0x00200000
312 #define FILE_FLAG_POSIX_SEMANTICS          0x01000000
313 #define FILE_FLAG_BACKUP_SEMANTICS         0x02000000
314 #define FILE_FLAG_DELETE_ON_CLOSE          0x04000000
315 #define FILE_FLAG_SEQUENTIAL_SCAN          0x08000000
316 #define FILE_FLAG_RANDOM_ACCESS            0x10000000
317 #define FILE_FLAG_NO_BUFFERING             0x20000000
318 #define FILE_FLAG_OVERLAPPED               0x40000000
319 #define FILE_FLAG_WRITE_THROUGH            0x80000000
320
321 #define REPLACEFILE_WRITE_THROUGH       0x00000001
322 #define REPLACEFILE_IGNORE_MERGE_ERRORS 0x00000002
323
324 #define MAX_PATH 260
325
326 #define INVALID_SET_FILE_POINTER ((guint32) 0xFFFFFFFF)
327 #define INVALID_FILE_SIZE        ((guint32) 0xFFFFFFFF)
328 #define INVALID_FILE_ATTRIBUTES  ((guint32) 0xFFFFFFFF)
329
330 #define FILE_TYPE_UNKNOWN 0x0000
331 #define FILE_TYPE_DISK    0x0001
332 #define FILE_TYPE_CHAR    0x0002
333 #define FILE_TYPE_PIPE    0x0003
334 #define FILE_TYPE_REMOTE  0x8000
335
336 #define FILE_BEGIN   0
337 #define FILE_CURRENT 1
338 #define FILE_END     2
339
340 #define DRIVE_UNKNOWN     0
341 #define DRIVE_NO_ROOT_DIR 1
342 #define DRIVE_REMOVABLE   2
343 #define DRIVE_FIXED       3
344 #define DRIVE_REMOTE      4
345 #define DRIVE_CDROM       5
346 #define DRIVE_RAMDISK     6
347
348 typedef struct {
349         guint16 wYear;
350         guint16 wMonth;
351         guint16 wDayOfWeek;
352         guint16 wDay;
353         guint16 wHour;
354         guint16 wMinute;
355         guint16 wSecond;
356         guint16 wMilliseconds;
357 } SYSTEMTIME;
358
359 typedef struct {
360 #if G_BYTE_ORDER == G_BIG_ENDIAN
361         guint32 dwHighDateTime;
362         guint32 dwLowDateTime;
363 #else
364         guint32 dwLowDateTime;
365         guint32 dwHighDateTime;
366 #endif
367 } FILETIME;
368
369 typedef struct {
370         guint32 dwFileAttributes;
371         FILETIME ftCreationTime;
372         FILETIME ftLastAccessTime;
373         FILETIME ftLastWriteTime;
374         guint32 nFileSizeHigh;
375         guint32 nFileSizeLow;
376         guint32 dwReserved0;
377         guint32 dwReserved1;
378         gunichar2 cFileName [MAX_PATH];
379         gunichar2 cAlternateFileName [14];
380 } WIN32_FIND_DATA;
381
382 #endif /* !defined(HOST_WIN32) */
383
384 void
385 mono_w32file_init (void);
386
387 void
388 mono_w32file_cleanup (void);
389
390 gpointer
391 mono_w32file_create(const gunichar2 *name, guint32 fileaccess, guint32 sharemode, guint32 createmode, guint32 attrs);
392
393 gboolean
394 mono_w32file_close (gpointer handle);
395
396 gboolean
397 mono_w32file_delete (const gunichar2 *name);
398
399 gboolean
400 mono_w32file_read (gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread);
401
402 gboolean
403 mono_w32file_write (gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten);
404
405 gboolean
406 mono_w32file_flush (gpointer handle);
407
408 gboolean
409 mono_w32file_truncate (gpointer handle);
410
411 guint32
412 mono_w32file_seek (gpointer handle, gint32 movedistance, gint32 *highmovedistance, guint32 method);
413
414 gboolean
415 mono_w32file_move (gunichar2 *path, gunichar2 *dest, gint32 *error);
416
417 gboolean
418 mono_w32file_copy (gunichar2 *path, gunichar2 *dest, gboolean overwrite, gint32 *error);
419
420 gboolean
421 mono_w32file_lock (gpointer handle, gint64 position, gint64 length, gint32 *error);
422
423 gboolean
424 mono_w32file_replace (gunichar2 *destinationFileName, gunichar2 *sourceFileName, gunichar2 *destinationBackupFileName, guint32 flags, gint32 *error);
425
426 gboolean
427 mono_w32file_unlock (gpointer handle, gint64 position, gint64 length, gint32 *error);
428
429 gpointer
430 mono_w32file_get_console_output (void);
431
432 gpointer
433 mono_w32file_get_console_error (void);
434
435 gpointer
436 mono_w32file_get_console_input (void);
437
438 gint64
439 mono_w32file_get_file_size (gpointer handle, gint32 *error);
440
441 gint
442 mono_w32file_get_type (gpointer handle);
443
444 gboolean
445 mono_w32file_get_times (gpointer handle, FILETIME *create_time, FILETIME *access_time, FILETIME *write_time);
446
447 gboolean
448 mono_w32file_set_times (gpointer handle, const FILETIME *create_time, const FILETIME *access_time, const FILETIME *write_time);
449
450 gboolean
451 mono_w32file_filetime_to_systemtime (const FILETIME *file_time, SYSTEMTIME *system_time);
452
453 gpointer
454 mono_w32file_find_first (const gunichar2 *pattern, WIN32_FIND_DATA *find_data);
455
456 gboolean
457 mono_w32file_find_next (gpointer handle, WIN32_FIND_DATA *find_data);
458
459 gboolean
460 mono_w32file_find_close (gpointer handle);
461
462 gboolean
463 mono_w32file_create_directory (const gunichar2 *name);
464
465 gboolean
466 mono_w32file_remove_directory (const gunichar2 *name);
467
468 guint32
469 mono_w32file_get_attributes (const gunichar2 *name);
470
471 gboolean
472 mono_w32file_get_attributes_ex (const gunichar2 *name, MonoIOStat *stat);
473
474 gboolean
475 mono_w32file_set_attributes (const gunichar2 *name, guint32 attrs);
476
477 guint32
478 mono_w32file_get_cwd (guint32 length, gunichar2 *buffer);
479
480 gboolean
481 mono_w32file_set_cwd (const gunichar2 *path);
482
483 gboolean
484 mono_w32file_create_pipe (gpointer *readpipe, gpointer *writepipe, guint32 size);
485
486 gint32
487 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf);
488
489 gboolean
490 mono_w32file_get_disk_free_space (const gunichar2 *path_name, guint64 *free_bytes_avail, guint64 *total_number_of_bytes, guint64 *total_number_of_free_bytes);
491
492 guint32
493 mono_w32file_get_drive_type (const gunichar2 *root_path_name);
494
495 gboolean
496 mono_w32file_get_volume_information (const gunichar2 *path, gunichar2 *volumename, gint volumesize, gint *outserial, gint *maxcomp, gint *fsflags, gunichar2 *fsbuffer, gint fsbuffersize);
497
498 G_END_DECLS
499
500 #endif /* _MONO_METADATA_W32FILE_H_ */