Verovio
Source code documentation
filereader.h
1 // Name: filereader.h
3 // Author: Laurent Pugin
4 // Created: 31/01/2024
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_FILEREADER_H__
9 #define __VRV_FILEREADER_H__
10 
11 #include <list>
12 #include <string>
13 #include <vector>
14 
15 //----------------------------------------------------------------------------
16 
18 namespace miniz_cpp {
19 class zip_file;
20 }
21 
22 //----------------------------------------------------------------------------
23 
24 namespace vrv {
25 
26 //----------------------------------------------------------------------------
27 // ZipFileReader
28 //----------------------------------------------------------------------------
29 
34 public:
38  ZipFileReader();
40  ~ZipFileReader();
42 
46  void Reset();
47 
51  bool Load(const std::string &filename);
52 
56  bool LoadBytes(const std::vector<unsigned char> &bytes);
57 
61  bool HasFile(const std::string &filename);
62 
67  std::string ReadTextFile(const std::string &filename);
68 
72  std::list<std::string> GetFileList() const;
73 
74 private:
75  //
76 public:
77  //
78 private:
80  miniz_cpp::zip_file *m_file;
81 
82 }; // class ZipFileReader
83 
84 } // namespace vrv
85 
86 #endif // __VRV_FILEREADER_H__
miniz_cpp
Forward declaration of the zip_file.hpp class.
Definition: filereader.h:18
vrv::ZipFileReader
This class is a reader for zip archives.
Definition: filereader.h:33
vrv::ZipFileReader::Load
bool Load(const std::string &filename)
Load a file into memory.
vrv::ZipFileReader::HasFile
bool HasFile(const std::string &filename)
Check if the archive contains the file.
vrv::ZipFileReader::GetFileList
std::list< std::string > GetFileList() const
Return a list of all files (including directories)
vrv::ZipFileReader::ReadTextFile
std::string ReadTextFile(const std::string &filename)
Read the text file.
vrv::ZipFileReader::Reset
void Reset()
Reset a previously loaded file.
vrv::ZipFileReader::LoadBytes
bool LoadBytes(const std::vector< unsigned char > &bytes)
Load a vector into memory.