X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=store.h;h=1fd366b6ed24aed9ddfb6cb7ed898b07a4038f26;hb=117fafdd16cf070cda130d6d8ac321947692055a;hp=6906d6360b79fd8d384bc3fd7ae44937623212e5;hpb=b1a0bfe834d45694851787317da2cd55add2d7bb;p=cumulus.git diff --git a/store.h b/store.h index 6906d63..1fd366b 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,7 @@ #include #include "sha1.h" +#include "ref.h" class LbsObject; @@ -48,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); @@ -59,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 { @@ -73,28 +78,25 @@ 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(); + // Dump statistics to stdout about how much data has been written + void dump_stats(); + 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); @@ -120,23 +122,21 @@ public: // 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. - //const char *get_data() const { return data; } - //size_t get_data_len() const { return data_len; } 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 name; } - - // Logically, one object may reference other objects (such as a metadata - // listing referncing actual file data blocks). Such references should be - // noted explicitly. It may eventually be used to build up a tree of - // checksums for later verifying integrity. - void add_reference(const LbsObject *o); + std::string get_name() const { return ref.to_string(); } + ObjectReference get_ref() { return ref; } private: std::string group; @@ -144,9 +144,14 @@ private: size_t data_len; bool written; - std::string name; - - std::set refs; + ObjectReference ref; }; -#endif // _LBS_TARSTORE_H +/* Program through which segment data is piped before being written to file. */ +extern const char *filter_program; + +/* Extension which should be appended to segments written out (.tar is already + * included; this adds to it) */ +extern const char *filter_extension; + +#endif // _LBS_STORE_H