X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Fpacksource.h;h=35ec8b87a72eb54572057c04328a329e3d364dad;hp=f552d2ab479ed952c47a04619b76d75bdde29e83;hb=0ea5e96f078d85fe4229784e6499d19c67271219;hpb=835fcd2f79e8848fa0d92be667c0e02952e23436 diff --git a/source/packsource.h b/source/packsource.h index f552d2a..35ec8b8 100644 --- a/source/packsource.h +++ b/source/packsource.h @@ -21,9 +21,16 @@ in is loaded. */ class PackSource: public CollectionSource { +public: + struct FileInfo + { + std::string name; + IO::SeekOffset size; + }; + private: class File; - struct Object; + class Object; typedef std::map FileMap; typedef std::map ObjectMap; @@ -41,14 +48,16 @@ private: private: std::string filename; - unsigned base_offset; + IO::Seekable *io; + IO::SeekOffset base_offset; std::list files; public: - Pack(const std::string &); + Pack(IO::Seekable *, const std::string &); const std::string &get_filename() const { return filename; } - unsigned get_base_offset() const { return base_offset; } + IO::Seekable *get_io() const { return io; } + IO::SeekOffset get_base_offset() const { return base_offset; } void collect_files(FileMap &, const std::string &) const; }; @@ -68,23 +77,20 @@ private: private: const Pack &pack; std::string filename; - unsigned offset; - unsigned length; + IO::SeekOffset offset; + IO::SeekOffset length; bool collection; std::list objects; - bool loaded; public: File(const Pack &, const std::string &); - RefPtr open() const; + RefPtr open() const; const std::string &get_filename() const { return filename; } + FileInfo get_info() const; std::string get_full_name() const; bool is_collection() const { return collection; } - void set_loaded(); - bool is_loaded() const { return loaded; } - void collect_objects(ObjectMap &) const; }; @@ -104,6 +110,7 @@ private: }; std::list packs; + FileMap files; ObjectMap objects; public: @@ -114,9 +121,26 @@ public: read on the first call; subsequent calls will use cached data. */ void add_pack_file(const std::string &, const std::string &); + /** Adds a pack from an existing seekable I/O object. The same object is + used for all accesses to the pack, so it must not be deleted before the + PackSource. */ + void add_pack_io(IO::Seekable &, const std::string & = std::string()); + + /** Adds a pack from an I/O object with a regex to filter logical files. + Multiple filters for the same I/O object can be added with repeated calls. */ + void add_pack_io(IO::Seekable &, const std::string &, const std::string &); + +private: + void add_pack(IO::Seekable *, const std::string &, const std::string &); + +public: + /// Returns information about the files in the pack. + std::list list_files() const; + virtual bool is_loadable(const CollectionItemTypeBase &, const std::string &) const; virtual NameList get_names(const CollectionItemTypeBase &) const; virtual void load(Collection &, const CollectionItemTypeBase &, const std::string &) const; + virtual IO::Seekable *open(const std::string &) const; }; } // namespace DataFile