From: Filippos Giannakos <philipgian@grnet.gr>
To: Yehuda Sadeh <yehuda@inktank.com>
Cc: ceph-devel@vger.kernel.org, synnefo-devel@googlegroups.com
Subject: Re: [PATCH] implement librados aio_stat
Date: Wed, 19 Dec 2012 11:13:20 +0200 [thread overview]
Message-ID: <50D18530.7090805@grnet.gr> (raw)
In-Reply-To: <CAC-hyiEpvBnGTLQ-2mVx3v6fi3Ku_Tf1fVRyrmGPwQW4afxb=g@mail.gmail.com>
OK. About the LIBRADOS_VER_MINOR, do you want me to bump it and submit a
new patch?
Best regards,
Filippos
On 12/15/2012 09:49 AM, Yehuda Sadeh wrote:
> Went through it briefly, looks fine, though I'd like to go over it
> some more before picking this up. Note that LIBRADOS_VER_MINOR needs
> to be bumped up too.
>
> Thanks,
> Yehuda
>
> On Fri, Dec 14, 2012 at 3:18 AM, Filippos Giannakos<philipgian@grnet.gr> wrote:
>> ---
>> src/include/rados/librados.h | 14 ++++++++++++++
>> src/include/rados/librados.hpp | 15 +++++++++++++-
>> src/librados/IoCtxImpl.cc | 42 ++++++++++++++++++++++++++++++++++++++++
>> src/librados/IoCtxImpl.h | 9 +++++++++
>> src/librados/librados.cc | 10 ++++++++++
>> 5 files changed, 89 insertions(+), 1 deletion(-)
>>
>> diff --git a/src/include/rados/librados.h b/src/include/rados/librados.h
>> index 44d6f71..7f4b5c0 100644
>> --- a/src/include/rados/librados.h
>> +++ b/src/include/rados/librados.h
>> @@ -1444,6 +1444,20 @@ int rados_aio_read(rados_ioctx_t io, const char *oid,
>> */
>> int rados_aio_flush(rados_ioctx_t io);
>>
>> +
>> +/**
>> + * Asynchronously get object stats (size/mtime)
>> + *
>> + * @param io ioctx
>> + * @param o object name
>> + * @param psize where to store object size
>> + * @param pmtime where to store modification time
>> + * @returns 0 on success, negative error code on failure
>> + */
>> +int rados_aio_stat(rados_ioctx_t io, const char *o,
>> + rados_completion_t completion,
>> + uint64_t *psize, time_t *pmtime);
>> +
>> /** @} Asynchronous I/O */
>>
>> /**
>> diff --git a/src/include/rados/librados.hpp b/src/include/rados/librados.hpp
>> index e50acdb..96bfc15 100644
>> --- a/src/include/rados/librados.hpp
>> +++ b/src/include/rados/librados.hpp
>> @@ -473,9 +473,22 @@ namespace librados
>> * other than CEPH_NOSNAP
>> */
>> int aio_remove(const std::string& oid, AioCompletion *c);
>> -
>> +
>> int aio_flush();
>>
>> + /**
>> + * Asynchronously get object stats (size/mtime)
>> + *
>> + * @param io ioctx
>> + * @param o object name
>> + * @param psize where to store object size
>> + * @param pmtime where to store modification time
>> + * @returns 0 on success, negative error code on failure
>> + */
>> + int rados_aio_stat(rados_ioctx_t io, const char *o,
>> + rados_completion_t completion,
>> + uint64_t *psize, time_t *pmtime);
>> +
>> int aio_exec(const std::string& oid, AioCompletion *c, const char *cls, const char *method,
>> bufferlist& inbl, bufferlist *outbl);
>>
>> diff --git a/src/librados/IoCtxImpl.cc b/src/librados/IoCtxImpl.cc
>> index 01b4a94..50aab1e 100644
>> --- a/src/librados/IoCtxImpl.cc
>> +++ b/src/librados/IoCtxImpl.cc
>> @@ -851,6 +851,21 @@ int librados::IoCtxImpl::aio_remove(const object_t&oid, AioCompletionImpl *c)
>> return 0;
>> }
>>
>> +
>> +int librados::IoCtxImpl::aio_stat(const object_t& oid, AioCompletionImpl *c,
>> + uint64_t *psize, time_t *pmtime)
>> +{
>> + c->io = this;
>> + C_aio_stat_Ack *onack = new C_aio_stat_Ack(c, pmtime);
>> +
>> + Mutex::Locker l(*lock);
>> + objecter->stat(oid, oloc,
>> + snap_seq, psize,&onack->mtime, 0,
>> + onack,&c->objver);
>> +
>> + return 0;
>> +}
>> +
>> int librados::IoCtxImpl::remove(const object_t& oid)
>> {
>> utime_t ut = ceph_clock_now(client->cct);
>> @@ -1562,6 +1577,33 @@ void librados::IoCtxImpl::C_aio_Ack::finish(int r)
>> c->put_unlock();
>> }
>>
>> +///////////////////////////// C_aio_stat_Ack ////////////////////////////
>> +
>> +librados::IoCtxImpl::C_aio_stat_Ack::C_aio_stat_Ack(AioCompletionImpl *_c,
>> + time_t *pm)
>> + : c(_c), pmtime(pm)
>> +{
>> + c->get();
>> +}
>> +
>> +void librados::IoCtxImpl::C_aio_stat_Ack::finish(int r)
>> +{
>> + c->lock.Lock();
>> + c->rval = r;
>> + c->ack = true;
>> + c->cond.Signal();
>> +
>> + if (r>= 0&& pmtime) {
>> + *pmtime = mtime.sec();
>> + }
>> +
>> + if (c->callback_complete) {
>> + c->io->client->finisher.queue(new C_AioComplete(c));
>> + }
>> +
>> + c->put_unlock();
>> +}
>> +
>> /////////////////////// C_aio_sparse_read_Ack //////////////////////////
>>
>> librados::IoCtxImpl::C_aio_sparse_read_Ack::C_aio_sparse_read_Ack(AioCompletionImpl *_c,
>> diff --git a/src/librados/IoCtxImpl.h b/src/librados/IoCtxImpl.h
>> index feea0e8..55b07ee 100644
>> --- a/src/librados/IoCtxImpl.h
>> +++ b/src/librados/IoCtxImpl.h
>> @@ -144,6 +144,14 @@ struct librados::IoCtxImpl {
>> C_aio_Ack(AioCompletionImpl *_c);
>> void finish(int r);
>> };
>> +
>> + struct C_aio_stat_Ack : public Context {
>> + librados::AioCompletionImpl *c;
>> + time_t *pmtime;
>> + utime_t mtime;
>> + C_aio_stat_Ack(AioCompletionImpl *_c, time_t *pm);
>> + void finish(int r);
>> + };
>>
>> struct C_aio_sparse_read_Ack : public Context {
>> AioCompletionImpl *c;
>> @@ -177,6 +185,7 @@ struct librados::IoCtxImpl {
>> int aio_remove(const object_t&oid, AioCompletionImpl *c);
>> int aio_exec(const object_t& oid, AioCompletionImpl *c, const char *cls,
>> const char *method, bufferlist& inbl, bufferlist *outbl);
>> + int aio_stat(const object_t& oid, AioCompletionImpl *c, uint64_t *psize, time_t *pmtime);
>>
>> int pool_change_auid(unsigned long long auid);
>> int pool_change_auid_async(unsigned long long auid, PoolAsyncCompletionImpl *c);
>> diff --git a/src/librados/librados.cc b/src/librados/librados.cc
>> index 274119c..af36b38 100644
>> --- a/src/librados/librados.cc
>> +++ b/src/librados/librados.cc
>> @@ -2167,6 +2167,16 @@ extern "C" int rados_aio_flush(rados_ioctx_t io)
>> return 0;
>> }
>>
>> +extern "C" int rados_aio_stat(rados_ioctx_t io, const char *o,
>> + rados_completion_t completion,
>> + uint64_t *psize, time_t *pmtime)
>> +{
>> + librados::IoCtxImpl *ctx = (librados::IoCtxImpl *)io;
>> + object_t oid(o);
>> + return ctx->aio_stat(oid, (librados::AioCompletionImpl*)completion,
>> + psize, pmtime);
>> +}
>> +
>> struct C_WatchCB : public librados::WatchCtx {
>> rados_watchcb_t wcb;
>> void *arg;
>> --
>> 1.7.10.4
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2012-12-19 9:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-14 11:18 [PATCH] implement librados aio_stat Filippos Giannakos
2012-12-14 12:19 ` Giannakos Filippos
2012-12-15 7:49 ` Yehuda Sadeh
2012-12-19 9:13 ` Filippos Giannakos [this message]
2012-12-19 15:43 ` Sage Weil
2012-12-19 15:53 ` Josh Durgin
2012-12-20 20:05 ` [PATCH 0/2] Librados aio stat Filippos Giannakos
2012-12-20 20:05 ` [PATCH 1/2] Implement librados aio_stat Filippos Giannakos
2012-12-20 20:05 ` [PATCH 2/2] Add librados aio stat tests Filippos Giannakos
2013-01-04 13:01 ` [PATCH 0/2] Librados aio stat Filippos Giannakos
2013-01-04 18:00 ` Sage Weil
2013-01-05 0:08 ` Josh Durgin
2013-01-07 14:40 ` Filippos Giannakos
2013-01-09 3:40 ` Sage Weil
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50D18530.7090805@grnet.gr \
--to=philipgian@grnet.gr \
--cc=ceph-devel@vger.kernel.org \
--cc=synnefo-devel@googlegroups.com \
--cc=yehuda@inktank.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.