#include <zipfile.h>

Public Member Functions

virtual FileCollectionclone () const
 Create a heap allocated clone of the object this method is called for. More...
 
virtual void close ()
 Closes the FileCollection. More...
 
virtual istream * getInputStream (const ConstEntryPointer &entry)
 
virtual istream * getInputStream (const string &entry_name, MatchPath matchpath=MATCH)
 Returns a pointer to an opened istream for the specified entry name. More...
 
 ZipFile ()
 Default constructor. More...
 
 ZipFile (const string &name, int s_off=0, int e_off=0)
 Constructor. More...
 
virtual ~ZipFile ()
 Destructor. More...
 
- Public Member Functions inherited from zipios::FileCollection
virtual ConstEntries entries () const
 
 FileCollection ()
 FileCollection constructor. More...
 
 FileCollection (const FileCollection &src)
 Copy constructor. More...
 
virtual ConstEntryPointer getEntry (const string &name, MatchPath matchpath=MATCH) const
 
virtual string getName () const
 Returns the name of the FileCollection. More...
 
bool isValid () const
 The member function returns true if the collection is valid. More...
 
const FileCollectionoperator= (const FileCollection &src)
 Copy assignment operator. More...
 
virtual int size () const
 Returns the number of entries in the FileCollection. More...
 
virtual ~FileCollection ()
 FileCollection destructor. More...
 

Static Public Member Functions

static ZipFile openEmbeddedZipFile (const string &name)
 

Additional Inherited Members

- Public Types inherited from zipios::FileCollection
enum  MatchPath { IGN, MATCH }
 

Detailed Description

ZipFile is a FileCollection, where the files are stored in a .zip file.

Constructor & Destructor Documentation

◆ ZipFile() [1/2]

zipios::ZipFile::ZipFile ( )

Default constructor.

Referenced by clone(), and openEmbeddedZipFile().

◆ ZipFile() [2/2]

zipios::ZipFile::ZipFile ( const string &  name,
int  s_off = 0,
int  e_off = 0 
)
explicit

Constructor.

Opens the zip file name. If the zip "file" is embedded in a file that contains other data, e.g. a binary program, the offset of the zip file start and end must be specified.

Parameters
nameThe filename of the zip file to open.
s_offOffset relative to the start of the file, that indicates the beginning of the zip file.
e_offOffset relative to the end of the file, that indicates the end of the zip file. The offset is a positive number, even though the offset is towards the beginning of the file.
Exceptions
FColExceptionThrown if the specified file name is not a valid zip archive.
IOExceptionThrown if an I/O problem is encountered, while the directory of the specified zip archive is being read.

References Base::FileInfo::toStdWString().

◆ ~ZipFile()

zipios::ZipFile::~ZipFile ( )
virtual

Destructor.

References close().

Member Function Documentation

◆ clone()

FileCollection * zipios::ZipFile::clone ( ) const
virtual

Create a heap allocated clone of the object this method is called for.

The caller is responsible for deallocating the clone when he is done with it.

Returns
A heap allocated copy of the object this method is called for.

Implements zipios::FileCollection.

References ZipFile().

Referenced by ArchPanel.CommandPanelSheet::Activated(), ArchTruss.Truss::execute(), ArchComponent.Component::execute(), ArchCurtainWall.CurtainWall::execute(), and Mod.PartDesign.WizardShaft.SegmentFunction.SegmentFunction::integrated().

◆ close()

void zipios::ZipFile::close ( )
virtual

Closes the FileCollection.

Implements zipios::FileCollection.

Referenced by ~ZipFile().

◆ getInputStream() [1/2]

istream * zipios::ZipFile::getInputStream ( const ConstEntryPointer entry)
virtual

Returns a pointer to an opened istream for the specified FileEntry. It is the callers responsibility to delete the stream when he is done with it. Returns 0, if there is no such FileEntry in the FileCollection.

Parameters
entryA ConstEntryPointer to the FileEntry to get an istream to.
Returns
an open istream for the specified entry. The istream is allocated on heap and it is the users responsibility to delete it when he is done with it.
Exceptions
InvalidStateExceptionThrown if the collection is invalid.

Implements zipios::FileCollection.

◆ getInputStream() [2/2]

istream * zipios::ZipFile::getInputStream ( const string &  entry_name,
MatchPath  matchpath = MATCH 
)
virtual

Returns a pointer to an opened istream for the specified entry name.

It is the callers responsibility to delete the stream when he is done with it. Returns 0, if there is no entry with the specified name in the FileCollection.

Parameters
entry_name
matchpathSpeficy MATCH, if the path should match as well, specify IGNORE, if the path should be ignored.
Returns
an open istream for the specified entry. The istream is allocated on heap and it is the users responsibility to delete it when he is done with it.
Exceptions
InvalidStateExceptionThrown if the collection is invalid.

Implements zipios::FileCollection.

References zipios::SimpleSmartPointer< Type >::get(), and zipios::FileCollection::getEntry().

◆ openEmbeddedZipFile()

ZipFile zipios::ZipFile::openEmbeddedZipFile ( const string &  name)
static

Opens a Zip archive embedded in another file, by writing the zip archive to the end of the file followed by the start offset of the zip file. The offset must be written in zip-file byte-order (little endian). The program appendzip, which is part of the Zipios++ distribution can be used to append a Zip archive to a file, e.g. a binary program.

Exceptions
FColExceptionThrown if the specified file name is not a valid zip archive.
IOExceptionThrown if an I/O problem is encountered, while the directory of the specified zip archive is being read.

References zipios::readUint32(), and ZipFile().


The documentation for this class was generated from the following files:
  • src/zipios++/zipfile.h
  • src/zipios++/zipfile.cpp