FIFE  be64c707dea6b3250bd4355bf5c825d25920087d
zipsource.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2005-2019 by the FIFE team *
3  * http://www.fifengine.net *
4  * This file is part of FIFE. *
5  * *
6  * FIFE is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU Lesser General Public *
8  * License as published by the Free Software Foundation; either *
9  * version 2.1 of the License, or (at your option) any later version. *
10  * *
11  * This library is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the *
18  * Free Software Foundation, Inc., *
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
20  ***************************************************************************/
21 
22 #ifndef FIFE_ZIP_SOURCE_H
23 #define FIFE_ZIP_SOURCE_H
24 
25 // Standard C++ library includes
26 //
27 #include <map>
28 
29 // 3rd party library includes
30 //
31 
32 // FIFE includes
33 // These includes are split up in two parts, separated by one empty line
34 // First block: files included from the FIFE root src directory
35 // Second block: files included from the same folder
36 #include "util/base/fife_stdint.h"
37 #include "vfs/vfssource.h"
38 
39 #include "ziptree.h"
40 
41 namespace FIFE {
46  class ZipSource : public VFSSource {
47  public:
48  ZipSource(VFS* vfs, const std::string& zip_file);
49  ~ZipSource();
50 
52  // thread-safe, and will probably break if called from multiple
53  // threads at the same time.
54  bool fileExists(const std::string& file) const;
55  std::set<std::string> listFiles(const std::string& path) const;
56  std::set<std::string> listDirectories(const std::string& path) const;
57 
58  virtual RawData* open(const std::string& path) const;
59 
60  private:
61  void readIndex();
62  bool readFileToIndex();
63 
64  private:
67 
68  };
69 
70 } //FIFE
71 
72 #endif
VFSSource abstract baseclass.
Definition: vfssource.h:46
bool readFileToIndex()
Definition: zipsource.cpp:129
ZipSource(VFS *vfs, const std::string &zip_file)
Definition: zipsource.cpp:51
std::set< std::string > listDirectories(const std::string &path) const
list all directories in a directory of this source
Definition: zipsource.cpp:209
RawData * m_zipfile
Definition: zipsource.h:66
ZipTree m_zipTree
Definition: zipsource.h:65
Implements a Zip archive file source.
Definition: zipsource.h:46
bool fileExists(const std::string &file) const
WARNING: fileExists, listFiles and listDirectories are not.
Definition: zipsource.cpp:59
virtual RawData * open(const std::string &path) const
open a file inside this source
Definition: zipsource.cpp:64
the main VFS (virtual file system) class
Definition: vfs.h:58
std::set< std::string > listFiles(const std::string &path) const
list all files in a directory of this source
Definition: zipsource.cpp:190
Used to access diffrent kinds of data.
Definition: rawdata.h:48