forked from etotheipi/BitcoinArmory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinaryData.cpp
More file actions
224 lines (174 loc) · 6.07 KB
/
BinaryData.cpp
File metadata and controls
224 lines (174 loc) · 6.07 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
////////////////////////////////////////////////////////////////////////////////
// //
// Copyright (C) 2011-2012, Alan C. Reiner <alan.reiner@gmail.com> //
// Distributed under the GNU Affero General Public License (AGPL v3) //
// See LICENSE or http://www.gnu.org/licenses/agpl.html //
// //
////////////////////////////////////////////////////////////////////////////////
#include "BinaryData.h"
#include "BtcUtils.h"
////////////////////////////////////////////////////////////////////////////////
BinaryData::BinaryData(BinaryDataRef const & bdRef)
{
copyFrom(bdRef.getPtr(), bdRef.getSize());
}
////////////////////////////////////////////////////////////////////////////////
void BinaryData::copyFrom(BinaryDataRef const & bdr)
{
copyFrom( bdr.getPtr(), bdr.getSize() );
}
////////////////////////////////////////////////////////////////////////////////
BinaryDataRef BinaryData::getRef(void) const
{
return BinaryDataRef(getPtr(), getSize());
}
////////////////////////////////////////////////////////////////////////////////
BinaryData & BinaryData::append(BinaryDataRef const & bd2)
{
if(bd2.getSize()==0)
return (*this);
if(getSize()==0)
copyFrom(bd2.getPtr(), bd2.getSize());
else
data_.insert(data_.end(), bd2.getPtr(), bd2.getPtr()+bd2.getSize());
return (*this);
}
/////////////////////////////////////////////////////////////////////////////
BinaryData & BinaryData::append(uint8_t const * str, uint32_t sz)
{
BinaryDataRef appStr(str, sz);
return append(appStr);
}
////////////////////////////////////////////////////////////////////////////////
int32_t BinaryData::find(BinaryDataRef const & matchStr, uint32_t startPos)
{
int32_t finalAnswer = -1;
for(int32_t i=startPos; i<=(int32_t)getSize()-(int32_t)matchStr.getSize(); i++)
{
if(matchStr[0] != data_[i])
continue;
for(uint32_t j=0; j<matchStr.getSize(); j++)
{
if(matchStr[j] != data_[i+j])
break;
// If we are at this instruction and is the last index, it's a match
if(j==matchStr.getSize()-1)
finalAnswer = i;
}
if(finalAnswer != -1)
break;
}
return finalAnswer;
}
////////////////////////////////////////////////////////////////////////////////
int32_t BinaryData::find(BinaryData const & matchStr, uint32_t startPos)
{
BinaryDataRef bdrmatch(matchStr);
return find(bdrmatch, startPos);
}
////////////////////////////////////////////////////////////////////////////////
bool BinaryData::contains(BinaryData const & matchStr, uint32_t startPos)
{
return (find(matchStr, startPos) != -1);
}
////////////////////////////////////////////////////////////////////////////////
bool BinaryData::contains(BinaryDataRef const & matchStr, uint32_t startPos)
{
return (find(matchStr, startPos) != -1);
}
/////////////////////////////////////////////////////////////////////////////
bool BinaryData::startsWith(BinaryDataRef const & matchStr) const
{
if(matchStr.getSize() > getSize())
return false;
for(uint32_t i=0; i<matchStr.getSize(); i++)
if(matchStr[i] != (*this)[i])
return false;
return true;
}
/////////////////////////////////////////////////////////////////////////////
bool BinaryData::startsWith(BinaryData const & matchStr) const
{
if(matchStr.getSize() > getSize())
return false;
for(uint32_t i=0; i<matchStr.getSize(); i++)
if(matchStr[i] != (*this)[i])
return false;
return true;
}
/////////////////////////////////////////////////////////////////////////////
bool BinaryData::endsWith(BinaryDataRef const & matchStr) const
{
uint32_t sz = matchStr.getSize();
if(sz > getSize())
return false;
for(uint32_t i=0; i<sz; i++)
if(matchStr[sz-(i+1)] != (*this)[getSize()-(i+1)])
return false;
return true;
}
/////////////////////////////////////////////////////////////////////////////
bool BinaryData::endsWith(BinaryData const & matchStr) const
{
uint32_t sz = matchStr.getSize();
if(sz > getSize())
return false;
for(uint32_t i=0; i<sz; i++)
if(matchStr[sz-(i+1)] != (*this)[getSize()-(i+1)])
return false;
return true;
}
/////////////////////////////////////////////////////////////////////////////
BinaryDataRef BinaryData::getSliceRef(int32_t start_pos, uint32_t nChar) const
{
if(start_pos < 0)
start_pos = getSize() + start_pos;
if(start_pos + nChar > getSize())
{
cerr << "getSliceRef: Invalid BinaryData access" << endl;
return BinaryDataRef();
}
return BinaryDataRef( getPtr()+start_pos, nChar);
}
/////////////////////////////////////////////////////////////////////////////
BinaryData BinaryData::getSliceCopy(int32_t start_pos, uint32_t nChar) const
{
if(start_pos < 0)
start_pos = getSize() + start_pos;
if(start_pos + nChar > getSize())
{
cerr << "getSliceCopy: Invalid BinaryData access" << endl;
return BinaryData();
}
return BinaryData(getPtr()+start_pos, nChar);
}
/////////////////////////////////////////////////////////////////////////////
uint64_t BinaryReader::get_var_int(uint8_t* nRead)
{
uint32_t nBytes;
uint64_t varInt = BtcUtils::readVarInt( bdStr_.getPtr() + pos_, &nBytes);
if(nRead != NULL)
*nRead = nBytes;
pos_ += nBytes;
return varInt;
}
/////////////////////////////////////////////////////////////////////////////
uint64_t BinaryRefReader::get_var_int(uint8_t* nRead)
{
uint32_t nBytes;
uint64_t varInt = BtcUtils::readVarInt( bdRef_.getPtr() + pos_, &nBytes);
if(nRead != NULL)
*nRead = nBytes;
pos_ += nBytes;
return varInt;
}
/////////////////////////////////////////////////////////////////////////////
bool BinaryData::operator==(BinaryDataRef const & bd2) const
{
if(getSize() != bd2.getSize())
return false;
for(unsigned int i=0; i<getSize(); i++)
if( data_[i] != bd2[i])
return false;
return true;
}