-
Notifications
You must be signed in to change notification settings - Fork 3
/
Pattern.cs
154 lines (132 loc) · 3.76 KB
/
Pattern.cs
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*******************************************************************************
NbuExplorer - Nokia backup file parser, viewer and extractor
Copyright (C) 2010 Petr Vilem
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 3 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, see <http://www.gnu.org/licenses/>.
Project homepage: http://sourceforge.net/projects/nbuexplorer/
Author: Petr Vilem, [email protected]
*******************************************************************************/
using System.IO;
using System.Text;
namespace NbuExplorer
{
public class Pattern
{
public static Pattern Msg = new Pattern("BEGIN:VMSG", "END:VMSG", Encoding.Unicode);
public static Pattern Contact = new Pattern("BEGIN:VCARD", "END:VCARD", Encoding.UTF8);
public static Pattern Calendar = new Pattern("BEGIN:VCALENDAR", "END:VCALENDAR", Encoding.UTF8);
public static Pattern Bookmark = new Pattern("BEGIN:VBKM", "END:VBKM", Encoding.UTF8);
public static Pattern Jpeg = new Pattern(new byte[] { 0xFF, 0xD8 });
public static Pattern Media = new Pattern(new byte[] { 0x66, 0x74, 0x79, 0x70 });
public static Pattern PkZip = new Pattern(new byte[] { 0x50, 0x4B, 0x03, 0x04 }, new byte[] { 0x50, 0x4B, 0x05, 0x06 });
public static byte[] JpegEndSeq = new byte[] { 0xFF, 0xD9 };
private Encoding enc;
private byte[] startSeq;
private byte[] endSeq;
private int index = 0;
public static void ResetAll()
{
Msg.Reset();
Contact.Reset();
Calendar.Reset();
Bookmark.Reset();
Jpeg.Reset();
Media.Reset();
PkZip.Reset();
}
public Pattern(string start, string end, Encoding encoding)
{
enc = encoding;
startSeq = enc.GetBytes(start);
endSeq = enc.GetBytes(end);
}
public Pattern(byte[] start)
: this(start, new byte[] { })
{
}
public Pattern(byte[] start, byte[] end)
{
enc = Encoding.Unicode;
startSeq = start;
endSeq = end;
}
private long startIndex = 0;
public long StartIndex
{
get { return startIndex; }
}
private long length;
public long Length
{
get { return length; }
}
private bool active = false;
public bool Active
{
get { return active; }
}
public bool Step(byte input, long pos)
{
if (active)
{
if (endSeq[index] == input)
{
index++;
if (index == endSeq.Length)
{
length = pos - startIndex;
index = 0;
active = false;
return true;
}
}
else index = 0;
}
else
{
if (startSeq[index] == input)
{
index++;
if (index == startSeq.Length)
{
index = 0;
startIndex = pos - startSeq.Length;
if (endSeq.Length == 0)
{
length = startSeq.Length;
return true;
}
active = true;
}
}
else index = 0;
}
return false;
}
public byte[] GetCapture(Stream s)
{
byte[] buff = new byte[(int)length];
s.Seek(startIndex, SeekOrigin.Begin);
s.Read(buff, 0, buff.Length);
return buff;
}
public string GetCaptureAsString(Stream s)
{
return enc.GetString(GetCapture(s));
}
private void Reset()
{
active = false;
index = 0;
startIndex = 0;
}
}
}