X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=store.h;h=0cd2c4baef790b4f25828c0da24215e52db65fe9;hb=4a6945983fa171fa843c6f8955ba601f733f3ca5;hp=8344dda39fce062fe42088f30b80ea529c3ab839;hpb=08721c894385b530ed501498a02d824b8eba7228;p=cumulus.git diff --git a/store.h b/store.h index 8344dda..0cd2c4b 100644 --- a/store.h +++ b/store.h @@ -122,9 +122,15 @@ struct uuid { uint8_t bytes[16]; }; +/* A class which is used to pack multiple objects into a single segment, with a + * lookup table to quickly locate each object. Call new_object() to get an + * OutputStream to which a new object may be written, and optionally + * finish_object() when finished writing the current object. Only one object + * may be written to a segment at a time; if multiple objects must be written + * concurrently, they must be to different segments. */ class SegmentWriter { public: - SegmentWriter(OutputStream &output, struct uuid u); + SegmentWriter(OutputStream *output, struct uuid u); ~SegmentWriter(); struct uuid get_uuid() const { return id; } @@ -140,7 +146,7 @@ public: private: typedef std::vector > object_table; - OutputStream &out; + OutputStream *out; struct uuid id; int64_t object_start_offset; @@ -149,4 +155,19 @@ private: object_table objects; }; +/* A SegmentStore, as the name suggests, is used to store the contents of many + * segments. The SegmentStore internally tracks where data should be placed + * (such as a local directory or remote storage), and allows new segments to be + * easily created as needed. */ +class SegmentStore { +public: + // New segments will be stored in the given directory. + SegmentStore(const std::string &path); + + SegmentWriter *new_segment(); + +private: + std::string directory; +}; + #endif // _LBS_STORE_H