-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathzint_helper.pas
234 lines (194 loc) · 6.36 KB
/
zint_helper.pas
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
221
222
223
224
225
226
227
228
229
230
231
232
233
unit zint_helper;
{
Based on Zint (done by Robin Stuart and the Zint team)
http://github.com/zint/zint
Translation by TheUnknownOnes
http://theunknownones.net
License: Apache License 2.0
}
{$IFDEF FPC}
{$mode objfpc}{$H+}
{$ENDIF}
interface
uses
SysUtils, zint;
function StrToArrayOfByte(const AString : String) : TArrayOfByte;
function ArrayOfByteToString(const AArray : TArrayOfByte) : String;
function StrToArrayOfChar(const AString : String) : TArrayOfChar;
function ArrayOfCharToString(const AArray : TArrayOfChar) : String;
function ArrayOfCharToArrayOfByte(const AArray : TArrayOfChar) : TArrayOfByte;
function ArrayOfByteToArrayOfChar(const AArray : TArrayOfByte) : TArrayOfChar;
procedure ArrayCopy(var ADestination : TArrayOfChar; const ASource : TArrayOfByte; ACount : NativeInt = MaxInt); overload;
procedure ArrayCopy(var ADestination : TArrayOfByte; const ASource : TArrayOfChar; ACount : NativeInt = MaxInt); overload;
procedure ArrayCopy(var ADestination : TArrayOfChar; const ASource : TArrayOfChar; ACount : NativeInt = MaxInt); overload;
procedure ArrayCopy(var ADestination : TArrayOfByte; const ASource : TArrayOfByte; ACount : NativeInt = MaxInt); overload;
procedure Fill(var ADestination : TArrayOfChar; ACount : NativeInt; AChar : Char; AStartIndex : NativeInt = 0); overload;
procedure Fill(var ADestination : TArrayOfSmallInt; ACount : NativeInt; AValue : Smallint; AStartIndex : NativeInt = 0); overload;
procedure Fill(var ADestination : TArrayOfInteger; ACount : NativeInt; AValue : NativeInt; AStartIndex : NativeInt = 0); overload;
procedure Fill(var ADestination : TArrayOfByte; ACount : NativeInt; AValue : Byte; AStartIndex : NativeInt = 0); overload;
implementation
uses
zint_common;
function StrToArrayOfByte(const AString: String): TArrayOfByte;
var
Len : NativeInt;
begin
Len := AString.Length;
if Len > 0 then
{$IFNDEF FPC}
{$if CompilerVersion >= 30}
Result := TEncoding.ANSI.GetBytes(AString);
{$else}
Result := @RawByteString(AString)[1];
{$endif}
{$ELSE}
Result := @RawByteString(AString)[1];
{$ENDIF}
SetLength(Result, Len + 1); //For terminal #0
Result[len] := 0;
end;
function ArrayOfByteToString(const AArray: TArrayOfByte): String;
var
i, ArrayLen : NativeInt;
begin
ArrayLen := ustrlen(AArray);
SetLength(Result, ArrayLen);
if ArrayLen > 0 then
for i := Low(AArray) to ArrayLen - 1 do
Result[i + 1] := Chr(AArray[i]);
end;
function StrToArrayOfChar(const AString: String): TArrayOfChar;
var
len : NativeInt;
begin
len := AString.Length;
SetLength(Result, len + 1);
AString.CopyTo(0, Result[0], 0, len);
Result[len] := #0;
end;
function ArrayOfCharToString(const AArray: TArrayOfChar): String;
var
i, ArrayLen : NativeInt;
begin
ArrayLen := strlen(AArray);
SetLength(Result, ArrayLen);
for i := 0 to ArrayLen - 1 do
Result[i + 1] := AArray[i];
end;
function ArrayOfCharToArrayOfByte(const AArray: TArrayOfChar): TArrayOfByte;
begin
SetLength(Result, strlen(AArray) + 1);
ArrayCopy(Result, AArray);
end;
function ArrayOfByteToArrayOfChar(const AArray: TArrayOfByte): TArrayOfChar;
begin
SetLength(Result, Length(AArray));
ArrayCopy(Result, AArray);
end;
procedure ArrayCopy(var ADestination: TArrayOfChar; const ASource: TArrayOfByte; ACount: NativeInt);
var
// i, j, cnt : NativeInt;
i : NativeInt;
begin
// i := Low(ADestination);
// j := Low(ASource);
// cnt := 0;
// while (i <= High(ADestination)) and (j <= High(ASource)) and (cnt <= ACount) do
// begin
// ADestination[i] := Char(ASource[j]);
// Inc(i);
// Inc(j);
// Inc(cnt);
// end;
if High(ADestination) < ACount then
ACount := High(ADestination);
if High(ASource) < ACount then
ACount := High(ASource);
for I := Low(ASource) to ACount do
ADestination[i] := Char(ASource[i]);
end;
procedure ArrayCopy(var ADestination: TArrayOfByte; const ASource: TArrayOfChar; ACount: NativeInt);
var
// i, j, cnt : NativeInt;
i : NativeInt;
begin
// i := Low(ADestination);
// j := Low(ASource);
// cnt := 0;
// while (i <= High(ADestination)) and (j <= High(ASource)) and (cnt <= ACount) do
// begin
// ADestination[i] := Ord(ASource[j]);
// Inc(i);
// Inc(j);
// Inc(cnt);
// end;
if High(ADestination) < ACount then
ACount := High(ADestination);
if High(ASource) < ACount then
ACount := High(ASource);
for I := Low(ASource) to ACount do
ADestination[i] := Ord(ASource[i]); // What happens if Char is > 255 ?
end;
procedure ArrayCopy(var ADestination: TArrayOfChar; const ASource: TArrayOfChar; ACount: NativeInt);
//var
// i, j, cnt : Integer;
begin
// i := Low(ADestination);
// j := Low(ASource);
// cnt := 0;
// while (i <= High(ADestination)) and (j <= High(ASource)) and (cnt <= ACount) do
// begin
// ADestination[i] := ASource[j];
// Inc(i);
// Inc(j);
// Inc(cnt);
// end;
if High(ADestination) < ACount then
ACount := High(ADestination);
if High(ASource) < ACount then
ACount := High(ASource);
Move(ASource[0], ADestination[0], ACount * SizeOf(Char));
end;
procedure ArrayCopy(var ADestination : TArrayOfByte; const ASource : TArrayOfByte; ACount : NativeInt = MaxInt);
//var
// i, j, cnt : Integer;
begin
// i := Low(ADestination);
// j := Low(ASource);
// cnt := 0;
// while (i <= High(ADestination)) and (j <= High(ASource)) and (cnt <= ACount) do
// begin
// ADestination[i] := ASource[j];
// Inc(i);
// Inc(j);
// Inc(cnt);
// end;
if High(ADestination) < ACount then
ACount := High(ADestination);
if High(ASource) < ACount then
ACount := High(ASource);
Move(ASource[0], ADestination[0], ACount);
end;
procedure Fill(var ADestination: TArrayOfChar; ACount: NativeInt; AChar: Char; AStartIndex: NativeInt);
begin
FillChar(ADestination[AStartIndex], ACount, AChar);
end;
procedure Fill(var ADestination: TArrayOfSmallInt; ACount: NativeInt; AValue: Smallint; AStartIndex: NativeInt);
var
i : NativeInt;
begin
for i := AStartIndex to AStartIndex + ACount - 1 do
ADestination[i] := AValue;
end;
procedure Fill(var ADestination: TArrayOfInteger; ACount: NativeInt; AValue: NativeInt; AStartIndex: NativeInt);
var
i : NativeInt;
begin
for i := AStartIndex to AStartIndex + ACount - 1 do
ADestination[i] := AValue;
end;
procedure Fill(var ADestination: TArrayOfByte; ACount: NativeInt; AValue: Byte; AStartIndex: NativeInt);
begin
FillChar(ADestination[AStartIndex], ACount, AValue);
end;
end.