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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
|
/* Copyright (c) 2016-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "istream.h"
#include "ostream.h"
#include "test-common.h"
#include "fs-test.h"
static struct fs *fs_test_alloc(void)
{
struct test_fs *fs;
fs = i_new(struct test_fs, 1);
fs->fs = fs_class_test;
i_array_init(&fs->iter_files, 32);
return &fs->fs;
}
static int
fs_test_init(struct fs *_fs ATTR_UNUSED, const char *args ATTR_UNUSED,
const struct fs_settings *set ATTR_UNUSED,
const char **error_r ATTR_UNUSED)
{
return 0;
}
static void fs_test_free(struct fs *_fs)
{
struct test_fs *fs = (struct test_fs *)_fs;
array_free(&fs->iter_files);
i_free(fs);
}
static enum fs_properties fs_test_get_properties(struct fs *_fs)
{
struct test_fs *fs = (struct test_fs *)_fs;
return fs->properties;
}
static struct fs_file *fs_test_file_alloc(void)
{
struct test_fs_file *file = i_new(struct test_fs_file, 1);
return &file->file;
}
static void
fs_test_file_init(struct fs_file *_file, const char *path,
enum fs_open_mode mode, enum fs_open_flags flags)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
file->file.path = i_strdup(path);
file->file.flags = flags;
file->mode = mode;
file->contents = buffer_create_dynamic(default_pool, 1024);
file->exists = TRUE;
file->seekable = TRUE;
file->wait_async = (flags & FS_OPEN_FLAG_ASYNC) != 0;
}
static void fs_test_file_deinit(struct fs_file *_file)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
fs_file_free(_file);
buffer_free(&file->contents);
i_free(file->file.path);
i_free(file);
}
static void fs_test_file_close(struct fs_file *_file)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
file->closed = TRUE;
}
static const char *fs_test_file_get_path(struct fs_file *_file)
{
return _file->path;
}
static void
fs_test_set_async_callback(struct fs_file *_file,
fs_file_async_callback_t *callback,
void *context)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
file->async_callback = callback;
file->async_context = context;
}
static void fs_test_wait_async(struct fs *_fs ATTR_UNUSED)
{
}
static void
fs_test_set_metadata(struct fs_file *_file, const char *key,
const char *value)
{
if (strcmp(key, FS_METADATA_WRITE_FNAME) == 0) {
i_free(_file->path);
_file->path = i_strdup(value);
} else {
fs_default_set_metadata(_file, key, value);
}
}
static int
fs_test_get_metadata(struct fs_file *_file,
enum fs_get_metadata_flags flags,
const ARRAY_TYPE(fs_metadata) **metadata_r)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
if ((flags & FS_GET_METADATA_FLAG_LOADED_ONLY) != 0) {
*metadata_r = &_file->metadata;
return 0;
}
if (file->wait_async) {
fs_file_set_error_async(_file);
return -1;
}
if (file->io_failure) {
errno = EIO;
return -1;
}
fs_metadata_init(_file);
*metadata_r = &_file->metadata;
return 0;
}
static bool fs_test_prefetch(struct fs_file *_file ATTR_UNUSED,
uoff_t length ATTR_UNUSED)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
file->prefetched = TRUE;
return TRUE;
}
static void fs_test_stream_destroyed(struct test_fs_file *file)
{
i_assert(file->input != NULL);
file->input = NULL;
}
static struct istream *
fs_test_read_stream(struct fs_file *_file, size_t max_buffer_size ATTR_UNUSED)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
struct istream *input;
i_assert(file->input == NULL);
if (!file->exists)
return i_stream_create_error(ENOENT);
if (file->io_failure)
return i_stream_create_error(EIO);
input = test_istream_create_data(file->contents->data,
file->contents->used);
i_stream_add_destroy_callback(input, fs_test_stream_destroyed, file);
if (!file->seekable)
input->seekable = FALSE;
file->input = input;
return input;
}
static void fs_test_write_stream(struct fs_file *_file)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
i_assert(_file->output == NULL);
buffer_set_used_size(file->contents, 0);
_file->output = o_stream_create_buffer(file->contents);
}
static int fs_test_write_stream_finish(struct fs_file *_file, bool success)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
o_stream_destroy(&_file->output);
if (file->wait_async) {
fs_file_set_error_async(_file);
return 0;
}
if (file->io_failure)
success = FALSE;
if (!success)
buffer_set_used_size(file->contents, 0);
return success ? 1 : -1;
}
static int
fs_test_lock(struct fs_file *_file, unsigned int secs ATTR_UNUSED,
struct fs_lock **lock_r)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
if (file->locked)
return 0;
file->locked = TRUE;
*lock_r = i_new(struct fs_lock, 1);
(*lock_r)->file = _file;
return 1;
}
static void fs_test_unlock(struct fs_lock *lock)
{
struct test_fs_file *file = (struct test_fs_file *)lock->file;
file->locked = FALSE;
i_free(lock);
}
static int fs_test_exists(struct fs_file *_file)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
if (file->wait_async) {
fs_file_set_error_async(_file);
return -1;
}
if (file->io_failure) {
errno = EIO;
return -1;
}
return file->exists ? 1 : 0;
}
static int fs_test_stat(struct fs_file *_file, struct stat *st_r)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
if (file->wait_async) {
fs_file_set_error_async(_file);
return -1;
}
if (file->io_failure) {
errno = EIO;
return -1;
}
if (!file->exists) {
errno = ENOENT;
return -1;
}
i_zero(st_r);
st_r->st_size = file->contents->used;
return 0;
}
static int fs_test_copy(struct fs_file *_src, struct fs_file *_dest)
{
struct test_fs_file *src;
struct test_fs_file *dest = (struct test_fs_file *)_dest;
if (_src != NULL)
dest->copy_src = test_fs_file_get(_src->fs, fs_file_path(_src));
src = dest->copy_src;
if (dest->wait_async) {
fs_file_set_error_async(_dest);
return -1;
}
dest->copy_src = NULL;
if (dest->io_failure) {
errno = EIO;
return -1;
}
if (!src->exists) {
errno = ENOENT;
return -1;
}
buffer_set_used_size(dest->contents, 0);
buffer_append_buf(dest->contents, src->contents, 0, SIZE_MAX);
dest->exists = TRUE;
return 0;
}
static int fs_test_rename(struct fs_file *_src, struct fs_file *_dest)
{
struct test_fs_file *src = (struct test_fs_file *)_src;
struct test_fs_file *dest = (struct test_fs_file *)_dest;
if (src->wait_async || dest->wait_async) {
fs_file_set_error_async(_dest);
return -1;
}
if (fs_test_copy(_src, _dest) < 0)
return -1;
src->exists = FALSE;
return 0;
}
static int fs_test_delete(struct fs_file *_file)
{
struct test_fs_file *file = (struct test_fs_file *)_file;
if (file->wait_async) {
fs_file_set_error_async(_file);
return -1;
}
if (!file->exists) {
errno = ENOENT;
return -1;
}
return 0;
}
static struct fs_iter *fs_test_iter_alloc(void)
{
struct test_fs_iter *iter = i_new(struct test_fs_iter, 1);
return &iter->iter;
}
static void
fs_test_iter_init(struct fs_iter *_iter, const char *path,
enum fs_iter_flags flags ATTR_UNUSED)
{
struct test_fs_iter *iter = (struct test_fs_iter *)_iter;
struct test_fs *fs = (struct test_fs *)_iter->fs;
iter->prefix = i_strdup(path);
iter->prefix_len = strlen(iter->prefix);
iter->prev_dir = i_strdup("");
array_sort(&fs->iter_files, i_strcmp_p);
}
static const char *fs_test_iter_next(struct fs_iter *_iter)
{
struct test_fs_iter *iter = (struct test_fs_iter *)_iter;
struct test_fs *fs = (struct test_fs *)_iter->fs;
const char *const *files, *p;
unsigned int count;
size_t len, prev_dir_len = strlen(iter->prev_dir);
files = array_get(&fs->iter_files, &count);
for (; iter->idx < count; iter->idx++) {
const char *fname = files[iter->idx];
if (strncmp(fname, iter->prefix, iter->prefix_len) != 0)
continue;
p = strrchr(fname, '/');
if ((_iter->flags & FS_ITER_FLAG_DIRS) == 0) {
if (p == NULL)
return fname;
if (p[1] == '\0')
continue; /* dir/ */
return p+1;
}
if (p == NULL)
continue;
len = p - fname;
if (len == 0)
continue;
if (len == prev_dir_len &&
strncmp(fname, iter->prev_dir, len) == 0)
continue;
i_free(iter->prev_dir);
iter->prev_dir = i_strndup(fname, len);
return iter->prev_dir;
}
return NULL;
}
static int fs_test_iter_deinit(struct fs_iter *_iter)
{
struct test_fs_iter *iter = (struct test_fs_iter *)_iter;
int ret = iter->failed ? -1 : 0;
i_free(iter->prefix);
return ret;
}
struct test_fs *test_fs_get(struct fs *fs)
{
while (strcmp(fs->name, "test") != 0) {
i_assert(fs->parent != NULL);
fs = fs->parent;
}
return (struct test_fs *)fs;
}
struct test_fs_file *test_fs_file_get(struct fs *fs, const char *path)
{
struct fs_file *file;
fs = &test_fs_get(fs)->fs;
for (file = fs->files;; file = file->next) {
i_assert(file != NULL);
if (strcmp(fs_file_path(file), path) == 0)
break;
}
return (struct test_fs_file *)file;
}
const struct fs fs_class_test = {
.name = "test",
.v = {
fs_test_alloc,
fs_test_init,
NULL,
fs_test_free,
fs_test_get_properties,
fs_test_file_alloc,
fs_test_file_init,
fs_test_file_deinit,
fs_test_file_close,
fs_test_file_get_path,
fs_test_set_async_callback,
fs_test_wait_async,
fs_test_set_metadata,
fs_test_get_metadata,
fs_test_prefetch,
NULL,
fs_test_read_stream,
NULL,
fs_test_write_stream,
fs_test_write_stream_finish,
fs_test_lock,
fs_test_unlock,
fs_test_exists,
fs_test_stat,
fs_test_copy,
fs_test_rename,
fs_test_delete,
fs_test_iter_alloc,
fs_test_iter_init,
fs_test_iter_next,
fs_test_iter_deinit,
NULL,
NULL,
}
};
|