X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Fpacksource.h;h=a599b5c0c99c985eaa8b834721f5158b8356b52d;hp=10e1433279aaa36dee9b1dda39938af5ab6a42b2;hb=f8820db0e2d1de85752de809f0a8e24394a33f61;hpb=9b1656018f783eb4aad2fbdc1de1404691e89bb1 diff --git a/source/packsource.h b/source/packsource.h index 10e1433..a599b5c 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; + unsigned size; + }; + private: class File; - struct Object; + class Object; typedef std::map FileMap; typedef std::map ObjectMap; @@ -79,6 +86,7 @@ private: 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; } @@ -115,6 +123,9 @@ public: read on the first call; subsequent calls will use cached data. */ void add_pack_file(const std::string &, const std::string &); + /// 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;