summaryrefslogtreecommitdiffstats
path: root/firmware/target/hosted/filesystem-win32.h
blob: 1d8f2749f96c165fe2dcde271950a284c52c9530 (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
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2014 by Michael Sevakis
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#ifndef _FILESYSTEM_WIN32_H_
#define _FILESYSTEM_WIN32_H_

#ifndef OSFUNCTIONS_DECLARED

#ifdef __MINGW32__
/* filesystem-win32.c contains some string functions that could be useful
 * elsewhere; just move them away to unicode.c or something if they prove
 * so. */
size_t strlcpy_ucs2utf8(char *buffer, const unsigned short *ucs,
                        size_t bufsize);

#define strlcpy_from_os strlcpy_ucs2utf8
#endif /* __MINGW32__ */

#endif /* !OSFUNCTIONS_DECLARED */

#endif /* _FILESYSTEM_WIN32_H_ */

#ifdef __MINGW32__

#ifdef _FILE_H_
#ifndef _FILESYSTEM_WIN32__FILE_H_
#define _FILESYSTEM_WIN32__FILE_H_

#include <unistd.h>
#include <sys/stat.h>

#define OS_STAT_T       struct _stat

#ifndef OSFUNCTIONS_DECLARED
/* Wrap for off_t <=> long conversions */
static inline off_t os_filesize_(int osfd)
    { return _filelength(osfd); }
static inline int os_ftruncate_(int osfd, off_t length)
    { return _chsize(osfd, length); }

#define os_filesize     os_filesize_
#define os_ftruncate    os_ftruncate_
#define os_fsync        _commit
#define os_fstat        _fstat
#define os_close        close
#define os_lseek        lseek
#ifndef os_read
#define os_read         read
#endif
#ifndef os_write
#define os_write        write
#endif

/* These need string type conversion from utf8 to ucs2; that's done inside */
int os_open(const char *ospath, int oflag, ...);
int os_creat(const char *ospath, mode_t mode);
int os_stat(const char *ospath, struct _stat *s);
int os_remove(const char *ospath);
int os_rename(const char *osold, const char *osnew);

#endif /* !OSFUNCTIONS_DECLARED */

#endif /* _FILESYSTEM_WIN32__FILE_H_ */
#endif /* _FILE_H_ */

#ifdef _DIR_H_
#ifndef _FILESYSTEM_WIN32__DIR_H_
#define _FILESYSTEM_WIN32__DIR_H_

#include <dirent.h>

#define OS_DIRENT_CONVERT /* needs string conversion */
#define OS_DIR_T        _WDIR
#define OS_DIRENT_T     struct _wdirent

#ifndef OSFUNCTIONS_DECLARED

_WDIR * os_opendir(const char *osdirname);
int os_opendirfd(const char *osdirname);
#define os_readdir      _wreaddir
#define os_closedir     _wclosedir
int os_mkdir(const char *ospath, mode_t mode);
int os_rmdir(const char *ospath);

#endif /* OSFUNCTIONS_DECLARED */

#endif /* _FILESYSTEM_WIN32__DIR_H_ */
#endif /* _DIR_H_ */

#else /* !__MINGW32__ */

#include "filesystem-unix.h"

#endif /* __MINGW32__ */