// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab /* * Ceph - scalable distributed file system * * Copyright (C) 2004-2012 Sage Weil * * This is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software * Foundation. See file COPYING. * */ #ifndef CEPH_LIBRADOS_AIOCOMPLETIONIMPL_H #define CEPH_LIBRADOS_AIOCOMPLETIONIMPL_H #include "common/Cond.h" #include "common/Mutex.h" #include "include/buffer.h" #include "include/rados/librados.h" #include "include/rados/librados.hpp" #include "include/xlist.h" #include "osd/osd_types.h" class IoCtxImpl; struct librados::AioCompletionImpl { Mutex lock; Cond cond; int ref, rval; bool released; bool ack, safe; eversion_t objver; rados_callback_t callback_complete, callback_safe; void *callback_arg; // for read bool is_read; bufferlist bl, *pbl; char *buf; unsigned maxlen; IoCtxImpl *io; tid_t aio_write_seq; xlist::item aio_write_list_item; AioCompletionImpl() : lock("AioCompletionImpl lock"), ref(1), rval(0), released(false), ack(false), safe(false), callback_complete(0), callback_safe(0), callback_arg(0), is_read(false), pbl(0), buf(0), maxlen(0), io(NULL), aio_write_seq(0), aio_write_list_item(this) { } int set_complete_callback(void *cb_arg, rados_callback_t cb) { lock.Lock(); callback_complete = cb; callback_arg = cb_arg; lock.Unlock(); return 0; } int set_safe_callback(void *cb_arg, rados_callback_t cb) { lock.Lock(); callback_safe = cb; callback_arg = cb_arg; lock.Unlock(); return 0; } int wait_for_complete() { lock.Lock(); while (!ack) cond.Wait(lock); lock.Unlock(); return 0; } int wait_for_safe() { lock.Lock(); while (!safe) cond.Wait(lock); lock.Unlock(); return 0; } int is_complete() { lock.Lock(); int r = ack; lock.Unlock(); return r; } int is_safe() { lock.Lock(); int r = safe; lock.Unlock(); return r; } int wait_for_complete_and_cb() { lock.Lock(); while (!ack || callback_complete) cond.Wait(lock); lock.Unlock(); return 0; } int wait_for_safe_and_cb() { lock.Lock(); while (!safe || callback_safe) cond.Wait(lock); lock.Unlock(); return 0; } int is_complete_and_cb() { lock.Lock(); int r = ack && !callback_complete; lock.Unlock(); return r; } int is_safe_and_cb() { lock.Lock(); int r = safe && !callback_safe; lock.Unlock(); return r; } int get_return_value() { lock.Lock(); int r = rval; lock.Unlock(); return r; } uint64_t get_version() { lock.Lock(); eversion_t v = objver; lock.Unlock(); return v.version; } void get() { lock.Lock(); assert(ref > 0); ref++; lock.Unlock(); } void release() { lock.Lock(); assert(!released); released = true; put_unlock(); } void put() { lock.Lock(); put_unlock(); } void put_unlock() { assert(ref > 0); int n = --ref; lock.Unlock(); if (!n) delete this; } }; namespace librados { struct C_AioComplete : public Context { AioCompletionImpl *c; C_AioComplete(AioCompletionImpl *cc) : c(cc) { c->ref++; } void finish(int r) { rados_callback_t cb = c->callback_complete; void *cb_arg = c->callback_arg; cb(c, cb_arg); c->lock.Lock(); c->callback_complete = NULL; c->cond.Signal(); c->put_unlock(); } }; struct C_AioSafe : public Context { AioCompletionImpl *c; C_AioSafe(AioCompletionImpl *cc) : c(cc) { c->ref++; } void finish(int r) { rados_callback_t cb = c->callback_safe; void *cb_arg = c->callback_arg; cb(c, cb_arg); c->lock.Lock(); c->callback_safe = NULL; c->cond.Signal(); c->put_unlock(); } }; } #endif