SDTS_AL
cpl_vsi_virtual.h
1/******************************************************************************
2 * $Id$
3 *
4 * Project: VSI Virtual File System
5 * Purpose: Declarations for classes related to the virtual filesystem.
6 * These would only be normally required by applications implementing
7 * their own virtual file system classes which should be rare.
8 * The class interface may be fragile through versions.
9 * Author: Frank Warmerdam, warmerdam@pobox.com
10 *
11 ******************************************************************************
12 * Copyright (c) 2005, Frank Warmerdam <warmerdam@pobox.com>
13 * Copyright (c) 2010-2014, Even Rouault <even dot rouault at mines-paris dot org>
14 *
15 * Permission is hereby granted, free of charge, to any person obtaining a
16 * copy of this software and associated documentation files (the "Software"),
17 * to deal in the Software without restriction, including without limitation
18 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
19 * and/or sell copies of the Software, and to permit persons to whom the
20 * Software is furnished to do so, subject to the following conditions:
21 *
22 * The above copyright notice and this permission notice shall be included
23 * in all copies or substantial portions of the Software.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31 * DEALINGS IN THE SOFTWARE.
32 ****************************************************************************/
33
34#ifndef CPL_VSI_VIRTUAL_H_INCLUDED
35#define CPL_VSI_VIRTUAL_H_INCLUDED
36
37#include "cpl_vsi.h"
38#include "cpl_vsi_error.h"
39#include "cpl_string.h"
40#include "cpl_multiproc.h"
41
42#include <map>
43#include <vector>
44#include <string>
45
46// To avoid aliasing to GetDiskFreeSpace to GetDiskFreeSpaceA on Windows
47#ifdef GetDiskFreeSpace
48#undef GetDiskFreeSpace
49#endif
50
51/************************************************************************/
52/* VSIVirtualHandle */
53/************************************************************************/
54
56class CPL_DLL VSIVirtualHandle {
57 public:
58 virtual int Seek( vsi_l_offset nOffset, int nWhence ) = 0;
59 virtual vsi_l_offset Tell() = 0;
60 virtual size_t Read( void *pBuffer, size_t nSize, size_t nCount ) = 0;
61 virtual int ReadMultiRange( int nRanges, void ** ppData,
62 const vsi_l_offset* panOffsets,
63 const size_t* panSizes );
64 virtual size_t Write( const void *pBuffer, size_t nSize,size_t nCount)=0;
65 virtual int Eof() = 0;
66 virtual int Flush() {return 0;}
67 virtual int Close() = 0;
68 // Base implementation that only supports file extension.
69 virtual int Truncate( vsi_l_offset nNewSize );
70 virtual void *GetNativeFileDescriptor() { return nullptr; }
72 CPL_UNUSED vsi_l_offset nLength )
73 { return VSI_RANGE_STATUS_UNKNOWN; }
74
75 virtual ~VSIVirtualHandle() { }
76};
77
78/************************************************************************/
79/* VSIFilesystemHandler */
80/************************************************************************/
81
82#ifndef DOXYGEN_SKIP
83class CPL_DLL VSIFilesystemHandler {
84
85public:
86
87 virtual ~VSIFilesystemHandler() {}
88
89 VSIVirtualHandle *Open( const char *pszFilename,
90 const char *pszAccess );
91
92 virtual VSIVirtualHandle *Open( const char *pszFilename,
93 const char *pszAccess,
94 bool bSetError ) = 0;
95 virtual int Stat( const char *pszFilename, VSIStatBufL *pStatBuf, int nFlags) = 0;
96 virtual int Unlink( const char *pszFilename )
97 { (void) pszFilename; errno=ENOENT; return -1; }
98 virtual int Mkdir( const char *pszDirname, long nMode )
99 {(void)pszDirname; (void)nMode; errno=ENOENT; return -1;}
100 virtual int Rmdir( const char *pszDirname )
101 { (void) pszDirname; errno=ENOENT; return -1; }
102 virtual char **ReadDir( const char *pszDirname )
103 { (void) pszDirname; return nullptr; }
104 virtual char **ReadDirEx( const char *pszDirname, int /* nMaxFiles */ )
105 { return ReadDir(pszDirname); }
106 virtual int Rename( const char *oldpath, const char *newpath )
107 { (void) oldpath; (void)newpath; errno=ENOENT; return -1; }
108 virtual int IsCaseSensitive( const char* pszFilename )
109 { (void) pszFilename; return TRUE; }
110 virtual GIntBig GetDiskFreeSpace( const char* /* pszDirname */ ) { return -1; }
111 virtual int SupportsSparseFiles( const char* /* pszPath */ ) { return FALSE; }
112 virtual int HasOptimizedReadMultiRange(const char* /* pszPath */) { return FALSE; }
113 virtual const char* GetActualURL(const char* /*pszFilename*/) { return nullptr; }
114 virtual const char* GetOptions() { return nullptr; }
115 virtual char* GetSignedURL(const char* /*pszFilename*/, CSLConstList /* papszOptions */) { return nullptr; }
116};
117#endif /* #ifndef DOXYGEN_SKIP */
118
119/************************************************************************/
120/* VSIFileManager */
121/************************************************************************/
122
123#ifndef DOXYGEN_SKIP
124class CPL_DLL VSIFileManager
125{
126private:
127 VSIFilesystemHandler *poDefaultHandler;
128 std::map<std::string, VSIFilesystemHandler *> oHandlers;
129
131
132 static VSIFileManager *Get();
133
134public:
136
137 static VSIFilesystemHandler *GetHandler( const char * );
138 static void InstallHandler( const std::string& osPrefix,
140 /* RemoveHandler is never defined. */
141 /* static void RemoveHandler( const std::string& osPrefix ); */
142
143 static char** GetPrefixes();
144};
145#endif /* #ifndef DOXYGEN_SKIP */
146
147/************************************************************************/
148/* ==================================================================== */
149/* VSIArchiveFilesystemHandler */
150/* ==================================================================== */
151/************************************************************************/
152
153#ifndef DOXYGEN_SKIP
154
156{
157 public:
159};
160
161typedef struct
162{
163 char *fileName;
164 vsi_l_offset uncompressed_size;
166 int bIsDir;
167 GIntBig nModifiedTime;
169
171{
172public:
173 time_t mTime;
174 vsi_l_offset nFileSize;
175 int nEntries;
176 VSIArchiveEntry* entries;
177
178 VSIArchiveContent() : mTime(0), nFileSize(0), nEntries(0), entries(nullptr) {}
180};
181
183{
184 public:
185 virtual ~VSIArchiveReader();
186
187 virtual int GotoFirstFile() = 0;
188 virtual int GotoNextFile() = 0;
189 virtual VSIArchiveEntryFileOffset* GetFileOffset() = 0;
190 virtual GUIntBig GetFileSize() = 0;
191 virtual CPLString GetFileName() = 0;
192 virtual GIntBig GetModifiedTime() = 0;
193 virtual int GotoFileOffset(VSIArchiveEntryFileOffset* pOffset) = 0;
194};
195
197{
198protected:
199 CPLMutex* hMutex;
200 /* We use a cache that contains the list of files contained in a VSIArchive file as */
201 /* unarchive.c is quite inefficient in listing them. This speeds up access to VSIArchive files */
202 /* containing ~1000 files like a CADRG product */
203 std::map<CPLString,VSIArchiveContent*> oFileList;
204
205 virtual const char* GetPrefix() = 0;
206 virtual std::vector<CPLString> GetExtensions() = 0;
207 virtual VSIArchiveReader* CreateReader(const char* pszArchiveFileName) = 0;
208
209public:
212
213 int Stat( const char *pszFilename, VSIStatBufL *pStatBuf,
214 int nFlags ) override;
215 int Unlink( const char *pszFilename ) override;
216 int Rename( const char *oldpath, const char *newpath ) override;
217 int Mkdir( const char *pszDirname, long nMode ) override;
218 int Rmdir( const char *pszDirname ) override;
219 char **ReadDirEx( const char *pszDirname, int nMaxFiles ) override;
220
221 virtual const VSIArchiveContent* GetContentOfArchive(const char* archiveFilename, VSIArchiveReader* poReader = nullptr);
222 virtual char* SplitFilename(const char *pszFilename, CPLString &osFileInArchive, int bCheckMainFileExists);
223 virtual VSIArchiveReader* OpenArchiveFile(const char* archiveFilename, const char* fileInArchiveName);
224 virtual int FindFileInArchive(const char* archiveFilename, const char* fileInArchiveName, const VSIArchiveEntry** archiveEntry);
225};
226
227#endif /* #ifndef DOXYGEN_SKIP */
228
229VSIVirtualHandle CPL_DLL *VSICreateBufferedReaderHandle(VSIVirtualHandle* poBaseHandle);
230VSIVirtualHandle* VSICreateBufferedReaderHandle(VSIVirtualHandle* poBaseHandle,
231 const GByte* pabyBeginningContent,
232 vsi_l_offset nCheatFileSize);
233VSIVirtualHandle CPL_DLL *VSICreateCachedFile( VSIVirtualHandle* poBaseHandle, size_t nChunkSize = 32768, size_t nCacheSize = 0 );
234VSIVirtualHandle CPL_DLL *VSICreateGZipWritable( VSIVirtualHandle* poBaseHandle, int bRegularZLibIn, int bAutoCloseBaseHandle );
235
236#endif /* ndef CPL_VSI_VIRTUAL_H_INCLUDED */
Definition: cpl_vsi_virtual.h:171
Definition: cpl_vsi_virtual.h:156
Definition: cpl_vsi_virtual.h:197
Definition: cpl_vsi_virtual.h:183
Definition: cpl_vsi_virtual.h:125
Definition: cpl_vsi_virtual.h:83
Definition: cpl_vsi_virtual.h:56
virtual int Flush()
Flush pending writes to disk.
Definition: cpl_vsi_virtual.h:66
virtual int Close()=0
Close file.
virtual vsi_l_offset Tell()=0
Tell current file offset.
virtual int Seek(vsi_l_offset nOffset, int nWhence)=0
Seek to requested offset.
virtual size_t Read(void *pBuffer, size_t nSize, size_t nCount)=0
Read bytes from file.
virtual void * GetNativeFileDescriptor()
Returns the "native" file descriptor for the virtual handle.
Definition: cpl_vsi_virtual.h:70
virtual size_t Write(const void *pBuffer, size_t nSize, size_t nCount)=0
Write bytes to file.
virtual int Eof()=0
Test for end of file.
virtual VSIRangeStatus GetRangeStatus(CPL_UNUSED vsi_l_offset nOffset, CPL_UNUSED vsi_l_offset nLength)
Return if a given file range contains data or holes filled with zeroes.
Definition: cpl_vsi_virtual.h:71
unsigned long long GUIntBig
Definition: cpl_port.h:249
#define CPL_UNUSED
Definition: cpl_port.h:938
char ** CSLConstList
Definition: cpl_port.h:1184
unsigned char GByte
Definition: cpl_port.h:213
long long GIntBig
Definition: cpl_port.h:246
VSIRangeStatus
Definition: cpl_vsi.h:175
@ VSI_RANGE_STATUS_UNKNOWN
Definition: cpl_vsi.h:176
struct VSI_STAT64_T VSIStatBufL
Definition: cpl_vsi.h:191
GUIntBig vsi_l_offset
Definition: cpl_vsi.h:139
Definition: cpl_vsi_virtual.h:162