blob: 7210e6bdb34424d0ef45717d1891a65a67f3a65a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef _ZIPREAD_H
#define _ZIPREAD_H
#include <api/service/svcs/svc_fileread.h>
#include <api/service/servicei.h>
#include <bfc/memblock.h>
#include <bfc/string/string.h>
#include <bfc/ptrlist.h>
#include <bfc/tlist.h>
class ZipRead : public svc_fileReaderI {
public:
// service
static const char *getServiceName() { return "ZIP file reader"; }
int open(const char *filename, int mode=SvcFileReader::READ);
int read(char *buffer, int length);
int write(const char *buffer, int length) { return 0; }
void close();
int getPos();
int getLength();
private:
FILE *openInTempDir(const char *walName, const char *file);
typedef struct {
String *name;
String *zipName;
Std::fileInfoStruct checksum;
} openedZipEntry;
static wasabi::TList<openedZipEntry> openedZipHandles;
String zipTmpDir;
FILE *handle;
};
#endif//_ZIPREAD_H
|