mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
503 lines
20 KiB
C++
503 lines
20 KiB
C++
|
/*
|
||
|
PARTIO SOFTWARE
|
||
|
Copyright 2010 Disney Enterprises, Inc. All rights reserved
|
||
|
|
||
|
Redistribution and use in source and binary forms, with or without
|
||
|
modification, are permitted provided that the following conditions are
|
||
|
met:
|
||
|
|
||
|
* Redistributions of source code must retain the above copyright
|
||
|
notice, this list of conditions and the following disclaimer.
|
||
|
|
||
|
* Redistributions in binary form must reproduce the above copyright
|
||
|
notice, this list of conditions and the following disclaimer in
|
||
|
the documentation and/or other materials provided with the
|
||
|
distribution.
|
||
|
|
||
|
* The names "Disney", "Walt Disney Pictures", "Walt Disney Animation
|
||
|
Studios" or the names of its contributors may NOT be used to
|
||
|
endorse or promote products derived from this software without
|
||
|
specific prior written permission from Walt Disney Pictures.
|
||
|
|
||
|
Disclaimer: THIS SOFTWARE IS PROVIDED BY WALT DISNEY PICTURES AND
|
||
|
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
|
||
|
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
|
||
|
FOR A PARTICULAR PURPOSE, NONINFRINGEMENT AND TITLE ARE DISCLAIMED.
|
||
|
IN NO EVENT SHALL WALT DISNEY PICTURES, THE COPYRIGHT HOLDER OR
|
||
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND BASED ON ANY
|
||
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||
|
*/
|
||
|
|
||
|
extern "C"{
|
||
|
#include <zlib.h>
|
||
|
}
|
||
|
|
||
|
#include <algorithm>
|
||
|
#include <cassert>
|
||
|
#include <fstream>
|
||
|
#include <iomanip>
|
||
|
#include <iostream>
|
||
|
#include <stdexcept>
|
||
|
#include <cstring>
|
||
|
#include <string>
|
||
|
|
||
|
#include <detail/zip.hpp>
|
||
|
|
||
|
namespace Partio{
|
||
|
|
||
|
template<class T>
|
||
|
inline void Swap_Endianity(T& x)
|
||
|
{
|
||
|
assert(sizeof(T)<=8);
|
||
|
if(sizeof(T)>1) {
|
||
|
T old=x;
|
||
|
for(unsigned int k=1;k<=sizeof(T);k++) ((char*)&x)[k-1]=((char*)&old)[sizeof(T)-k];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
template<class T>
|
||
|
inline void Read_Primitive(std::istream& stream,T& x)
|
||
|
{
|
||
|
stream.read(&(char&)x,sizeof(T));
|
||
|
}
|
||
|
|
||
|
template<class T>
|
||
|
inline void Write_Primitive(std::ostream& stream,const T& x)
|
||
|
{
|
||
|
stream.write(&(char&)x,sizeof(T));
|
||
|
}
|
||
|
|
||
|
//#####################################################################
|
||
|
// class ZipFileHeader
|
||
|
//#####################################################################
|
||
|
struct ZipFileHeader
|
||
|
{
|
||
|
unsigned short version;
|
||
|
unsigned short flags;
|
||
|
unsigned short compression_type;
|
||
|
unsigned short stamp_date,stamp_time;
|
||
|
unsigned int crc;
|
||
|
unsigned int compressed_size,uncompressed_size;
|
||
|
std::string filename;
|
||
|
unsigned int header_offset; // local header offset
|
||
|
|
||
|
ZipFileHeader()
|
||
|
{}
|
||
|
|
||
|
ZipFileHeader(const std::string& filename_input)
|
||
|
:version(20),flags(0),compression_type(8),stamp_date(0),stamp_time(0),crc(0),
|
||
|
compressed_size(0),uncompressed_size(0),filename(filename_input),header_offset(0)
|
||
|
{}
|
||
|
|
||
|
bool Read(std::istream& istream,const bool global)
|
||
|
{unsigned int sig;
|
||
|
unsigned short version,flags;
|
||
|
// read and check for local/global magic
|
||
|
if(global){
|
||
|
Read_Primitive(istream,sig);
|
||
|
if(sig!=0x02014b50){std::cerr<<"Did not find global header signature"<<std::endl;return false;}
|
||
|
Read_Primitive(istream,version);}
|
||
|
else{
|
||
|
Read_Primitive(istream,sig);
|
||
|
if(sig!=0x04034b50){std::cerr<<"Did not find local header signature"<<std::endl;return false;}}
|
||
|
// Read rest of header
|
||
|
Read_Primitive(istream,version);
|
||
|
Read_Primitive(istream,flags);
|
||
|
Read_Primitive(istream,compression_type);
|
||
|
Read_Primitive(istream,stamp_date);
|
||
|
Read_Primitive(istream,stamp_time);
|
||
|
Read_Primitive(istream,crc);
|
||
|
Read_Primitive(istream,compressed_size);
|
||
|
Read_Primitive(istream,uncompressed_size);
|
||
|
unsigned short filename_length,extra_length;
|
||
|
Read_Primitive(istream,filename_length);
|
||
|
Read_Primitive(istream,extra_length);
|
||
|
unsigned short comment_length=0;
|
||
|
if(global){
|
||
|
Read_Primitive(istream,comment_length); // filecomment
|
||
|
unsigned short disk_number_start,int_file_attrib;
|
||
|
unsigned int ext_file_attrib;
|
||
|
Read_Primitive(istream,disk_number_start); // disk# start
|
||
|
Read_Primitive(istream,int_file_attrib); // internal file
|
||
|
Read_Primitive(istream,ext_file_attrib); // ext final
|
||
|
Read_Primitive(istream,header_offset);} // rel offset
|
||
|
char* buf=new char[std::max(comment_length,std::max(filename_length,extra_length))+1];
|
||
|
istream.read(buf,filename_length);
|
||
|
buf[filename_length]=0;
|
||
|
filename=std::string(buf, buf + filename_length);
|
||
|
istream.read(buf,extra_length);
|
||
|
if(global) istream.read(buf,comment_length);
|
||
|
delete [] buf;
|
||
|
return true;}
|
||
|
|
||
|
void Write(std::ostream& ostream,const bool global) const
|
||
|
{if(global){
|
||
|
Write_Primitive(ostream,(unsigned int)0x02014b50); // header sig
|
||
|
Write_Primitive(ostream,(unsigned short)00);} // version made by
|
||
|
else Write_Primitive(ostream,(unsigned int)0x04034b50);
|
||
|
Write_Primitive(ostream,version);
|
||
|
Write_Primitive(ostream,flags);
|
||
|
Write_Primitive(ostream,compression_type);
|
||
|
Write_Primitive(ostream,stamp_date);
|
||
|
Write_Primitive(ostream,stamp_time);
|
||
|
Write_Primitive(ostream,crc);
|
||
|
Write_Primitive(ostream,compressed_size);
|
||
|
Write_Primitive(ostream,uncompressed_size);
|
||
|
Write_Primitive(ostream,(unsigned short)filename.length());
|
||
|
Write_Primitive(ostream,(unsigned short)0); // extra lengthx
|
||
|
if(global){
|
||
|
Write_Primitive(ostream,(unsigned short)0); // filecomment
|
||
|
Write_Primitive(ostream,(unsigned short)0); // disk# start
|
||
|
Write_Primitive(ostream,(unsigned short)0); // internal file
|
||
|
Write_Primitive(ostream,(unsigned int)0); // ext final
|
||
|
Write_Primitive(ostream,(unsigned int)header_offset);} // rel offset
|
||
|
for(unsigned int i=0;i<filename.length();i++) Write_Primitive(ostream,filename.c_str()[i]);}
|
||
|
//#####################################################################
|
||
|
};
|
||
|
|
||
|
//#####################################################################
|
||
|
// class ZipStreambufDecompress
|
||
|
//#####################################################################
|
||
|
class ZipStreambufDecompress:public std::streambuf
|
||
|
{
|
||
|
static const unsigned int buffer_size=512;
|
||
|
std::istream& istream;
|
||
|
|
||
|
z_stream strm;
|
||
|
unsigned char in[buffer_size],out[buffer_size];
|
||
|
ZipFileHeader header;
|
||
|
int total_read,total_uncompressed;
|
||
|
bool own_istream;
|
||
|
bool valid;
|
||
|
bool compressed_data;
|
||
|
|
||
|
static const unsigned short DEFLATE=8;
|
||
|
static const unsigned short UNCOMPRESSED=0;
|
||
|
public:
|
||
|
ZipStreambufDecompress(std::istream& stream,ZipFileHeader central_header)
|
||
|
:istream(stream),total_read(0),total_uncompressed(0),valid(true),header(central_header)
|
||
|
{
|
||
|
strm.zalloc=Z_NULL;strm.zfree=Z_NULL;strm.opaque=Z_NULL;strm.avail_in=0;strm.next_in=Z_NULL;
|
||
|
setg((char*)in,(char*)in,(char*)in);
|
||
|
setp(0,0);
|
||
|
// skip the header
|
||
|
valid=header.Read(istream,false);
|
||
|
if(header.compression_type==DEFLATE) compressed_data=true;
|
||
|
else if(header.compression_type==UNCOMPRESSED) compressed_data=false;
|
||
|
else{
|
||
|
compressed_data=false;std::cerr<<"ZIP: got unrecognized compressed data (Supported deflate/uncompressed)"<<std::endl;
|
||
|
valid=false;}
|
||
|
// initialize the inflate
|
||
|
if(compressed_data && valid){
|
||
|
int result=inflateInit2(&strm,-MAX_WBITS);
|
||
|
if(result!=Z_OK){std::cerr<<"gzip: inflateInit2 did not return Z_OK"<<std::endl;valid=false;}}
|
||
|
header = central_header;
|
||
|
}
|
||
|
|
||
|
virtual ~ZipStreambufDecompress()
|
||
|
{if(compressed_data && valid) inflateEnd(&strm);}
|
||
|
|
||
|
int process()
|
||
|
{if(!valid) return -1;
|
||
|
if(compressed_data){
|
||
|
strm.avail_out=buffer_size-4;
|
||
|
strm.next_out=(Bytef*)(out+4);
|
||
|
while(strm.avail_out!=0){
|
||
|
if(strm.avail_in==0){ // buffer empty, read some more from file
|
||
|
istream.read((char*)in,std::min((unsigned int)buffer_size,header.compressed_size-total_read));
|
||
|
strm.avail_in=istream.gcount();
|
||
|
total_read+=strm.avail_in;
|
||
|
strm.next_in=(Bytef*)in;}
|
||
|
int ret=inflate(&strm,Z_NO_FLUSH); // decompress
|
||
|
switch(ret){
|
||
|
case Z_STREAM_ERROR:
|
||
|
std::cerr<<"libz error Z_STREAM_ERROR"<<std::endl;
|
||
|
valid=false;return -1;
|
||
|
case Z_NEED_DICT:
|
||
|
case Z_DATA_ERROR:
|
||
|
case Z_MEM_ERROR:
|
||
|
std::cerr<<"gzip error "<<strm.msg<<std::endl;
|
||
|
valid=false;return -1;}
|
||
|
if(ret==Z_STREAM_END) break;}
|
||
|
int unzip_count=buffer_size-strm.avail_out-4;
|
||
|
total_uncompressed+=unzip_count;
|
||
|
return unzip_count;}
|
||
|
else{ // uncompressed, so just read
|
||
|
istream.read((char*)(out+4),std::min(buffer_size-4,header.uncompressed_size-total_read));
|
||
|
int count=istream.gcount();
|
||
|
total_read+=count;
|
||
|
return count;}
|
||
|
return 1;}
|
||
|
|
||
|
virtual int underflow()
|
||
|
{if(gptr() && (gptr()<egptr())) return traits_type::to_int_type(*gptr()); // if we already have data just use it
|
||
|
int put_back_count=gptr()-eback();
|
||
|
if(put_back_count>4) put_back_count=4;
|
||
|
std::memmove(out+(4-put_back_count),gptr()-put_back_count,put_back_count);
|
||
|
int num=process();
|
||
|
setg((char*)(out+4-put_back_count),(char*)(out+4),(char*)(out+4+num));
|
||
|
if(num<=0) return EOF;
|
||
|
return traits_type::to_int_type(*gptr());}
|
||
|
|
||
|
virtual int overflow(int c=EOF)
|
||
|
{assert(false);return EOF;}
|
||
|
|
||
|
//#####################################################################
|
||
|
};
|
||
|
|
||
|
//#####################################################################
|
||
|
// class ZipStreambufCompress
|
||
|
//#####################################################################
|
||
|
class ZipStreambufCompress:public std::streambuf
|
||
|
{
|
||
|
static const int buffer_size=512;
|
||
|
std::ostream& ostream; // owned when header==0 (when not part of zip file)
|
||
|
|
||
|
z_stream strm;
|
||
|
unsigned char in[buffer_size],out[buffer_size];
|
||
|
|
||
|
ZipFileHeader* header;
|
||
|
unsigned int header_offset;
|
||
|
unsigned int uncompressed_size;
|
||
|
unsigned int crc;
|
||
|
|
||
|
bool valid;
|
||
|
|
||
|
public:
|
||
|
ZipStreambufCompress(ZipFileHeader* header,std::ostream& stream)
|
||
|
:ostream(stream),header(header),valid(true)
|
||
|
{
|
||
|
strm.zalloc=Z_NULL;strm.zfree=Z_NULL;strm.opaque=Z_NULL;
|
||
|
int ret=deflateInit2(&strm,Z_DEFAULT_COMPRESSION,Z_DEFLATED,-MAX_WBITS,8,Z_DEFAULT_STRATEGY);
|
||
|
if(ret != Z_OK){std::cerr<<"libz: failed to deflateInit"<<std::endl;valid=false;return;}
|
||
|
setg(0,0,0);
|
||
|
setp((char*)in,(char*)(in+buffer_size-4)); // we want to be 4 aligned
|
||
|
// Write appropriate header
|
||
|
if(header){header->header_offset=stream.tellp();header->Write(ostream,false);}
|
||
|
uncompressed_size=crc=0;
|
||
|
}
|
||
|
|
||
|
virtual ~ZipStreambufCompress()
|
||
|
{if(valid){
|
||
|
process(true);
|
||
|
deflateEnd(&strm);
|
||
|
if(header){
|
||
|
std::ios::streampos final_position=ostream.tellp();
|
||
|
header->uncompressed_size=uncompressed_size;
|
||
|
header->crc=crc;
|
||
|
ostream.seekp(header->header_offset);
|
||
|
header->Write(ostream,false);
|
||
|
ostream.seekp(final_position);}
|
||
|
else{Write_Primitive(ostream,crc);Write_Primitive(ostream,uncompressed_size);}}
|
||
|
if(!header) delete &ostream;}
|
||
|
|
||
|
protected:
|
||
|
int process(bool flush)
|
||
|
{if(!valid) return -1;
|
||
|
strm.next_in=(Bytef*)pbase();
|
||
|
strm.avail_in=pptr()-pbase();
|
||
|
while(strm.avail_in!=0 || flush){
|
||
|
strm.avail_out=buffer_size;
|
||
|
strm.next_out=(Bytef*)out;
|
||
|
int ret=deflate(&strm,flush?Z_FINISH:Z_NO_FLUSH);
|
||
|
if(!(ret!=Z_BUF_ERROR && ret!=Z_STREAM_ERROR)){
|
||
|
valid=false;
|
||
|
std::cerr<<"gzip: gzip error "<<strm.msg<<std::endl;;
|
||
|
return -1;}
|
||
|
int generated_output=strm.next_out-(Bytef*)out;
|
||
|
ostream.write((char*)out,generated_output);
|
||
|
if(header) header->compressed_size+=generated_output;
|
||
|
if(ret==Z_STREAM_END) break;}
|
||
|
// update counts, crc's and buffers
|
||
|
int consumed_input=pptr()-pbase();
|
||
|
uncompressed_size+=consumed_input;
|
||
|
crc=crc32(crc,(Bytef*)in,consumed_input);
|
||
|
setp(pbase(),pbase()+buffer_size-4);return 1;}
|
||
|
|
||
|
virtual int sync()
|
||
|
{if(pptr() && pptr()>pbase()) return process(false);return 0;}
|
||
|
|
||
|
virtual int underflow()
|
||
|
{std::runtime_error("Attempt to read write only ostream");return 0;}
|
||
|
|
||
|
virtual int overflow(int c=EOF)
|
||
|
{if(c!=EOF){*pptr()=c;pbump(1);}
|
||
|
if(process(false)==EOF) return EOF;
|
||
|
return c;}
|
||
|
|
||
|
//#####################################################################
|
||
|
};
|
||
|
//#####################################################################
|
||
|
// Class ZIP_FILE_ISTREAM
|
||
|
//#####################################################################
|
||
|
// Class needed because istream cannot own its streambuf
|
||
|
class ZIP_FILE_ISTREAM:public std::istream
|
||
|
{
|
||
|
ZipStreambufDecompress buf;
|
||
|
public:
|
||
|
ZIP_FILE_ISTREAM(std::istream& istream,ZipFileHeader header)
|
||
|
:std::istream(&buf),buf(istream,header)
|
||
|
{}
|
||
|
|
||
|
virtual ~ZIP_FILE_ISTREAM()
|
||
|
{}
|
||
|
|
||
|
//#####################################################################
|
||
|
};
|
||
|
//#####################################################################
|
||
|
// Class ZIP_FILE_OSTREAM
|
||
|
//#####################################################################
|
||
|
// Class needed because ostream cannot own its streambuf
|
||
|
class ZIP_FILE_OSTREAM:public std::ostream
|
||
|
{
|
||
|
ZipStreambufCompress buf;
|
||
|
public:
|
||
|
ZIP_FILE_OSTREAM(ZipFileHeader* header,std::ostream& ostream)
|
||
|
:std::ostream(&buf),buf(header,ostream)
|
||
|
{}
|
||
|
|
||
|
virtual ~ZIP_FILE_OSTREAM()
|
||
|
{}
|
||
|
|
||
|
//#####################################################################
|
||
|
};
|
||
|
//#####################################################################
|
||
|
// Function ZipFileWriter
|
||
|
//#####################################################################
|
||
|
ZipFileWriter::
|
||
|
ZipFileWriter(std::ostream& stream) : ostream(stream)
|
||
|
{
|
||
|
if(!ostream) throw std::runtime_error("ZIP: Invalid file handle");
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function ZipFileWriter
|
||
|
//#####################################################################
|
||
|
ZipFileWriter::
|
||
|
~ZipFileWriter()
|
||
|
{
|
||
|
// Write all file headers
|
||
|
std::ios::streampos final_position=ostream.tellp();
|
||
|
for(unsigned int i=0;i<files.size();i++){files[i]->Write(ostream,true);delete files[i];}
|
||
|
std::ios::streampos central_end=ostream.tellp();
|
||
|
// Write end of central
|
||
|
Write_Primitive(ostream,(unsigned int)0x06054b50); // end of central
|
||
|
Write_Primitive(ostream,(unsigned short)0); // this disk number
|
||
|
Write_Primitive(ostream,(unsigned short)0); // this disk number
|
||
|
Write_Primitive(ostream,(unsigned short)files.size()); // one entry in center in this disk
|
||
|
Write_Primitive(ostream,(unsigned short)files.size()); // one entry in center
|
||
|
Write_Primitive(ostream,(unsigned int)(central_end-final_position)); // size of header
|
||
|
Write_Primitive(ostream,(unsigned int)final_position); // offset to header
|
||
|
Write_Primitive(ostream,(unsigned short)0); // zip comment
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function ZipFileWriter
|
||
|
//#####################################################################
|
||
|
std::ostream* ZipFileWriter::
|
||
|
Add_File(const std::string& filename,const bool binary)
|
||
|
{
|
||
|
files.push_back(new ZipFileHeader(filename));
|
||
|
return new ZIP_FILE_OSTREAM(files.back(),ostream);
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function ZipFileReader
|
||
|
//#####################################################################
|
||
|
ZipFileReader::
|
||
|
ZipFileReader(std::istream &stream) : istream(stream)
|
||
|
{
|
||
|
if(!istream) throw std::runtime_error("ZIP: Invalid file handle");
|
||
|
Find_And_Read_Central_Header();
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function ZipFileReader
|
||
|
//#####################################################################
|
||
|
ZipFileReader::
|
||
|
~ZipFileReader()
|
||
|
{
|
||
|
std::map<std::string,ZipFileHeader*>::iterator i=filename_to_header.begin();
|
||
|
for(;i!=filename_to_header.end();++i)
|
||
|
delete i->second;
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function Find_And_Read_Central_Header
|
||
|
//#####################################################################
|
||
|
bool ZipFileReader::
|
||
|
Find_And_Read_Central_Header()
|
||
|
{
|
||
|
// Find the header
|
||
|
// NOTE: this assumes the zip file header is the last thing written to file...
|
||
|
istream.seekg(0,std::ios_base::end);
|
||
|
std::ios::streampos end_position=istream.tellg();
|
||
|
unsigned int max_comment_size=0xffff; // max size of header
|
||
|
unsigned int read_size_before_comment=22;
|
||
|
std::ios::streamoff read_start=max_comment_size+read_size_before_comment;
|
||
|
if(read_start>end_position) read_start=end_position;
|
||
|
istream.seekg(end_position-read_start);
|
||
|
char *buf=new char[read_start];
|
||
|
if(read_start<=0){std::cerr<<"ZIP: Invalid read buffer size"<<std::endl;return false;}
|
||
|
istream.read(buf,read_start);
|
||
|
int found=-1;
|
||
|
for(unsigned int i=0;i<read_start-3;i++){
|
||
|
if(buf[i]==0x50 && buf[i+1]==0x4b && buf[i+2]==0x05 && buf[i+3]==0x06){found=i;break;}}
|
||
|
delete [] buf;
|
||
|
if(found==-1){std::cerr<<"ZIP: Failed to find zip header"<<std::endl;return false;}
|
||
|
// seek to end of central header and read
|
||
|
istream.seekg(end_position-(read_start-found));
|
||
|
unsigned int word;
|
||
|
unsigned short disk_number1,disk_number2,num_files,num_files_this_disk;
|
||
|
Read_Primitive(istream,word); // end of central
|
||
|
Read_Primitive(istream,disk_number1); // this disk number
|
||
|
Read_Primitive(istream,disk_number2); // this disk number
|
||
|
if(disk_number1!=disk_number2 || disk_number1!=0){
|
||
|
std::cerr<<"ZIP: multiple disk zip files are not supported"<<std::endl;return false;}
|
||
|
Read_Primitive(istream,num_files); // one entry in center in this disk
|
||
|
Read_Primitive(istream,num_files_this_disk); // one entry in center
|
||
|
if(num_files != num_files_this_disk){
|
||
|
std::cerr<<"ZIP: multi disk zip files are not supported"<<std::endl;return false;}
|
||
|
unsigned int size_of_header,header_offset;
|
||
|
Read_Primitive(istream,size_of_header); // size of header
|
||
|
Read_Primitive(istream,header_offset); // offset to header
|
||
|
// go to header and read all file headers
|
||
|
istream.seekg(header_offset);
|
||
|
for(int i=0;i<num_files;i++){
|
||
|
ZipFileHeader* header=new ZipFileHeader;
|
||
|
bool valid=header->Read(istream,true);
|
||
|
if(valid) filename_to_header[header->filename]=header;}
|
||
|
return true;
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function Get_File
|
||
|
//#####################################################################
|
||
|
std::istream* ZipFileReader::Get_File(const std::string& filename,const bool binary)
|
||
|
{
|
||
|
std::map<std::string,ZipFileHeader*>::iterator i=filename_to_header.find(filename);
|
||
|
if(i!=filename_to_header.end()){
|
||
|
ZipFileHeader* header=i->second;
|
||
|
istream.seekg((*header).header_offset);return new ZIP_FILE_ISTREAM(istream,*header);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function Get_File_List
|
||
|
//#####################################################################
|
||
|
void ZipFileReader::Get_File_List(std::vector<std::string>& filenames) const
|
||
|
{
|
||
|
filenames.clear();
|
||
|
std::map<std::string,ZipFileHeader*>::const_iterator i=filename_to_header.begin();
|
||
|
for(;i!=filename_to_header.end();++i)
|
||
|
filenames.push_back(i->first);
|
||
|
}
|
||
|
//#####################################################################
|
||
|
// Function Has_File
|
||
|
//#####################################################################
|
||
|
bool ZipFileReader::Has_File(const std::string &filename) const
|
||
|
{
|
||
|
return filename_to_header.find(filename) != filename_to_header.end();
|
||
|
}
|
||
|
|
||
|
} // namespace Partio
|