[sheepdog] [PATCH 0/9] add preliminary support for S3 and Swift APIs

MORITA Kazutaka morita.kazutaka at gmail.com
Thu Oct 31 08:48:58 CET 2013


From: MORITA Kazutaka <morita.kazutaka at lab.ntt.co.jp>

This adds a basic support for S3 and Swift APIs.

TODO items:
 - Improve compatibility with S3 and Swift.
 - Improve performance of the underlying kvs feature.
 - Add support for authorization.
 - Add support for large objects than 4MB.
 - Add multi part upload support.
 - Add ACL support.
 - Add versioning support.
 - Add support for other calling format like http://bucket.[host]/object
 - Add support for metadata.
 - Add support for etag.
 - Add tests.
 - Add support for quota limit.

MORITA Kazutaka (9):
  util: add helper functions to process a requested URI
  http: avoid reading a total data in the main thread
  http: add uri and status to http_request
  http: usr CRLF for endline of http header
  http: move some structures and definitions to http.h
  sheep: add framework for http drivers
  sheep: add kvs feature for object storage
  sheep/http: add s3 driver
  sheep/http: add swift driver

 include/util.h     |   3 +
 lib/util.c         |  53 +++++
 sheep/Makefile.am  |   4 +-
 sheep/http.c       | 263 +++++++++++++++----------
 sheep/http.h       | 111 +++++++++++
 sheep/http/s3.c    | 283 +++++++++++++++++++++++++++
 sheep/http/swift.c | 259 +++++++++++++++++++++++++
 sheep/kvs.c        | 557 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 sheep/kvs.h        |  44 +++++
 sheep/sheep.c      |  16 +-
 sheep/sheep_priv.h |   4 +-
 11 files changed, 1486 insertions(+), 111 deletions(-)
 create mode 100644 sheep/http.h
 create mode 100644 sheep/http/s3.c
 create mode 100644 sheep/http/swift.c
 create mode 100644 sheep/kvs.c
 create mode 100644 sheep/kvs.h

-- 
1.8.1.2




More information about the sheepdog mailing list