-
Notifications
You must be signed in to change notification settings - Fork 1
/
BaseReader.h
95 lines (81 loc) · 2.5 KB
/
BaseReader.h
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* -*- C++ -*-
*
* BaseReader.h - Base class of archive reader
*
* Copyright (c) 2001-2008 Ogapee. All rights reserved.
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef __BASE_READER_H__
#define __BASE_READER_H__
#include <stdio.h>
#ifndef SEEK_END
#define SEEK_END 2
#endif
#ifdef WIN32
#define DELIMITER '\\'
#else
#define DELIMITER '/'
#endif
struct BaseReader
{
enum {
NO_COMPRESSION = 0,
SPB_COMPRESSION = 1,
LZSS_COMPRESSION = 2,
NBZ_COMPRESSION = 4
};
enum {
ARCHIVE_TYPE_NONE = 0,
ARCHIVE_TYPE_SAR = 1,
ARCHIVE_TYPE_NSA = 2,
ARCHIVE_TYPE_NS2 = 3,
ARCHIVE_TYPE_NS3 = 4
};
struct FileInfo{
char name[256];
int compression_type;
size_t offset;
size_t length;
size_t original_length;
};
struct ArchiveInfo{
struct ArchiveInfo *next;
FILE *file_handle;
char *file_name;
struct FileInfo *fi_list;
unsigned int num_of_files;
unsigned long base_offset;
ArchiveInfo(){
next = NULL;
file_handle = NULL;
file_name = NULL;
fi_list = NULL;
num_of_files = 0;
}
};
virtual ~BaseReader(){};
virtual int open( const char *name=NULL, int archive_type = ARCHIVE_TYPE_NONE ) = 0;
virtual int close() = 0;
virtual const char *getArchiveName() const = 0;
virtual int getNumFiles() = 0;
virtual void registerCompressionType( const char *ext, int type ) = 0;
virtual struct FileInfo getFileByIndex( unsigned int index ) = 0;
virtual size_t getFileLength( const char *file_name ) = 0;
virtual size_t getFile( const char *file_name, unsigned char *buffer, int *location=NULL ) = 0;
};
#endif // __BASE_READER_H__