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
|
/*
* null engine
*
* IO engine that doesn't do any real IO transfers, it just pretends to.
* The main purpose is to test fio itself.
*
* It also can act as external C++ engine - compiled with:
*
* g++ -O2 -g -shared -rdynamic -fPIC -o cpp_null null.c \
* -include ../config-host.h -DFIO_EXTERNAL_ENGINE
*
* to test it execute:
*
* LD_LIBRARY_PATH=./engines ./fio examples/cpp_null.fio
*
*/
#include <stdlib.h>
#include <assert.h>
#include "../fio.h"
struct null_data {
struct io_u **io_us;
int queued;
int events;
};
static struct io_u *null_event(struct null_data *nd, int event)
{
return nd->io_us[event];
}
static int null_getevents(struct null_data *nd, unsigned int min_events,
unsigned int fio_unused max,
const struct timespec fio_unused *t)
{
int ret = 0;
if (min_events) {
ret = nd->events;
nd->events = 0;
}
return ret;
}
static void null_queued(struct thread_data *td, struct null_data *nd)
{
struct timespec now;
if (!fio_fill_issue_time(td))
return;
fio_gettime(&now, NULL);
for (int i = 0; i < nd->queued; i++) {
struct io_u *io_u = nd->io_us[i];
memcpy(&io_u->issue_time, &now, sizeof(now));
io_u_queued(td, io_u);
}
}
static int null_commit(struct thread_data *td, struct null_data *nd)
{
if (!nd->events) {
null_queued(td, nd);
#ifndef FIO_EXTERNAL_ENGINE
io_u_mark_submit(td, nd->queued);
#endif
nd->events = nd->queued;
nd->queued = 0;
}
return 0;
}
static enum fio_q_status null_queue(struct thread_data *td,
struct null_data *nd, struct io_u *io_u)
{
fio_ro_check(td, io_u);
if (td->io_ops->flags & FIO_SYNCIO)
return FIO_Q_COMPLETED;
if (nd->events)
return FIO_Q_BUSY;
nd->io_us[nd->queued++] = io_u;
return FIO_Q_QUEUED;
}
static int null_open(struct null_data fio_unused *nd,
struct fio_file fio_unused *f)
{
return 0;
}
static void null_cleanup(struct null_data *nd)
{
if (nd) {
free(nd->io_us);
free(nd);
}
}
static struct null_data *null_init(struct thread_data *td)
{
struct null_data *nd;
nd = malloc(sizeof(*nd));
memset(nd, 0, sizeof(*nd));
if (td->o.iodepth != 1) {
nd->io_us = calloc(td->o.iodepth, sizeof(struct io_u *));
td->io_ops->flags |= FIO_ASYNCIO_SETS_ISSUE_TIME;
} else
td->io_ops->flags |= FIO_SYNCIO;
td_set_ioengine_flags(td);
return nd;
}
#ifndef __cplusplus
static struct io_u *fio_null_event(struct thread_data *td, int event)
{
return null_event(td->io_ops_data, event);
}
static int fio_null_getevents(struct thread_data *td, unsigned int min_events,
unsigned int max, const struct timespec *t)
{
struct null_data *nd = td->io_ops_data;
return null_getevents(nd, min_events, max, t);
}
static int fio_null_commit(struct thread_data *td)
{
return null_commit(td, td->io_ops_data);
}
static enum fio_q_status fio_null_queue(struct thread_data *td,
struct io_u *io_u)
{
return null_queue(td, td->io_ops_data, io_u);
}
static int fio_null_open(struct thread_data *td, struct fio_file *f)
{
return null_open(td->io_ops_data, f);
}
static void fio_null_cleanup(struct thread_data *td)
{
null_cleanup(td->io_ops_data);
}
static int fio_null_init(struct thread_data *td)
{
td->io_ops_data = null_init(td);
assert(td->io_ops_data);
return 0;
}
static struct ioengine_ops ioengine = {
.name = "null",
.version = FIO_IOOPS_VERSION,
.queue = fio_null_queue,
.commit = fio_null_commit,
.getevents = fio_null_getevents,
.event = fio_null_event,
.init = fio_null_init,
.cleanup = fio_null_cleanup,
.open_file = fio_null_open,
.flags = FIO_DISKLESSIO | FIO_FAKEIO,
};
static void fio_init fio_null_register(void)
{
register_ioengine(&ioengine);
}
static void fio_exit fio_null_unregister(void)
{
unregister_ioengine(&ioengine);
}
#else
#ifdef FIO_EXTERNAL_ENGINE
struct NullData {
NullData(struct thread_data *td)
{
impl_ = null_init(td);
assert(impl_);
}
~NullData()
{
null_cleanup(impl_);
}
static NullData *get(struct thread_data *td)
{
return reinterpret_cast<NullData *>(td->io_ops_data);
}
io_u *fio_null_event(struct thread_data *, int event)
{
return null_event(impl_, event);
}
int fio_null_getevents(struct thread_data *, unsigned int min_events,
unsigned int max, const struct timespec *t)
{
return null_getevents(impl_, min_events, max, t);
}
int fio_null_commit(struct thread_data *td)
{
return null_commit(td, impl_);
}
fio_q_status fio_null_queue(struct thread_data *td, struct io_u *io_u)
{
return null_queue(td, impl_, io_u);
}
int fio_null_open(struct thread_data *, struct fio_file *f)
{
return null_open(impl_, f);
}
private:
struct null_data *impl_;
};
extern "C" {
static struct io_u *fio_null_event(struct thread_data *td, int event)
{
return NullData::get(td)->fio_null_event(td, event);
}
static int fio_null_getevents(struct thread_data *td, unsigned int min_events,
unsigned int max, const struct timespec *t)
{
return NullData::get(td)->fio_null_getevents(td, min_events, max, t);
}
static int fio_null_commit(struct thread_data *td)
{
return NullData::get(td)->fio_null_commit(td);
}
static fio_q_status fio_null_queue(struct thread_data *td, struct io_u *io_u)
{
return NullData::get(td)->fio_null_queue(td, io_u);
}
static int fio_null_open(struct thread_data *td, struct fio_file *f)
{
return NullData::get(td)->fio_null_open(td, f);
}
static int fio_null_init(struct thread_data *td)
{
td->io_ops_data = new NullData(td);
return 0;
}
static void fio_null_cleanup(struct thread_data *td)
{
delete NullData::get(td);
}
static struct ioengine_ops ioengine;
void get_ioengine(struct ioengine_ops **ioengine_ptr)
{
*ioengine_ptr = &ioengine;
ioengine.name = "cpp_null";
ioengine.version = FIO_IOOPS_VERSION;
ioengine.queue = fio_null_queue;
ioengine.commit = fio_null_commit;
ioengine.getevents = fio_null_getevents;
ioengine.event = fio_null_event;
ioengine.init = fio_null_init;
ioengine.cleanup = fio_null_cleanup;
ioengine.open_file = fio_null_open;
ioengine.flags = FIO_DISKLESSIO | FIO_FAKEIO;
}
}
#endif /* FIO_EXTERNAL_ENGINE */
#endif /* __cplusplus */
|