forked from inversed-ru/InvLibs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
InvSys.pas
338 lines (283 loc) · 7.69 KB
/
InvSys.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
{
Copyright (c) Peter Karpov 2010 - 2017.
Usage of the works is permitted provided that this instrument is retained with
the works, so that any entity that uses the works is notified of this instrument.
DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
}
{$IFDEF FPC} {$MODE DELPHI} {$ENDIF}
unit InvSys; ////////////////////////////////////////////////////////////////////////
{
>> Version: 1.0
>> Description
Contains some basic convenient constants and routines. Success and Fail constants
are supposed to be used by functions that return operation status. Part of InvLibs
unit collection.
>> Author
Peter Karpov
Email : [email protected]
Homepage : inversed.ru
GitHub : inversed-ru
Twitter : @inversed_ru
>> Changelog
1.0 : 2017.12.02 - Timing and system sections (crossplatform compatibility)
- Endline, use Lazarus's LineEnding instead
- UniInt function (redundant)
- Bipolar type
~ BiInt function renamed to Sign
- RandBool function moved to RandVars
~ FreePascal compatibility
0.11 : 2015.08.05 + ExecNewProcess function
0.10 : 2015.04.17 + TIntFile and TRealFile types,
corresponding OpenRead and OpenWrite functions
0.9 : 2014.10.14 + RotateLeft, RotateRight procedures
~ Section order
0.8 : 2013.04.28 + UniInt, BiInt functions
0.7 : 2011.08.03 + SetConsoleSize procedure
0.5 : 2011.06.04 + Swap procedures
0.2 : 2011.03.17 + Bipolar type
0.0 : 2010.05.05 + Initial version
Notation: + added, - removed, * fixed, ~ changed
}
interface ///////////////////////////////////////////////////////////////////////////
const
Tab = #9;
Fail = False;
Success = True;
type
PReal = ^Real;
TProcedure = procedure;
Nothing = record end;
TByteFile = file of Byte;
TRealFile = file of Real;
TIntFile = file of Integer;
{-----------------------<< Basic >>-------------------------------------------------}
// Convert True to +1, False to -1
function Sign(
b : Boolean
) : Integer;
overload;
// Swap a and b
procedure Swap(
var a, b : Integer);
overload;
procedure Swap(
var a, b : Real);
overload;
procedure Swap(
var a, b : Pointer);
overload;
// Cyclic left shift: (a, b, c) -> (b, c, a)
procedure RotateLeft(
var a, b, c : Integer);
// Cyclic right shift: (a, b, c) -> (c, a, b)
procedure RotateRight(
var a, b, c : Integer);
{-----------------------<< Files >>-------------------------------------------------}
// Open F at Path for reading, return status
function OpenRead(
var F : TByteFile;
const Path : AnsiString
) : Boolean;
overload;
function OpenRead(
var F : TIntFile;
const Path : AnsiString
) : Boolean;
overload;
function OpenRead(
var F : TRealFile;
const Path : AnsiString
) : Boolean;
overload;
function OpenRead(
var F : Text;
const Path : AnsiString
) : Boolean;
overload;
// Open F at Path for writing, return status
function OpenWrite(
var F : TByteFile;
const Path : AnsiString
) : Boolean;
overload;
function OpenWrite(
var F : TIntFile;
const Path : AnsiString
) : Boolean;
overload;
function OpenWrite(
var F : TRealFile;
const Path : AnsiString
) : Boolean;
overload;
function OpenWrite(
var F : Text;
const Path : AnsiString
) : Boolean;
overload;
implementation //////////////////////////////////////////////////////////////////////
{-----------------------<< Basic >>-------------------------------------------------}
// Convert True to +1, False to -1
function Sign(
b : Boolean
) : Integer;
overload;
begin
Result := 2 * Ord(b) - 1;
end;
// #COPYPASTA need generics or preprocessor for other data types
// Swap a and b
procedure Swap(
var a, b : Integer);
overload;
var
Temp : Integer;
begin
Temp := a;
a := b;
b := Temp;
end;
procedure Swap(
var a, b : Real);
overload;
var
Temp : Real;
begin
Temp := a;
a := b;
b := Temp;
end;
procedure Swap(
var a, b : Pointer);
overload;
var
Temp : Pointer;
begin
Temp := a;
a := b;
b := Temp;
end;
// Cyclic left shift: (a, b, c) -> (b, c, a)
procedure RotateLeft(
var a, b, c : Integer);
var
Temp : Integer;
begin
Temp := a;
a := b;
b := c;
c := Temp
end;
// Cyclic right shift: (a, b, c) -> (c, a, b)
procedure RotateRight(
var a, b, c : Integer);
var
Temp : Integer;
begin
Temp := c;
c := b;
b := a;
a := Temp
end;
{-----------------------<< Files >>-------------------------------------------------}
{$IOCHECKS OFF}
// Open F at Path for reading, return status
function OpenRead(
var F : TByteFile;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Reset(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
function OpenRead(
var F : TRealFile;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Reset(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
function OpenRead(
var F : TIntFile;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Reset(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
function OpenRead(
var F : Text;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Reset(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
// Open F at Path for writing, return status
function OpenWrite(
var F : TByteFile;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Rewrite(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
function OpenWrite(
var F : TRealFile;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Rewrite(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
function OpenWrite(
var F : TIntFile;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Rewrite(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
function OpenWrite(
var F : Text;
const Path : AnsiString
) : Boolean;
overload;
begin
Assign(F, Path);
Rewrite(F);
if IOResult = 0 then
Result := Success else
Result := Fail;
end;
{$IOCHECKS ON}
end.