#ifndef CEPH_RGW_TOOLS_H #define CEPH_RGW_TOOLS_H #include #include "include/types.h" #include "rgw_common.h" int rgw_put_obj(string& uid, rgw_bucket& bucket, string& oid, const char *data, size_t size, bool exclusive, map *pattrs = NULL); int rgw_get_obj(void *ctx, rgw_bucket& bucket, string& key, bufferlist& bl); int rgw_tools_init(CephContext *cct); const char *rgw_find_mime_by_ext(string& ext); #endif