aboutsummaryrefslogtreecommitdiff
path: root/src/file_win.c
blob: 15d2a61a79bca5acb0a54058637f60ed1fab61e3 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#include <bh/internal/file.h>

static const bh_io_table_t bh_file_table = {
    (int (*)(struct bh_io_s *, int)) bh_file_open_base,
    (void (*)(struct bh_io_s *)) bh_file_close_base,
    (int (*)(struct bh_io_s *)) bh_file_is_open_base,
    (size_t (*)(struct bh_io_s *, char *, size_t)) bh_file_read_base,
    (size_t (*)(struct bh_io_s *, const char *, size_t)) bh_file_write_base,
    (void (*)(struct bh_io_s *)) bh_file_flush_base,
    (int (*)(struct bh_io_s *, bh_off_t, int)) bh_file_seek_base,
    (bh_off_t (*)(struct bh_io_s *)) bh_file_size_base,
    (bh_off_t (*)(struct bh_io_s *)) bh_file_tell_base,
    (bh_off_t (*)(struct bh_io_s *)) bh_file_available_base,
    (void (*)(struct bh_io_s *)) bh_file_clear_base,
    (void (*)(struct bh_io_s *)) bh_file_destroy
};

bh_file_t *bh_file_new(const char *path)
{
    bh_file_t *result;

    /* Allocate and initialize file object */
    result = malloc(sizeof(*result));
    if (result && bh_file_init(result, path))
    {
        /* Something went wrong - free the file object */
        free(result);
        result = NULL;
    }

    return result;
}

void bh_file_free(bh_file_t *file)
{
    /* Destroy file object and free allocated memory */
    bh_file_destroy(file);
    free(file);
}

int bh_file_init(bh_file_t *file,
                 const char *path)
{
    /* Check if path is not empty */
    if (!path)
        return BH_INVALID;

    /* Fill file structure information */
    file->handle = INVALID_HANDLE_VALUE;
    file->mode = BH_IO_NONE;
    file->path = strdup(path);
    file->base.table = &bh_file_table;

    return BH_OK;
}

void bh_file_destroy(bh_file_t *file)
{
    /* Close the file and free allocated memory */
    bh_file_close(file);
    free(file->path);
}

int bh_file_open_base(bh_file_t *file,
                      int mode)
{
    DWORD access = 0, how = 0;

    /* Check if file is already openned */
    if (file->handle != INVALID_HANDLE_VALUE)
        return BH_OK;

    /* Determine read/write access flags */
    if (mode & BH_IO_READ)
        access |= GENERIC_READ;
    if (mode & BH_IO_WRITE)
        access |= GENERIC_WRITE;

    /* Determine open mode flags */
    switch (mode & (BH_IO_CREATE | BH_IO_OPEN))
    {
    case 0:             how = OPEN_ALWAYS;      break;
    case BH_IO_CREATE:  how = CREATE_NEW;       break;
    case BH_IO_OPEN:    how = OPEN_EXISTING;    break;
    }

    /* Save mode that we are in and open file */
    file->mode = mode;
    file->handle = CreateFileA(file->path, access, FILE_SHARE_READ, NULL, how, FILE_ATTRIBUTE_NORMAL, NULL);

    if (file->handle == INVALID_HANDLE_VALUE)
    {
        /* Error handling */
        switch (GetLastError())
        {
        case ERROR_FILE_EXISTS:     return BH_FOUND;
        case ERROR_FILE_NOT_FOUND:  return BH_NOT_FOUND;
        default:                    return BH_ERROR;
        }
    }

    /* Truncate file if needed */
    if (mode & BH_IO_TRUNCATE)
        SetEndOfFile(file->handle);

    return BH_OK;
}

void bh_file_close_base(bh_file_t *file)
{
    /* If file is opened - close it */
    if (file->handle != INVALID_HANDLE_VALUE)
        CloseHandle(file->handle);

    /* Reset handle and mode values */
    file->handle = INVALID_HANDLE_VALUE;
    file->mode = BH_IO_NONE;
}

int bh_file_is_open_base(bh_file_t *file)
{
    /* If handle is not INVALID_HANDLE_VALUE - file is open */
    return file->handle != INVALID_HANDLE_VALUE;
}


size_t bh_file_read_base(bh_file_t *file,
                         char *data,
                         size_t size)
{
    DWORD readed;

    /* Check if file is opened */
    if (file->handle == INVALID_HANDLE_VALUE)
    {
        file->base.flags |= BH_IO_ERROR;
        return 0;
    }

    /* Read data from the file */
    if (!ReadFile(file->handle, data, (DWORD)size, &readed, NULL))
    {
        file->base.flags |= BH_IO_ERROR;
        return 0;
    }

    /* Check if we reached end of file */
    if (!readed)
        file->base.flags |= BH_IO_EOF;
    else
        file->base.flags &= ~BH_IO_EOF;

    /* Return readed bytes */
    return readed;
}

size_t bh_file_write_base(bh_file_t *file,
                          const char *data,
                          size_t size)
{
    DWORD written;

    /* Check if file is opened */
    if (file->handle == INVALID_HANDLE_VALUE)
    {
        file->base.flags |= BH_IO_ERROR;
        return 0;
    }

    /* Adjust current position in the file to the end */
    if (file->mode & BH_IO_APPEND)
        bh_file_seek(file, 0, BH_IO_END);

    /* Write data to the file */
    if (!WriteFile(file->handle, data, (DWORD)size, &written, NULL))
    {
        file->base.flags |= BH_IO_ERROR;
        return 0;
    }

    /* Check for end of file */
    if (!written)
        file->base.flags |= BH_IO_EOF;
    else
        file->base.flags &= ~BH_IO_EOF;

    /* Write amount of bytes written */
    return written;
}

void bh_file_flush_base(bh_file_t *file)
{
    /* Check if file is opened */
    if (file->handle == INVALID_HANDLE_VALUE)
    {
        file->base.flags |= BH_IO_ERROR;
        return;
    }

    /* Flush OS buffers */
    FlushFileBuffers(file->handle);
}

int bh_file_seek_base(bh_file_t *file,
                      bh_off_t pos,
                      int dir)
{
    LARGE_INTEGER position;

    /* Check if file is opened */
    if (file->handle == INVALID_HANDLE_VALUE)
    {
        file->base.flags |= BH_IO_ERROR;
        return BH_ERROR;
    }

    /* Set read/write position in the file */
    position.QuadPart = pos;
    if (SetFilePointerEx(file->handle, position, NULL, dir))
        return BH_OK;

    return BH_ERROR;
}

bh_off_t bh_file_size_base(bh_file_t *file)
{
    LARGE_INTEGER size;

    /* Check if file is opened */
    if (file->handle == INVALID_HANDLE_VALUE)
    {
        file->base.flags |= BH_IO_ERROR;
        return -1;
    }

    /* Get current file size */
    if (GetFileSizeEx(file->handle, &size))
        return size.QuadPart;

    return -1;
}

bh_off_t bh_file_tell_base(bh_file_t *file)
{
    LARGE_INTEGER dummy, position;

    /* Check if file is opened */
    if (file->handle == INVALID_HANDLE_VALUE)
    {
        file->base.flags |= BH_IO_ERROR;
        return -1;
    }

    /* Readback current position in the file */
    dummy.QuadPart = 0;
    if (SetFilePointerEx(file->handle, dummy, &position, BH_IO_CURRENT))
        return position.QuadPart;

    return -1;
}

bh_off_t bh_file_available_base(bh_file_t *file)
{
    /* Get available bytes for reading */
    return bh_file_size_base(file) - bh_file_tell_base(file);
}

void bh_file_clear_base(bh_file_t *file)
{
    file->base.flags &= ~BH_IO_ERROR;
}