libiscsi: continue working when meets EINTR or EAGAIN
[fio.git] / engines / null.c
... / ...
CommitLineData
1/*
2 * null engine
3 *
4 * IO engine that doesn't do any real IO transfers, it just pretends to.
5 * The main purpose is to test fio itself.
6 *
7 * It also can act as external C++ engine - compiled with:
8 *
9 * g++ -O2 -g -shared -rdynamic -fPIC -o cpp_null null.c -DFIO_EXTERNAL_ENGINE
10 *
11 * to test it execute:
12 *
13 * LD_LIBRARY_PATH=./engines ./fio examples/cpp_null.fio
14 *
15 */
16#include <stdlib.h>
17#include <assert.h>
18
19#include "../fio.h"
20
21struct null_data {
22 struct io_u **io_us;
23 int queued;
24 int events;
25};
26
27static struct io_u *null_event(struct null_data *nd, int event)
28{
29 return nd->io_us[event];
30}
31
32static int null_getevents(struct null_data *nd, unsigned int min_events,
33 unsigned int fio_unused max,
34 const struct timespec fio_unused *t)
35{
36 int ret = 0;
37
38 if (min_events) {
39 ret = nd->events;
40 nd->events = 0;
41 }
42
43 return ret;
44}
45
46static int null_commit(struct thread_data *td, struct null_data *nd)
47{
48 if (!nd->events) {
49#ifndef FIO_EXTERNAL_ENGINE
50 io_u_mark_submit(td, nd->queued);
51#endif
52 nd->events = nd->queued;
53 nd->queued = 0;
54 }
55
56 return 0;
57}
58
59static enum fio_q_status null_queue(struct thread_data *td,
60 struct null_data *nd, struct io_u *io_u)
61{
62 fio_ro_check(td, io_u);
63
64 if (td->io_ops->flags & FIO_SYNCIO)
65 return FIO_Q_COMPLETED;
66 if (nd->events)
67 return FIO_Q_BUSY;
68
69 nd->io_us[nd->queued++] = io_u;
70 return FIO_Q_QUEUED;
71}
72
73static int null_open(struct null_data fio_unused *nd,
74 struct fio_file fio_unused *f)
75{
76 return 0;
77}
78
79static void null_cleanup(struct null_data *nd)
80{
81 if (nd) {
82 free(nd->io_us);
83 free(nd);
84 }
85}
86
87static struct null_data *null_init(struct thread_data *td)
88{
89 struct null_data *nd = (struct null_data *) malloc(sizeof(*nd));
90
91 memset(nd, 0, sizeof(*nd));
92
93 if (td->o.iodepth != 1) {
94 nd->io_us = (struct io_u **) malloc(td->o.iodepth * sizeof(struct io_u *));
95 memset(nd->io_us, 0, td->o.iodepth * sizeof(struct io_u *));
96 } else
97 td->io_ops->flags |= FIO_SYNCIO;
98
99 return nd;
100}
101
102#ifndef __cplusplus
103
104static struct io_u *fio_null_event(struct thread_data *td, int event)
105{
106 return null_event(td->io_ops_data, event);
107}
108
109static int fio_null_getevents(struct thread_data *td, unsigned int min_events,
110 unsigned int max, const struct timespec *t)
111{
112 struct null_data *nd = td->io_ops_data;
113 return null_getevents(nd, min_events, max, t);
114}
115
116static int fio_null_commit(struct thread_data *td)
117{
118 return null_commit(td, td->io_ops_data);
119}
120
121static enum fio_q_status fio_null_queue(struct thread_data *td,
122 struct io_u *io_u)
123{
124 return null_queue(td, td->io_ops_data, io_u);
125}
126
127static int fio_null_open(struct thread_data *td, struct fio_file *f)
128{
129 return null_open(td->io_ops_data, f);
130}
131
132static void fio_null_cleanup(struct thread_data *td)
133{
134 null_cleanup(td->io_ops_data);
135}
136
137static int fio_null_init(struct thread_data *td)
138{
139 td->io_ops_data = null_init(td);
140 assert(td->io_ops_data);
141 return 0;
142}
143
144static struct ioengine_ops ioengine = {
145 .name = "null",
146 .version = FIO_IOOPS_VERSION,
147 .queue = fio_null_queue,
148 .commit = fio_null_commit,
149 .getevents = fio_null_getevents,
150 .event = fio_null_event,
151 .init = fio_null_init,
152 .cleanup = fio_null_cleanup,
153 .open_file = fio_null_open,
154 .flags = FIO_DISKLESSIO | FIO_FAKEIO,
155};
156
157static void fio_init fio_null_register(void)
158{
159 register_ioengine(&ioengine);
160}
161
162static void fio_exit fio_null_unregister(void)
163{
164 unregister_ioengine(&ioengine);
165}
166
167#else
168
169#ifdef FIO_EXTERNAL_ENGINE
170
171struct NullData {
172 NullData(struct thread_data *td)
173 {
174 impl_ = null_init(td);
175 assert(impl_);
176 }
177
178 ~NullData()
179 {
180 null_cleanup(impl_);
181 }
182
183 static NullData *get(struct thread_data *td)
184 {
185 return reinterpret_cast<NullData *>(td->io_ops_data);
186 }
187
188 io_u *fio_null_event(struct thread_data *, int event)
189 {
190 return null_event(impl_, event);
191 }
192
193 int fio_null_getevents(struct thread_data *, unsigned int min_events,
194 unsigned int max, const struct timespec *t)
195 {
196 return null_getevents(impl_, min_events, max, t);
197 }
198
199 int fio_null_commit(struct thread_data *td)
200 {
201 return null_commit(td, impl_);
202 }
203
204 int fio_null_queue(struct thread_data *td, struct io_u *io_u)
205 {
206 return null_queue(td, impl_, io_u);
207 }
208
209 int fio_null_open(struct thread_data *, struct fio_file *f)
210 {
211 return null_open(impl_, f);
212 }
213
214private:
215 struct null_data *impl_;
216};
217
218extern "C" {
219
220static struct io_u *fio_null_event(struct thread_data *td, int event)
221{
222 return NullData::get(td)->fio_null_event(td, event);
223}
224
225static int fio_null_getevents(struct thread_data *td, unsigned int min_events,
226 unsigned int max, const struct timespec *t)
227{
228 return NullData::get(td)->fio_null_getevents(td, min_events, max, t);
229}
230
231static int fio_null_commit(struct thread_data *td)
232{
233 return NullData::get(td)->fio_null_commit(td);
234}
235
236static int fio_null_queue(struct thread_data *td, struct io_u *io_u)
237{
238 return NullData::get(td)->fio_null_queue(td, io_u);
239}
240
241static int fio_null_open(struct thread_data *td, struct fio_file *f)
242{
243 return NullData::get(td)->fio_null_open(td, f);
244}
245
246static int fio_null_init(struct thread_data *td)
247{
248 td->io_ops_data = new NullData(td);
249 return 0;
250}
251
252static void fio_null_cleanup(struct thread_data *td)
253{
254 delete NullData::get(td);
255}
256
257static struct ioengine_ops ioengine;
258void get_ioengine(struct ioengine_ops **ioengine_ptr)
259{
260 *ioengine_ptr = &ioengine;
261
262 ioengine.name = "cpp_null";
263 ioengine.version = FIO_IOOPS_VERSION;
264 ioengine.queue = fio_null_queue;
265 ioengine.commit = fio_null_commit;
266 ioengine.getevents = fio_null_getevents;
267 ioengine.event = fio_null_event;
268 ioengine.init = fio_null_init;
269 ioengine.cleanup = fio_null_cleanup;
270 ioengine.open_file = fio_null_open;
271 ioengine.flags = FIO_DISKLESSIO | FIO_FAKEIO;
272}
273}
274#endif /* FIO_EXTERNAL_ENGINE */
275
276#endif /* __cplusplus */