blob: fa8c1d236c498da467a5ea716642d66ec56abef3 [file] [log] [blame]
Jens Axboed6aed792009-06-03 08:41:15 +02001#ifndef FIO_FILE_H
2#define FIO_FILE_H
3
4#include "io_ddir.h"
5
6/*
7 * The type of object we are working on
8 */
9enum fio_filetype {
10 FIO_TYPE_FILE = 1, /* plain file */
11 FIO_TYPE_BD, /* block device */
12 FIO_TYPE_CHAR, /* character device */
13 FIO_TYPE_PIPE, /* pipe */
14};
15
16enum fio_file_flags {
17 FIO_FILE_open = 1 << 0, /* file is open */
18 FIO_FILE_closing = 1 << 1, /* file being closed */
19 FIO_FILE_extend = 1 << 2, /* needs extend */
20 FIO_FILE_done = 1 << 3, /* io completed to this file */
21 FIO_FILE_size_known = 1 << 4, /* size has been set */
22 FIO_FILE_hashed = 1 << 5, /* file is on hash */
Jens Axboeed47cbf2009-07-03 22:52:38 +020023 FIO_FILE_partial_mmap = 1 << 6, /* can't do full mmap */
Jens Axboed6aed792009-06-03 08:41:15 +020024};
25
26enum file_lock_mode {
27 FILE_LOCK_NONE,
28 FILE_LOCK_EXCLUSIVE,
29 FILE_LOCK_READWRITE,
30};
31
32/*
Jens Axboe590aebd2009-06-03 08:54:00 +020033 * roundrobin available files, or choose one at random, or do each one
34 * serially.
35 */
36enum {
37 FIO_FSERVICE_RANDOM = 1,
38 FIO_FSERVICE_RR = 2,
39 FIO_FSERVICE_SEQ = 3,
40};
41
42/*
Jens Axboed6aed792009-06-03 08:41:15 +020043 * Each thread_data structure has a number of files associated with it,
44 * this structure holds state information for a single file.
45 */
46struct fio_file {
47 struct flist_head hash_list;
48 enum fio_filetype filetype;
49
Jens Axboe9e700a72010-10-08 15:06:33 +020050 void *file_data;
Jens Axboe0e238572010-10-08 11:26:43 +020051 int fd;
Jens Axboed6aed792009-06-03 08:41:15 +020052
53 /*
54 * filename and possible memory mapping
55 */
56 char *file_name;
57 unsigned int major, minor;
58
59 void *mmap_ptr;
60 size_t mmap_sz;
61 off_t mmap_off;
62
63 /*
64 * size of the file, offset into file, and io size from that offset
65 */
66 unsigned long long real_file_size;
67 unsigned long long file_offset;
68 unsigned long long io_size;
69
70 unsigned long long last_pos;
Jens Axboe38dad622010-07-20 14:46:00 -060071 unsigned long long last_start;
Jens Axboed6aed792009-06-03 08:41:15 +020072
Jens Axboe44f29692010-03-09 20:09:44 +010073 unsigned long long first_write;
74 unsigned long long last_write;
75
Jens Axboed6aed792009-06-03 08:41:15 +020076 /*
Jens Axboee943b872010-02-02 09:48:13 +010077 * For use by the io engine
78 */
79 unsigned long long file_pos;
80
81 /*
Jens Axboed6aed792009-06-03 08:41:15 +020082 * if io is protected by a semaphore, this is set
83 */
84 struct fio_mutex *lock;
85 void *lock_owner;
86 unsigned int lock_batch;
87 enum fio_ddir lock_ddir;
88
89 /*
90 * block map for random io
91 */
92 unsigned int *file_map;
93 unsigned int num_maps;
94 unsigned int last_free_lookup;
95
96 int references;
97 enum fio_file_flags flags;
98
99 struct disk_util *du;
100};
101
102#define FILE_FLAG_FNS(name) \
103static inline void fio_file_set_##name(struct fio_file *f) \
104{ \
105 (f)->flags |= FIO_FILE_##name; \
106} \
107static inline void fio_file_clear_##name(struct fio_file *f) \
108{ \
109 (f)->flags &= ~FIO_FILE_##name; \
110} \
111static inline int fio_file_##name(struct fio_file *f) \
112{ \
113 return ((f)->flags & FIO_FILE_##name) != 0; \
114}
115
116FILE_FLAG_FNS(open);
117FILE_FLAG_FNS(closing);
118FILE_FLAG_FNS(extend);
119FILE_FLAG_FNS(done);
120FILE_FLAG_FNS(size_known);
121FILE_FLAG_FNS(hashed);
Jens Axboeed47cbf2009-07-03 22:52:38 +0200122FILE_FLAG_FNS(partial_mmap);
Jens Axboed6aed792009-06-03 08:41:15 +0200123#undef FILE_FLAG_FNS
124
Jens Axboe4cd02b32009-06-03 08:46:38 +0200125/*
126 * File setup/shutdown
127 */
128struct thread_data;
129extern void close_files(struct thread_data *);
130extern void close_and_free_files(struct thread_data *);
131extern int __must_check setup_files(struct thread_data *);
132extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
133extern int __must_check generic_open_file(struct thread_data *, struct fio_file *);
134extern int __must_check generic_close_file(struct thread_data *, struct fio_file *);
135extern int __must_check generic_get_file_size(struct thread_data *, struct fio_file *);
136extern int __must_check pre_read_files(struct thread_data *);
137extern int add_file(struct thread_data *, const char *);
Jens Axboe49ffb4a2010-08-24 15:01:37 +0200138extern int add_file_exclusive(struct thread_data *, const char *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200139extern void get_file(struct fio_file *);
140extern int __must_check put_file(struct thread_data *, struct fio_file *);
Jens Axboee8462bd2009-07-06 12:59:04 +0200141extern void put_file_log(struct thread_data *, struct fio_file *);
Jens Axboe4cd02b32009-06-03 08:46:38 +0200142extern void lock_file(struct thread_data *, struct fio_file *, enum fio_ddir);
143extern void unlock_file(struct thread_data *, struct fio_file *);
144extern void unlock_file_all(struct thread_data *, struct fio_file *);
145extern int add_dir_files(struct thread_data *, const char *);
146extern int init_random_map(struct thread_data *);
147extern void dup_files(struct thread_data *, struct thread_data *);
148extern int get_fileno(struct thread_data *, const char *);
149extern void free_release_files(struct thread_data *);
150
Jens Axboec592b9f2009-06-03 09:29:28 +0200151static inline void fio_file_reset(struct fio_file *f)
152{
153 f->last_free_lookup = 0;
154 f->last_pos = f->file_offset;
Jens Axboe38dad622010-07-20 14:46:00 -0600155 f->last_start = -1ULL;
Jens Axboee943b872010-02-02 09:48:13 +0100156 f->file_pos = -1ULL;
Jens Axboec592b9f2009-06-03 09:29:28 +0200157 if (f->file_map)
158 memset(f->file_map, 0, f->num_maps * sizeof(int));
159}
160
Jens Axboed6aed792009-06-03 08:41:15 +0200161#endif