X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=store.h;h=aa961600fa4122d513e462bf4de3d710341faa33;hb=cac644d993d130efd8d29539de6557b18c9b737e;hp=6acee7fb4b0fce8707eb3aa02a095a0cfabe9ead;hpb=d5afe2c08724b4b263a76f187e39861c1e6e0cf5;p=cumulus.git diff --git a/store.h b/store.h index 6acee7f..aa96160 100644 --- a/store.h +++ b/store.h @@ -6,8 +6,8 @@ * is built on top of libtar, and represents segments as TAR files and objects * as files within them. */ -#ifndef _LBS_TARSTORE_H -#define _LBS_TARSTORE_H +#ifndef _LBS_STORE_H +#define _LBS_STORE_H #include #include @@ -20,6 +20,9 @@ #include #include "sha1.h" +#include "ref.h" + +class LbsObject; /* In memory datatype to represent key/value pairs of information, such as file * metadata. Currently implemented as map. */ @@ -46,10 +49,11 @@ public: Tarfile(const std::string &path, const std::string &segment); ~Tarfile(); + int spawn_filter(int fd_out); void write_object(int id, const char *data, size_t len); // Return an estimate of the size of the file. - size_t size_estimate() { return size; } + size_t size_estimate(); void internal_write_object(const std::string &path, const char *data, size_t len); @@ -57,8 +61,11 @@ public: private: size_t size; std::string segment_name; - std::ostringstream checksums; TAR *t; + + /* Filter support. */ + int real_fd, filter_fd; + pid_t filter_pid; }; class TarSegmentStore { @@ -71,9 +78,8 @@ public: // (segment/object) to refer to it. The optional parameter group can be // used to control object placement; objects with different group // parameters are kept in separate segments. - std::string write_object(const char *data, size_t len, - const std::string &group = "", - const std::list &refs = norefs); + ObjectReference write_object(const char *data, size_t len, + const std::string &group = ""); // Ensure all segments have been fully written. void sync(); @@ -82,17 +88,12 @@ private: struct segment_info { Tarfile *file; std::string name; // UUID - std::set refs; // Other segments this one refers to int count; // Objects written to this segment }; std::string path; std::map segments; - // An empty list which can be used as an argument to write_object to - // indicate that this object depends on no others. - static std::list norefs; - // Ensure that all segments in the given group have been fully written. void close_segment(const std::string &group); @@ -101,4 +102,46 @@ private: std::string object_reference_to_segment(const std::string &object); }; -#endif // _LBS_TARSTORE_H +/* An in-memory representation of an object, which can be incrementally built + * before it is written out to a segment. */ +class LbsObject { +public: + LbsObject(); + ~LbsObject(); + + // If an object is placed in a group, it will be written out to segments + // only containing other objects in the same group. A group name is simply + // a string. + //std::string get_group() const { return group; } + void set_group(const std::string &g) { group = g; } + + // Data in an object must be written all at once, and cannot be generated + // incrementally. Data can be an arbitrary block of binary data of any + // size. The pointer to the data need only remain valid until write() is + // called. + void set_data(const char *d, size_t len) { data = d; data_len = len; } + + // Write an object to a segment, thus making it permanent. This function + // can be called at most once. + void write(TarSegmentStore *store); + + // Compute the checksum of an object, and include it in the object + // reference. This should be called after write(), and the data specified + // by set_data() must remain valid through the call to checksum(). + void checksum(); + + // An object is assigned a permanent name once it has been written to a + // segment. Until that time, its name cannot be determined. + std::string get_name() const { return ref.to_string(); } + ObjectReference get_ref() { return ref; } + +private: + std::string group; + const char *data; + size_t data_len; + + bool written; + ObjectReference ref; +}; + +#endif // _LBS_STORE_H