forked from troglobit/snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.cpp
101 lines (89 loc) · 2.25 KB
/
archive.cpp
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
96
97
98
99
100
101
/*
** ARCHIVE.CPP
**
** Written by Jari Laaksonen (2:221/360.20), 2 Sep 1994
** Based on the code by Heinz Ozwirk and David Gersic.
**
** Free for all participants of the C_ECHO & other conferences where
** this code is posted. Released to SNIPPETS by the authors.
**
** See the file WhichArc.DOC about archive types and file offsets
** for self extracting archives.
*/
#include "archive.hpp"
#include "whicharc.h"
int Archive::Scan (FILE *fp, char *szBuff, long flen)
{
if (offset > flen)
return 0;
int rc;
rc = SeekFile (fp, szBuff, offset);
if (rc > 0)
rc = Check (szBuff);
return (rc > UNKNOWN ? sfxtype : rc);
}
// Generic fingerprint check.
// LHA and PAK/ARC needs more complicated checking
// If some new archiver needs different check algorithm, derive a new
// class from class Archive and write a new Check() function.
int Archive::Check (char *szBuff)
{
char *p;
p = fingerprint;
while (*p)
{
if (*p != *szBuff)
return UNKNOWN;
p++;
szBuff++;
}
return type;
}
int LhaArchive::Check (char *szBuff)
{
int i, c;
for (c = 0, i = szBuff[0]; i--; c += (szBuff + 2)[i])
;
if (
((unsigned char) (c & 0x00FF)) == szBuff[1]
&& szBuff[2] == fingerprint[0]
&& szBuff[3] == fingerprint[1]
&& szBuff[4] == fingerprint[2]
&& szBuff[6] == fingerprint[3]
)
{
if (szBuff[5] > '1')
{
sfxtype = SFXLHA;
return LHA;
}
else
{
sfxtype = SFXLHARC;
return LHARC;
}
}
else return UNKNOWN;
}
int PakArchive::Check (char *szBuff)
{
if (szBuff[0] == 0x1A)
{
if (szBuff[1] == 0x0A || szBuff[1] == 0x0B)
{
sfxtype = SFXPAK;
return PAK;
}
else if (szBuff[1] > 0x14)
{
sfxtype = SFXARC6;
return ARC6;
}
else
{
sfxtype = SFXARC;
return ARC;
}
}
else return UNKNOWN;
}