4 #include "zipios++/zipios-config.h" 6 #include "zipios++/meta-iostreams.h" 24 explicit BasicEntry(
const string &filename,
const string &comment,
28 virtual uint32
getCrc()
const ;
29 virtual vector< unsigned char >
getExtra()
const ;
31 virtual string getName()
const ;
33 virtual uint32
getSize()
const ;
40 virtual void setComment(
const string &comment ) ;
42 virtual void setCrc( uint32 crc ) ;
43 virtual void setExtra(
const vector< unsigned char > &extra ) ;
45 virtual void setName(
const string &name ) ;
46 virtual void setSize( uint32 size ) ;
47 virtual void setTime(
int time ) ;
virtual StorageMethod getMethod() const
Returns the method used to store the entry in the FileCollection.
virtual string getFileName() const
Returns the filename of the entry.
virtual string toString() const
Returns a human-readable string representation of the entry.
virtual uint32 getCompressedSize() const
Returns the compressed size of the entry.
virtual void setSize(uint32 size)
Sets the size field for the entry.
virtual FileEntry * clone() const
Create a heap allocated clone of the object this method is called for.
virtual void setTime(int time)
Sets the time field for the entry.
virtual vector< unsigned char > getExtra() const
Returns a vector of bytes of extra data that may be stored with the entry.
Header file that defines some simple data types.
Header file that defines FileEntry.
virtual void setMethod(StorageMethod method)
Sets the storage method field for the entry.
virtual void setCompressedSize(uint32 size)
Set the compressed size field of the entry.
virtual bool isValid() const
Any method or operator that initializes a FileEntry may set a flag, that specifies whether the read e...
virtual int getTime() const
Returns the date and time of FIXME: what?
BasicEntry is a FileEntry that is suitable as a base class for basic entries, that e...
virtual bool isDirectory() const
Returns true if the entry is a directory.
virtual void setCrc(uint32 crc)
Sets the crc field.
virtual string getName() const
Returns the full filename of the entry, including a path if the entry is stored in a subfolder...
virtual string getComment() const
Returns the comment of the entry, if it has one.
virtual void setComment(const string &comment)
Sets the comment field for the FileEntry.
BasicEntry(const string &filename, const string &comment, const FilePath &basepath=FilePath())
Constructor.
A FileEntry represents an entry in a FileCollection.
Header file that defines a number of exceptions used by FileCollection and its subclasses.
virtual void setName(const string &name)
Sets the name field for the entry.
StorageMethod
The types used with FileEntry::setMethod and FileEntry::getMethod.
virtual uint32 getCrc() const
Returns the Crc for the entry, if it has one.
virtual void setExtra(const vector< unsigned char > &extra)
Sets the extra field.
FilePath represents a path to a file or directory name.
Header file that defines FilePath.
virtual uint32 getSize() const
Returns the (uncompressed) size of the entry data.