fio-genzipf results output are slightly wrong, it doesn't help to understand how...
[fio.git] / file.h
CommitLineData
d6aed795
JA
1#ifndef FIO_FILE_H
2#define FIO_FILE_H
3
e2e58886 4#include <string.h>
ecc314ba 5#include "compiler/compiler.h"
d6aed795 6#include "io_ddir.h"
ecc314ba 7#include "flist.h"
9c6f6316 8#include "lib/zipf.h"
7ebd796f 9#include "lib/axmap.h"
8055e41d 10#include "lib/lfsr.h"
d6aed795
JA
11
12/*
13 * The type of object we are working on
14 */
15enum fio_filetype {
16 FIO_TYPE_FILE = 1, /* plain file */
17 FIO_TYPE_BD, /* block device */
18 FIO_TYPE_CHAR, /* character device */
19 FIO_TYPE_PIPE, /* pipe */
20};
21
22enum fio_file_flags {
23 FIO_FILE_open = 1 << 0, /* file is open */
24 FIO_FILE_closing = 1 << 1, /* file being closed */
25 FIO_FILE_extend = 1 << 2, /* needs extend */
26 FIO_FILE_done = 1 << 3, /* io completed to this file */
27 FIO_FILE_size_known = 1 << 4, /* size has been set */
28 FIO_FILE_hashed = 1 << 5, /* file is on hash */
ed47cbf7 29 FIO_FILE_partial_mmap = 1 << 6, /* can't do full mmap */
967d1b63
JA
30 FIO_FILE_axmap = 1 << 7, /* uses axmap */
31 FIO_FILE_lfsr = 1 << 8, /* lfsr is used */
d6aed795
JA
32};
33
34enum file_lock_mode {
35 FILE_LOCK_NONE,
36 FILE_LOCK_EXCLUSIVE,
37 FILE_LOCK_READWRITE,
38};
39
590aebda
JA
40/*
41 * roundrobin available files, or choose one at random, or do each one
42 * serially.
43 */
44enum {
45 FIO_FSERVICE_RANDOM = 1,
46 FIO_FSERVICE_RR = 2,
47 FIO_FSERVICE_SEQ = 3,
48};
49
a596f047
EG
50/*
51 * No pre-allocation when laying down files, or call posix_fallocate(), or
52 * call fallocate() with FALLOC_FL_KEEP_SIZE set.
53 */
54enum fio_fallocate_mode {
55 FIO_FALLOCATE_NONE = 1,
56 FIO_FALLOCATE_POSIX = 2,
57 FIO_FALLOCATE_KEEP_SIZE = 3,
58};
59
d6aed795
JA
60/*
61 * Each thread_data structure has a number of files associated with it,
62 * this structure holds state information for a single file.
63 */
64struct fio_file {
65 struct flist_head hash_list;
66 enum fio_filetype filetype;
67
0e238572 68 int fd;
e6c4d732 69 int shadow_fd;
93bcfd20 70#ifdef WIN32
03e20d68
BC
71 HANDLE hFile;
72 HANDLE ioCP;
73#endif
d6aed795
JA
74
75 /*
76 * filename and possible memory mapping
77 */
d6aed795 78 unsigned int major, minor;
89ac1d48 79 int fileno;
d8f1f7d4 80 char *file_name;
d6aed795 81
d6aed795
JA
82 /*
83 * size of the file, offset into file, and io size from that offset
84 */
293b8c1f
JA
85 uint64_t real_file_size;
86 uint64_t file_offset;
87 uint64_t io_size;
d6aed795 88
f1dfb668
JA
89 /*
90 * Track last end and last start of IO for a given data direction
91 */
92 uint64_t last_pos[DDIR_RWDIR_CNT];
93 uint64_t last_start[DDIR_RWDIR_CNT];
d6aed795 94
293b8c1f
JA
95 uint64_t first_write;
96 uint64_t last_write;
44f29692 97
e943b878
JA
98 /*
99 * For use by the io engine
100 */
47f07ddc 101 uint64_t engine_data;
e943b878 102
d6aed795
JA
103 /*
104 * if io is protected by a semaphore, this is set
105 */
d7df1d13
JA
106 union {
107 struct fio_mutex *lock;
108 struct fio_rwlock *rwlock;
109 };
d6aed795
JA
110
111 /*
967d1b63 112 * block map or LFSR for random io
d6aed795 113 */
967d1b63
JA
114 union {
115 struct axmap *io_axmap;
116 struct fio_lfsr lfsr;
117 };
8055e41d 118
9c6f6316
JA
119 /*
120 * Used for zipf random distribution
121 */
122 struct zipf_state zipf;
123
d6aed795
JA
124 int references;
125 enum fio_file_flags flags;
126
127 struct disk_util *du;
128};
129
e19ccb55
JA
130#define FILE_ENG_DATA(f) ((void *) (uintptr_t) (f)->engine_data)
131#define FILE_SET_ENG_DATA(f, data) \
132 ((f)->engine_data = (uintptr_t) (data))
133
bcbfeefa
CE
134struct file_name {
135 struct flist_head list;
136 char *filename;
137};
138
d6aed795
JA
139#define FILE_FLAG_FNS(name) \
140static inline void fio_file_set_##name(struct fio_file *f) \
141{ \
bea5c23d 142 (f)->flags = (enum fio_file_flags) ((f)->flags | FIO_FILE_##name); \
d6aed795
JA
143} \
144static inline void fio_file_clear_##name(struct fio_file *f) \
145{ \
bea5c23d 146 (f)->flags = (enum fio_file_flags) ((f)->flags & ~FIO_FILE_##name); \
d6aed795
JA
147} \
148static inline int fio_file_##name(struct fio_file *f) \
149{ \
150 return ((f)->flags & FIO_FILE_##name) != 0; \
151}
152
153FILE_FLAG_FNS(open);
154FILE_FLAG_FNS(closing);
155FILE_FLAG_FNS(extend);
156FILE_FLAG_FNS(done);
157FILE_FLAG_FNS(size_known);
158FILE_FLAG_FNS(hashed);
ed47cbf7 159FILE_FLAG_FNS(partial_mmap);
967d1b63
JA
160FILE_FLAG_FNS(axmap);
161FILE_FLAG_FNS(lfsr);
d6aed795
JA
162#undef FILE_FLAG_FNS
163
4cd02b3f
JA
164/*
165 * File setup/shutdown
166 */
167struct thread_data;
168extern void close_files(struct thread_data *);
169extern void close_and_free_files(struct thread_data *);
bedc9dc2 170extern uint64_t get_start_offset(struct thread_data *, struct fio_file *);
4cd02b3f
JA
171extern int __must_check setup_files(struct thread_data *);
172extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
173extern int __must_check generic_open_file(struct thread_data *, struct fio_file *);
174extern int __must_check generic_close_file(struct thread_data *, struct fio_file *);
175extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
1ccc6dc7 176extern int __must_check file_lookup_open(struct fio_file *f, int flags);
4cd02b3f 177extern int __must_check pre_read_files(struct thread_data *);
5903e7b7 178extern int add_file(struct thread_data *, const char *, int, int);
49ffb4a2 179extern int add_file_exclusive(struct thread_data *, const char *);
4cd02b3f
JA
180extern void get_file(struct fio_file *);
181extern int __must_check put_file(struct thread_data *, struct fio_file *);
e8462bd8 182extern void put_file_log(struct thread_data *, struct fio_file *);
4cd02b3f
JA
183extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
184extern void unlock_file(struct thread_data *, struct fio_file *);
185extern void unlock_file_all(struct thread_data *, struct fio_file *);
186extern int add_dir_files(struct thread_data *, const char *);
187extern int init_random_map(struct thread_data *);
188extern void dup_files(struct thread_data *, struct thread_data *);
189extern int get_fileno(struct thread_data *, const char *);
190extern void free_release_files(struct thread_data *);
bcbfeefa 191extern void filesetup_mem_free(void);
33c48814 192void fio_file_reset(struct thread_data *, struct fio_file *);
002fe734 193int fio_files_done(struct thread_data *);
c592b9fe 194
d6aed795 195#endif