blob: 04c0d4536b4f16aa91ca58609de80c1f973228c7 [file] [log] [blame]
Jens Axboed6aed792009-06-03 08:41:15 +02001#ifndef FIO_FILE_H
2#define FIO_FILE_H
3
Jens Axboee2e58882011-01-04 08:36:06 +01004#include <string.h>
Bruce Cranecc314b2011-01-04 10:59:30 +01005#include "compiler/compiler.h"
Jens Axboed6aed792009-06-03 08:41:15 +02006#include "io_ddir.h"
Bruce Cranecc314b2011-01-04 10:59:30 +01007#include "flist.h"
Jens Axboed6aed792009-06-03 08:41:15 +02008
9/*
10 * The type of object we are working on
11 */
12enum fio_filetype {
13 FIO_TYPE_FILE = 1, /* plain file */
14 FIO_TYPE_BD, /* block device */
15 FIO_TYPE_CHAR, /* character device */
16 FIO_TYPE_PIPE, /* pipe */
17};
18
19enum fio_file_flags {
20 FIO_FILE_open = 1 << 0, /* file is open */
21 FIO_FILE_closing = 1 << 1, /* file being closed */
22 FIO_FILE_extend = 1 << 2, /* needs extend */
23 FIO_FILE_done = 1 << 3, /* io completed to this file */
24 FIO_FILE_size_known = 1 << 4, /* size has been set */
25 FIO_FILE_hashed = 1 << 5, /* file is on hash */
Jens Axboeed47cbf2009-07-03 22:52:38 +020026 FIO_FILE_partial_mmap = 1 << 6, /* can't do full mmap */
Jens Axboed6aed792009-06-03 08:41:15 +020027};
28
29enum file_lock_mode {
30 FILE_LOCK_NONE,
31 FILE_LOCK_EXCLUSIVE,
32 FILE_LOCK_READWRITE,
33};
34
35/*
Jens Axboe590aebd2009-06-03 08:54:00 +020036 * roundrobin available files, or choose one at random, or do each one
37 * serially.
38 */
39enum {
40 FIO_FSERVICE_RANDOM = 1,
41 FIO_FSERVICE_RR = 2,
42 FIO_FSERVICE_SEQ = 3,
43};
44
45/*
Jens Axboed6aed792009-06-03 08:41:15 +020046 * Each thread_data structure has a number of files associated with it,
47 * this structure holds state information for a single file.
48 */
49struct fio_file {
50 struct flist_head hash_list;
51 enum fio_filetype filetype;
52
Jens Axboe9e700a72010-10-08 15:06:33 +020053 void *file_data;
Jens Axboe0e238572010-10-08 11:26:43 +020054 int fd;
Bruce Cran03e20d62011-01-02 20:14:54 +010055#ifdef __CYGWIN__
56 HANDLE hFile;
57 HANDLE ioCP;
58#endif
Jens Axboed6aed792009-06-03 08:41:15 +020059
60 /*
61 * filename and possible memory mapping
62 */
63 char *file_name;
64 unsigned int major, minor;
65
66 void *mmap_ptr;
67 size_t mmap_sz;
68 off_t mmap_off;
69
70 /*
71 * size of the file, offset into file, and io size from that offset
72 */
73 unsigned long long real_file_size;
74 unsigned long long file_offset;
75 unsigned long long io_size;
76
77 unsigned long long last_pos;
Jens Axboe38dad622010-07-20 14:46:00 -060078 unsigned long long last_start;
Jens Axboed6aed792009-06-03 08:41:15 +020079
Jens Axboe44f29692010-03-09 20:09:44 +010080 unsigned long long first_write;
81 unsigned long long last_write;
82
Jens Axboed6aed792009-06-03 08:41:15 +020083 /*
Jens Axboee943b872010-02-02 09:48:13 +010084 * For use by the io engine
85 */
86 unsigned long long file_pos;
87
88 /*
Jens Axboed6aed792009-06-03 08:41:15 +020089 * if io is protected by a semaphore, this is set
90 */
91 struct fio_mutex *lock;
92 void *lock_owner;
93 unsigned int lock_batch;
94 enum fio_ddir lock_ddir;
95
96 /*
97 * block map for random io
98 */
Jens Axboe0ce8b112011-01-27 22:25:29 +010099 unsigned long *file_map;
Jens Axboed6aed792009-06-03 08:41:15 +0200100 unsigned int num_maps;
101 unsigned int last_free_lookup;
Jens Axboe0ce8b112011-01-27 22:25:29 +0100102 unsigned int failed_rands;
Jens Axboed6aed792009-06-03 08:41:15 +0200103
104 int references;
105 enum fio_file_flags flags;
106
107 struct disk_util *du;
108};
109
110#define FILE_FLAG_FNS(name) \
111static inline void fio_file_set_##name(struct fio_file *f) \
112{ \
113 (f)->flags |= FIO_FILE_##name; \
114} \
115static inline void fio_file_clear_##name(struct fio_file *f) \
116{ \
117 (f)->flags &= ~FIO_FILE_##name; \
118} \
119static inline int fio_file_##name(struct fio_file *f) \
120{ \
121 return ((f)->flags & FIO_FILE_##name) != 0; \
122}
123
124FILE_FLAG_FNS(open);
125FILE_FLAG_FNS(closing);
126FILE_FLAG_FNS(extend);
127FILE_FLAG_FNS(done);
128FILE_FLAG_FNS(size_known);
129FILE_FLAG_FNS(hashed);
Jens Axboeed47cbf2009-07-03 22:52:38 +0200130FILE_FLAG_FNS(partial_mmap);
Jens Axboed6aed792009-06-03 08:41:15 +0200131#undef FILE_FLAG_FNS
132
Jens Axboe4cd02b32009-06-03 08:46:38 +0200133/*
134 * File setup/shutdown
135 */
136struct thread_data;
137extern void close_files(struct thread_data *);
138extern void close_and_free_files(struct thread_data *);
139extern int __must_check setup_files(struct thread_data *);
140extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
141extern int __must_check generic_open_file(struct thread_data *, struct fio_file *);
142extern int __must_check generic_close_file(struct thread_data *, struct fio_file *);
143extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
144extern int __must_check pre_read_files(struct thread_data *);
145extern int add_file(struct thread_data *, const char *);
Jens Axboe49ffb4a2010-08-24 15:01:37 +0200146extern int add_file_exclusive(struct thread_data *, const char *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200147extern void get_file(struct fio_file *);
148extern int __must_check put_file(struct thread_data *, struct fio_file *);
Jens Axboee8462bd2009-07-06 12:59:04 +0200149extern void put_file_log(struct thread_data *, struct fio_file *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200150extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
151extern void unlock_file(struct thread_data *, struct fio_file *);
152extern void unlock_file_all(struct thread_data *, struct fio_file *);
153extern int add_dir_files(struct thread_data *, const char *);
154extern int init_random_map(struct thread_data *);
155extern void dup_files(struct thread_data *, struct thread_data *);
156extern int get_fileno(struct thread_data *, const char *);
157extern void free_release_files(struct thread_data *);
158
Jens Axboec592b9f2009-06-03 09:29:28 +0200159static inline void fio_file_reset(struct fio_file *f)
160{
161 f->last_free_lookup = 0;
Jens Axboe0ce8b112011-01-27 22:25:29 +0100162 f->failed_rands = 0;
Jens Axboec592b9f2009-06-03 09:29:28 +0200163 f->last_pos = f->file_offset;
Jens Axboe38dad622010-07-20 14:46:00 -0600164 f->last_start = -1ULL;
Jens Axboee943b872010-02-02 09:48:13 +0100165 f->file_pos = -1ULL;
Jens Axboec592b9f2009-06-03 09:29:28 +0200166 if (f->file_map)
Jens Axboe0ce8b112011-01-27 22:25:29 +0100167 memset(f->file_map, 0, f->num_maps * sizeof(unsigned long));
Jens Axboec592b9f2009-06-03 09:29:28 +0200168}
169
Jens Axboed6aed792009-06-03 08:41:15 +0200170#endif