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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699 | unit GS5;
interface
uses Windows, GS5_Intf;
type
TRunMode = ( RM_SDK, RM_WRAP );
TGSObject = class(TObject)
protected
_handle: gs_handle_t;
public
constructor Create(handle: gs_handle_t);
destructor Destroy; override;
property Handle: gs_handle_t read _handle;
end;
//User defined variables or Parameters of action / licenses.
TGSVariable = class(TGSObject)
private
function getName: AnsiString;
function getType: var_type_t;
function getPermission: AnsiString;
function getValAsStr: AnsiString;
function getValAsFloat: Single;
function getValAsInt: Integer;
function getValAsInt64: Int64;
function isValid: Boolean;
function getValAsUTCTime: TDateTime;
function getValAsDouble: Double;
public
class function getTypeName(varType: var_type_t): AnsiString;
//Permission conversion helpers
class function PermissionFromString(const permitStr: AnsiString): Integer;
class function PermissionToString(permit: Integer): AnsiString;
//Setter
procedure fromString(const v: AnsiString);
procedure fromInt(const v: Integer);
procedure fromInt64(const v: Int64);
procedure fromFloat(const v: Single);
procedure fromDouble(const v: Double);
procedure fromUTCTime(const time: TDateTime);
property Name: AnsiString read getName;
property VarType: var_type_t read getType;
property Permission: AnsiString read getPermission;
property Valid: Boolean read isValid;
//Getter
property AsString: AnsiString read getValAsStr;
property AsInt: Integer read getValAsInt;
property AsInt64: Int64 read getValAsInt64;
property AsFloat: Single read getValAsFloat;
property AsDouble: Double read getValAsDouble;
property AsUTCTime: TDateTime read getValAsUTCTime;
end;
TGSAction = class(TGSObject)
private
_totalParams: Integer;
procedure AfterConstruction; override;
function getDescription: AnsiString;
function getId: action_id_t;
function getName: AnsiString;
function getWhatToDo: AnsiString;
public
function getParamByIndex(index: Integer): TGSVariable;
function getParamByName(const name: AnsiString): TGSVariable;
//Properties
property Name: AnsiString read getName;
property Id: action_id_t read getId;
property Description: AnsiString read getDescription;
property WhatToDo: AnsiString read getWhatToDo;
property ParamCount : Integer read _totalParams;
property Params[index: Integer]: TGSVariable read getParamByIndex;
end;
TGSEntity = class;
TGSLicense = class(TGSObject)
private
_totalParams: Integer;
_totalActs: Integer;
_licensedEntity: TGSEntity;
procedure AfterConstruction; override;
function getDescription: AnsiString;
function getId: AnsiString;
function getIsValid: Boolean;
function getName: AnsiString;
function getStatus: TLicenseStatus;
function getActionIds(index: Integer): action_id_t;
function getActionNames(index: Integer): AnsiString;
function getUnlockLicenseRequestCode: String;
function getParamStr(const paramName: AnsiString): AnsiString;
procedure setParamStr(const paramName, val: AnsiString);
function getParamInt(const paramName: AnsiString): Integer;
procedure setParamInt(const paramName: AnsiString; val: Integer);
function getParamInt64(const paramName: AnsiString): Int64;
procedure setParamInt64(const paramName: AnsiString; val: Int64);
function getParamBool(const paramName: AnsiString): Boolean;
procedure setParamBool(const paramName: AnsiString; val: Boolean);
function getParamFloat(const paramName: AnsiString): Single;
procedure setParamFloat(const paramName: AnsiString; val: Single);
function getParamUTCTime(const paramName: AnsiString): TDateTime;
procedure setParamUTCTime(const paramName: AnsiString; const val: TDateTime);
function getParamDouble(const paramName: AnsiString): Double;
procedure setParamDouble(const paramName: AnsiString;
const Value: Double);
public
constructor Create(hLic: TLicenseHandle); overload;
constructor Create(const licId: AnsiString); overload;
constructor Create(entity: TGSEntity; hLic: TLicenseHandle); overload;
function bindToEntity( entity: TGSEntity): Boolean;
function getParamByIndex(index: Integer): TGSVariable;
function getParamByName(const name: AnsiString): TGSVariable;
class function StatusToStr(stat: TLicenseStatus): string;
{** \brief Lock a license
*
* In GS5, we can lock a license from code explicitly, but cannot unlock it without applying an authorized action
*}
procedure lock;
//Properties
property Id: AnsiString read getId;
property Name: AnsiString read getName;
property Description: AnsiString read getDescription;
property Status: TLicenseStatus read getStatus;
property IsValid: Boolean read getIsValid;
property LicensedEntity: TGSEntity read _licensedEntity;
property ParamCount: Integer read _totalParams;
property Params[ index: Integer ]: TGSVariable read getParamByIndex;
//Param Helpers
property ParamStr[const paramName: AnsiString]: AnsiString read getParamStr write setParamStr;
property ParamInt[const paramName: AnsiString]: Integer read getParamInt write setParamInt;
property ParamInt64[const paramName: AnsiString]: Int64 read getParamInt64 write setParamInt64;
property ParamBool[const paramName: AnsiString]: Boolean read getParamBool write setParamBool;
property ParamFloat[const paramName: AnsiString]: Single read getParamFloat write setParamFloat;
property ParamDouble[const paramName: AnsiString]: Double read getParamDouble write setParamDouble;
property ParamUTCTime[const paramName: AnsiString]: TDateTime read getParamUTCTime write setParamUTCTime;
property ActionCount: Integer read _totalActs;
property ActionIDs[ index: Integer ]: action_id_t read getActionIds;
property ActionNames[ index: Integer ]: AnsiString read getActionNames;
property UnlockRequestCode: String read getUnlockLicenseRequestCode;
end;
TGSRequest = class(TGSObject)
private
function getCode: AnsiString;
public
//Global action targeting all entities
function addAction(actId: action_id_t): TGSAction; overload;
//Action targeting all licenses of an entity
function addAction(actId: action_id_t; entity: TGSEntity): TGSAction; overload;
//Action targeting a single license of an entity by object
function addAction(actId: action_id_t; lic: TGSLicense): TGSAction; overload;
//Action targeting a single license of an entity by names
function addAction(actId: action_id_t; const entityId, licenseId: AnsiString): TGSAction; overload;
property Code: AnsiString read getCode;
end;
TGSEntity = class(TGSObject)
private
_license: TGSLicense;
function getAttr: DWORD;
function getId: AnsiString;
function getName: AnsiString;
function getDescription: AnsiString;
function isAccessible: Boolean;
function isAccessing: Boolean;
function isUnlocked: Boolean;
function getUnlockEntityRequestCode: String;
function isLocked: Boolean;
public
constructor Create(hEntity: TEntityHandle);
destructor Destroy; override;
function beginAccess: Boolean;
function endAccess: Boolean;
/// Lock the bundled license
procedure lock;
//Properties
property License: TGSLicense read _license;
property Attribute: DWORD read getAttr;
property Id: AnsiString read getId;
property Name: AnsiString read getName;
property Description: AnsiString read getDescription;
property Accessing: Boolean read isAccessing;
property Accessible: Boolean read isAccessible;
property Unlocked: Boolean read isUnlocked;
property Locked: Boolean read isLocked;
property UnlockRequestCode: String read getUnlockEntityRequestCode;
end;
//TMovePackage
TMovePackage = class(TGSObject)
public
constructor Create(handle: TMPHandle);
destructor Destroy; override;
procedure addEntityId(const entityId: AnsiString);
///------- Move License Online --------
///Returns a receipt ( actually a SN ) from server on success
///
/// It will be used to activate app on the target machine so
/// should be saved in a safely place.
///
/// After this api returns, the entities in this move package are locked.
///
function upload(const preSN: AnsiString = ''):AnsiString;
function isTooBigToUpload: Boolean;
///----- Move License Offline ---------
///Returns encrypted data string of move package
/// It will be used to activate app on the target machine so
/// should be saved in a safely place.
///
/// On Success:
/// return non-empty string, and the entities in this move package are locked.
///
function exportData: AnsiString;
function getImportOfflineRequestCode: AnsiString;
function importOffline(const licenseCode: AnsiString): Boolean;
function importOnline(const preSN: AnsiString): Boolean;
function canPreliminarySNResolved: Boolean;
end;
TGSAppEventHandler = procedure (eventId: Integer) of object;
TGSLicenseEventHandler = procedure (eventId: Integer) of object;
TGSEntityEventHandler = procedure (eventId: Integer; entity: TGSEntity) of object;
TGSCore = class(TObject)
private
_rc: Integer;
// _totalEntities: Integer;
_appEventHandler : TGSAppEventHandler;
_licEventHandler : TGSLicenseEventHandler;
_entityEventHandler: TGSEntityEventHandler;
function getSDKVer: AnsiString;
function getLastErrorCode: Integer;
function getLastErrorMessage: AnsiString;
function getBuildId: Integer;
function getRunMode: TRunMode;
function isRunInVM: Boolean;
function getVarByName(const name: AnsiString): TGSVariable;
procedure OnEvent(eventId: Integer; hEvent: TEventHandle);
function getProductId: AnsiString;
function getProductName: AnsiString;
constructor Create;
function getUnlockAllEntitiesRequestCode: String;
function getCleanRequestCode: String;
function getDummyRequestCode: String;
function getFixRequestCode: String;
function getTotalEntities: Integer;
function getPreliminarySN: string;
public
class function getInstance: TGSCore;
//Convert event id to human readable string, for debug purpose
class function getEventName(const eventId: Integer): String;
{ Runtime Initializer, always update local storage as needed. [Read & Write] }
//Loads from local storage first, if not found, loads from external license file.
function init(const productId, productLic, licPassword: AnsiString): Boolean; overload;
//Loads from local storage first, if not found, loads from embedded license data.
//wrapped application embeds all parameters in game.
function init: Boolean; overload;
//Initialize from in-memory license data
function init(const productId: AnsiString; const pLicData: Pointer; licSize: Integer; const licPassword: AnsiString): Boolean; overload;
procedure cleanUp;
//Save license immediately if dirty
procedure flush;
function revokeApp: Boolean;
function revokeSN(const sn: AnsiString): Boolean;
function getEntityByIndex(index: Integer): TGSEntity;
function getEntityById(entityId: entity_id_t): TGSEntity;
//Variables
function addVariable(const varName: AnsiString; varType: var_type_t;
permission: DWORD; const initValStr: AnsiString): TGSVariable;
function removeVariable(const varName: AnsiString): Boolean;
function getTotalVariables: Integer;
function getVariableByIndex(idx: Integer): TGSVariable;
//app first launch
function isAppFirstLaunched: Boolean;
//Request
function createRequest: TGSRequest;
function applyLicenseCode(const code: AnsiString; const sn: AnsiString = ''): Boolean;
//---------- Time Engine Service ------------
procedure turnOnInternalTimer;
procedure turnOffInternalTimer;
function isInternalTimerActive: Boolean;
procedure tickFromExternalTimer;
procedure pauseTimeEngine;
procedure resumeTimeEngine;
function isTimeEngineActive: Boolean;
//-------- HTML Render -----------
function renderHTML(const url, title: AnsiString; width, height: Integer): Boolean; overload;
function renderHTML(const url, title: AnsiString; width, height: Integer;
resizable, exitAppWhenUIClosed, cleanUpAfterRendering: Boolean): Boolean; overload;
//-------- Monitor Events ----------
//------- Debug Helpers ---------
class function isDebugVersion: Boolean;
procedure trace(const msg: String);
//------ Server ----------
function isServerAlive: Boolean;
function applySN(const sn: AnsiString; pRetCode: PInteger = nil): Boolean;
function isValidSN(const sn: AnsiString): Boolean;
//Deactivate all entities
procedure lockAllEntities;
function isAllEntitiesLocked: Boolean;
//------ Move ------------
{ \brief Create a new move package
*
* \param mpDataStr the encrypted data string of a move package.
* if mpDataStr == '', then an empty move package is created
*}
function createMovePackage(const mpDataStr: AnsiString = ''): TMovePackage;
//Move the whole license via online license server
//Return: on success, a non-empty receipt (SN) to activate app later on target machine
function uploadApp(const preSN: AnsiString = ''): AnsiString;
//Move the whole license manually / offline
//Return: on success, a non-empty encrypted string contains the current license data.
function exportApp: AnsiString;
//======================================================
property ReturnCode: Integer read _rc;
property LastErrorMessage: AnsiString read getLastErrorMessage;
property LastErrorCode: Integer read getLastErrorCode;
property SDKVersion: AnsiString read getSDKVer;
property ProductName: AnsiString read getProductName;
property ProductId: AnsiString read getProductId;
property BuildId: Integer read getBuildId;
property RunMode: TRunMode read getRunMode;
property RunInVM: Boolean read isRunInVM;
property EntityCount: Integer read getTotalEntities;
property Entities[index: Integer]: TGSEntity read getEntityByIndex;
property Variables[ const name: AnsiString ]: TGSVariable read getVarByName;
property OnAppEvent: TGSAppEventHandler read _appEventHandler write _appEventHandler;
property OnLicenseEvent: TGSLicenseEventHandler read _licEventHandler write _licEventHandler;
property OnEntityEvent: TGSEntityEventHandler read _entityEventHandler write _entityEventHandler;
(* --------------- Request Code Helpers ------------------------ *)
//Unlock all entities request code
property UnlockRequestCode: String read getUnlockAllEntitiesRequestCode;
//Cleanup request code
property CleanRequestCode: String read getCleanRequestCode;
//license error fix request code
property FixRequestCode: String read getFixRequestCode;
//Dummy request code
property DummyRequestCode: String read getDummyRequestCode;
property PreliminarySN: String read getPreliminarySN;
end;
TLM_Inspector = class
protected
_lic: TGSLicense;
public
constructor Create(lic: TGSLicense);
//Properties
property License: TGSLicense read _lic;
end;
//*********** Built-in License Model Inspectors **************
TLM_Period = class
private
_lic: TGSLicense;
function getExpireDate: TDateTime;
function getExpirePeriodInSeconds: Integer;
function getFirstAccessDate: TDateTime;
function getSecondsLeft: Integer;
function getSecondsPassed: Integer;
public
constructor Create; overload;
constructor Create(lic: TGSLicense); overload;
procedure attach(lic: TGSLicense);
//The license has already been used before. (first access time is valid date time)
function isUsed: Boolean;
property ExpirePeriodInSeconds: Integer read getExpirePeriodInSeconds;
property SecondsLeft: Integer read getSecondsLeft;
property SecondsPassed: Integer read getSecondsPassed;
property FirstAccessDate: TDateTime read getFirstAccessDate; //UTC
property ExpireDate: TDateTime read getExpireDate; //UTC
end;
//Helpers
function UTCToLocal(const dtUTC: TDateTime): TDateTime;
function LocalToUTC(const dtLocal: TDateTime): TDateTime;
function UnixTimeToUTC(const unixTime: Int64): TDateTime;
function UTCToUnixTime(const dtUTC: TDateTime): Int64;
function TimeSpanStr(const seconds: Integer): string;
implementation
uses SysUtils, DateUtils
{$ifdef DEBUG}
,unDebugHelper
{$endif};
//------------ Helpers -----------------------------
function UTCToLocal(const dtUTC: TDateTime): TDateTime;
var
stUTC, stLocal: SYSTEMTIME;
begin
DateTimeToSystemTime(dtUTC, stUTC);
SystemTimeToTzSpecificLocalTime(nil, stUTC, stLocal);
Result := SystemTimeToDateTime(stLocal);
end;
function TzSpecificLocalTimeToSystemTime(lpTimeZoneInformation: PTimeZoneInformation;
var lpLocalTime, lpUniversalTime: TSystemTime): BOOL; stdcall; external kernel32 name 'TzSpecificLocalTimeToSystemTime';
function LocalToUTC(const dtLocal: TDateTime): TDateTime;
var
stUTC, stLocal: SYSTEMTIME;
begin
DateTimeToSystemTime(dtLocal, stLocal);
TzSpecificLocalTimeToSystemTime(nil, stLocal, stUTC);
Result := SystemTimeToDateTime(stUTC);
end;
function UnixTimeToUTC(const unixTime: Int64): TDateTime;
begin
Result := IncSecond(EncodeDateTime(1970,1,1,0,0,0,0), unixTime);
end;
function UTCToUnixTime(const dtUTC: TDateTime): Int64;
begin
Result := SecondsBetween(dtUTC, EncodeDateTime(1970,1,1,0,0,0,0));
end;
function TimeSpanStr(const seconds: Integer): string;
const
SecsPerHour = SecsPerMin * MinsPerHour;
var
x, d, h, m, s : Integer;
begin
d := seconds div SecsPerDay;
x := seconds - d * SecsPerDay;
h := x div SecsPerHour;
x := x - h * SecsPerHour;
m := x div SecsPerMin;
s := x - m * SecsPerMin;
Result := '';
if d > 0 then begin
Result := Result + IntToStr(d) + ' day';
if d > 1 then Result := Result + 's';
end;
if h > 0 then begin
Result := Result + ' ' + IntToStr(h) + ' hour';
if h > 1 then Result := Result + 's';
end;
if m > 0 then begin
Result := Result + ' ' + IntToStr(m) + ' minute';
if m > 1 then Result := Result + 's';
end;
if s > 0 then begin
Result := Result + ' ' + IntToStr(s) + ' second';
if s > 1 then Result := Result + 's';
end;
Result := TrimLeft(Result);
end;
{ TGSCore }
function TGSCore.addVariable(const varName: AnsiString; varType: var_type_t;
permission: DWORD; const initValStr: AnsiString): TGSVariable;
var
h : gs_handle_t;
begin
h := gsAddVariable(PAnsiChar(varName), varType, permission, PAnsiChar(initValStr));
if h <> INVALID_GS_HANDLE then Result := TGSVariable.Create(h) else Result := nil;
end;
function TGSCore.applyLicenseCode(const code: AnsiString; const sn: AnsiString): Boolean;
begin
Result := gsApplyLicenseCodeEx(PAnsiChar(code), PAnsiChar(sn), nil);
end;
procedure s_MonitorCB(evtId: Integer; hEvent: TEntityHandle; usrData: Pointer);stdcall;
begin
TGSCore(usrData).OnEvent(evtId, hEvent);
end;
constructor TGSCore.Create;
begin
_rc := 0;
_appEventHandler := nil;
_licEventHandler := nil;
_entityEventHandler := nil;
gsCreateMonitorEx(s_MonitorCB, self, '$SDK');
end;
function TGSCore.init(const productId, productLic,
licPassword: AnsiString): Boolean;
begin
_rc := gsInit(PAnsiChar(productId), PAnsiChar(productLic), PAnsiChar(licPassword), nil);
Result := _rc = 0;
end;
function TGSCore.init(const productId: AnsiString; const pLicData: Pointer; licSize: Integer; const licPassword: AnsiString): Boolean;
begin
_rc := gsInitEx(PAnsiChar(productId), pLicData, licSize, PAnsiChar(licPassword), nil);
Result := _rc = 0;
end;
function TGSCore.init: Boolean;
begin
_rc := gsInit(nil, nil, nil, nil);
Result := _rc = 0;
end;
function TGSCore.createRequest: TGSRequest;
begin
Result := TGSRequest.Create(gsCreateRequest);
end;
procedure TGSCore.cleanUp;
begin
_rc := gsCleanUp;
end;
procedure TGSCore.flush;
begin
gsFlush;
end;
function TGSCore.getBuildId: Integer;
begin
Result := gsGetBuildId;
end;
function TGSCore.getEntityById(entityId: entity_id_t): TGSEntity;
var
h : gs_handle_t;
begin
h := gsOpenEntityById(entityId);
if h <> INVALID_GS_HANDLE then Result := TGSEntity.Create(h)
else Result := nil;
end;
function TGSCore.getEntityByIndex(index: Integer): TGSEntity;
var
h: gs_handle_t;
begin
if (index >= 0) and (index < EntityCount) then h := gsOpenEntityByIndex(index)
else h := INVALID_GS_HANDLE;
if h <> INVALID_GS_HANDLE then Result := TGSEntity.Create(h)
else Result := nil;
end;
function TGSCore.getLastErrorCode: Integer;
begin
Result := gsGetLastErrorCode;
end;
function TGSCore.getLastErrorMessage: AnsiString;
begin
Result := gsGetLastErrorMessage;
end;
function TGSCore.getProductId: AnsiString;
begin
Result := gsGetProductId;
end;
function TGSCore.getProductName: AnsiString;
begin
Result := gsGetProductName;
end;
function TGSCore.getRunMode: TRunMode;
begin
if gsRunInWrappedMode then Result := RM_WRAP
else Result := RM_SDK;
end;
function TGSCore.getSDKVer: AnsiString;
begin
Result := gsGetVersion;
end;
function TGSCore.getVarByName(const name: AnsiString): TGSVariable;
var
h: gs_handle_t;
begin
h := gsGetVariable(PAnsiChar(name));
if h <> INVALID_GS_HANDLE then Result := TGSVariable.Create(h)
else Result := nil;
end;
function TGSCore.isInternalTimerActive: Boolean;
begin
Result := gsIsInternalTimerActive;
end;
function TGSCore.isRunInVM: Boolean;
begin
Result := gsRunInsideVM($FFFFFFFF);
end;
function TGSCore.isTimeEngineActive: Boolean;
begin
Result := gsIsTimeEngineActive;
end;
procedure TGSCore.OnEvent(eventId: Integer; hEvent: TEventHandle);
var
entity: TGSEntity;
evtType: TEventType;
begin
evtType := gsGetEventType(hEvent);
case evtType of
EVENT_TYPE_APP:
if Assigned(_appEventHandler) then _appEventHandler(eventId);
EVENT_TYPE_LICENSE:
if Assigned(_licEventHandler) then _licEventHandler(eventId);
EVENT_TYPE_ENTITY:
if Assigned(_entityEventHandler) then begin
entity := TGSEntity.Create(gsGetEventSource(hEvent));
try
_entityEventHandler(eventId, entity);
finally
entity.Free;
end;
end;
end;
end;
procedure TGSCore.pauseTimeEngine;
begin
gsPauseTimeEngine;
end;
function TGSCore.removeVariable(const varName: AnsiString): Boolean;
begin
Result := gsRemoveVariable(PAnsiChar(varName));
end;
function TGSCore.renderHTML(const url, title: AnsiString; width,
height: Integer): Boolean;
begin
Result := gsRenderHTML(PAnsiChar(url), PAnsiChar(title), width, height);
end;
function TGSCore.renderHTML(const url, title: AnsiString; width,
height: Integer; resizable, exitAppWhenUIClosed,
cleanUpAfterRendering: Boolean): Boolean;
begin
Result := gsRenderHTMLEx(PAnsiChar(url), PAnsiChar(title), width, height, resizable, exitAppWhenUIClosed, cleanUpAfterRendering);
end;
procedure TGSCore.resumeTimeEngine;
begin
gsResumeTimeEngine;
end;
procedure TGSCore.tickFromExternalTimer;
begin
gsTickFromExternalTimer;
end;
procedure TGSCore.turnOffInternalTimer;
begin
gsTurnOffInternalTimer;
end;
procedure TGSCore.turnOnInternalTimer;
begin
gsTurnOnInternalTimer;
end;
var
s_core : TGSCore = nil;
class function TGSCore.getInstance: TGSCore;
begin
if s_core = nil then begin
s_core := TGSCore.Create;
end;
Result := s_core;
end;
class function TGSCore.isDebugVersion: Boolean;
begin
Result := gsIsDebugVersion;
end;
procedure TGSCore.trace(const msg: String);
begin
gsTrace(PAnsiChar(msg));
end;
type
TEventIdName = record
id: Integer;
name: String;
end;
var
s_id_names: array [0..20] of TEventIdName = (
( id: EVENT_APP_BEGIN; name: 'EVENT_APP_BEGIN'),
( id: EVENT_APP_RUN; name: 'EVENT_APP_RUN'),
( id: EVENT_APP_END; name: 'EVENT_APP_END'),
( id: EVENT_APP_CLOCK_ROLLBACK; name: 'EVENT_APP_CLOCK_ROLLBACK'),
( id: EVENT_APP_INTEGRITY_CORRUPT; name: 'EVENT_APP_INTEGRITY_CORRUPT'),
( id: EVENT_PASS_BEGIN_RING1; name: 'EVENT_PASS_BEGIN_RING1'),
( id: EVENT_PASS_BEGIN_RING2; name: 'EVENT_PASS_BEGIN_RING2'),
( id: EVENT_PASS_END_RING1; name: 'EVENT_PASS_END_RING1'),
( id: EVENT_PASS_END_RING2; name: 'EVENT_PASS_END_RING2'),
( id: EVENT_PASS_CHANGE; name: 'EVENT_PASS_CHANGE'),
( id: EVENT_LICENSE_NEWINSTALL; name: 'EVENT_LICENSE_NEWINSTALL'),
( id: EVENT_LICENSE_READY; name: 'EVENT_LICENSE_READY'),
( id: EVENT_LICENSE_FAIL; name: 'EVENT_LICENSE_FAIL'),
( id: EVENT_LICENSE_LOADING; name: 'EVENT_LICENSE_LOADING'),
( id: EVENT_ENTITY_TRY_ACCESS; name: 'EVENT_ENTITY_TRY_ACCESS'),
( id: EVENT_ENTITY_ACCESS_STARTED; name: 'EVENT_ENTITY_ACCESS_STARTED'),
( id: EVENT_ENTITY_ACCESS_ENDING; name: 'EVENT_ENTITY_ACCESS_ENDING'),
( id: EVENT_ENTITY_ACCESS_ENDED; name: 'EVENT_ENTITY_ACCESS_ENDED'),
( id: EVENT_ENTITY_ACCESS_INVALID; name: 'EVENT_ENTITY_ACCESS_INVALID'),
( id: EVENT_ENTITY_ACCESS_HEARTBEAT; name: 'EVENT_ENTITY_ACCESS_HEARTBEAT'),
( id: EVENT_ENTITY_ACTION_APPLIED; name: 'EVENT_ENTITY_ACTION_APPLIED')
);
class function TGSCore.getEventName(const eventId: Integer): String;
var
i: Integer;
begin
for i := 0 to High(s_id_names) do begin
if s_id_names[i].id = eventId then begin
Result := s_id_names[i].name;
Exit;
end;
end;
Result := Format('Unknown Event [%d]', [eventId]);
end;
function TGSCore.getUnlockAllEntitiesRequestCode: String;
begin
with createRequest do
try
addAction(ACT_UNLOCK);
Result := Code;
finally
Free;
end;
end;
function TGSCore.getFixRequestCode: String;
begin
with createRequest do
try
addAction(ACT_FIX);
Result := Code;
finally
Free;
end;
end;
function TGSCore.getCleanRequestCode: String;
begin
with createRequest do
try
addAction(ACT_CLEAN);
Result := Code;
finally
Free;
end;
end;
function TGSCore.getDummyRequestCode: String;
begin
with createRequest do
try
addAction(ACT_DUMMY);
Result := Code;
finally
Free;
end;
end;
function TGSCore.getTotalEntities: Integer;
begin
Result := gsGetEntityCount;
end;
function TGSCore.getTotalVariables: Integer;
begin
Result := gsGetTotalVariables;
end;
function TGSCore.getVariableByIndex(idx: Integer): TGSVariable;
begin
Result := TGSVariable.Create(gsGetVariableByIndex(idx));
end;
function TGSCore.isAppFirstLaunched: Boolean;
begin
Result := gsIsAppFirstLaunched;
end;
function TGSCore.isServerAlive: Boolean;
begin
Result := gsIsServerAlive(-1);
end;
function TGSCore.applySN(const sn: AnsiString; pRetCode: PInteger): Boolean;
var
psnRef: PAnsiChar;
begin
Result := gsApplySN(PAnsiChar(sn), pRetCode, psnRef, -1);
end;
function TGSCore.revokeApp: Boolean;
begin
Result := gsRevokeApp(-1, nil);
end;
function TGSCore.revokeSN(const sn: AnsiString): Boolean;
begin
Result := gsRevokeSN(-1, PAnsiChar(sn));
end;
function TGSCore.getPreliminarySN: string;
begin
Result := gsGetPreliminarySN;
end;
function TGSCore.uploadApp(const preSN: AnsiString): AnsiString;
begin
//make sure we have a valid preliminary serial number for online operation
if (preSN <> '') or gsMPCanPreliminarySNResolved(nil) then
Result := gsMPUploadApp(PAnsiChar(preSN), -1)
else
raise Exception.Create('TGSCore.uploadApp: Preliminary Serial must be available to upload app!');
end;
function TGSCore.createMovePackage(
const mpDataStr: AnsiString): TMovePackage;
var
hMP: TMPHandle;
begin
if mpDataStr = '' then hMP := gsMPCreate(0)
else hMP := gsMPOpen(PAnsiChar(mpDataStr));
if hMP = nil then Result := nil
else Result := TMovePackage.Create(hMP);
end;
function TGSCore.exportApp: AnsiString;
begin
Result := gsMPExportApp;
end;
function TGSCore.isValidSN(const sn: AnsiString): Boolean;
begin
Result := gsIsSNValid(PAnsiChar(sn), -1);
end;
function TGSCore.isAllEntitiesLocked: Boolean;
var
i, N: Integer;
e: TGSEntity;
begin
Result := False;
N := getTotalEntities;
for i := 0 to N -1 do
try
e := getEntityByIndex(i);
if not e.isLocked then Exit;
finally
e.Free;
end;
Result := true;
end;
procedure TGSCore.lockAllEntities;
var
i, N: Integer;
e: TGSEntity;
begin
N := getTotalEntities;
for i := 0 to N -1 do
try
e := getEntityByIndex(i);
e.lock;
finally
e.Free;
end;
end;
{ TGSObject }
constructor TGSObject.Create(handle: gs_handle_t);
begin
if handle = INVALID_GS_HANDLE then raise Exception.Create('TGSObject.Create >> Invalid Handle!');
_handle := handle;
end;
destructor TGSObject.Destroy;
begin
gsCloseHandle(_handle);
inherited;
end;
{ TGSEntity }
function TGSEntity.beginAccess: Boolean;
begin
Result := gsBeginAccessEntity(_handle);
end;
constructor TGSEntity.Create(hEntity: TEntityHandle);
var
h: gs_handle_t;
begin
inherited Create(hEntity);
_license := nil;
if gsHasLicense(_handle) then begin
h := gsOpenLicense(_handle);
if h <> INVALID_GS_HANDLE then _license := TGSLicense.Create(Self, h);
end;
end;
destructor TGSEntity.Destroy;
begin
_license.Free;
inherited;
end;
function TGSEntity.endAccess: Boolean;
begin
Result := gsEndAccessEntity(_handle);
end;
function TGSEntity.getAttr: DWORD;
begin
Result := gsGetEntityAttributes(_handle);
end;
function TGSEntity.getDescription: AnsiString;
begin
Result := gsGetEntityDescription(_handle);
end;
function TGSEntity.getId: AnsiString;
begin
Result := gsGetEntityId(_handle);
end;
function TGSEntity.getName: AnsiString;
begin
Result := gsGetEntityName(_handle);
end;
function TGSEntity.getUnlockEntityRequestCode: String;
begin
with TGSCore.getInstance.createRequest do
try
addAction(ACT_UNLOCK, self);
Result := Code;
finally
Free;
end;
end;
function TGSEntity.isAccessible: Boolean;
begin
Result := (self.Attribute and ENTITY_ATTRIBUTE_ACCESSIBLE) <> 0;
end;
function TGSEntity.isAccessing: Boolean;
begin
Result := (self.Attribute and ENTITY_ATTRIBUTE_ACCESSING) <> 0;
end;
function TGSEntity.isLocked: Boolean;
begin
Result := (self.Attribute and ENTITY_ATTRIBUTE_LOCKED) <> 0;
end;
function TGSEntity.isUnlocked: Boolean;
begin
Result := (self.Attribute and ENTITY_ATTRIBUTE_UNLOCKED) <> 0;
end;
procedure TGSEntity.lock;
begin
self._license.lock;
end;
{ TGSLicense }
procedure TGSLicense.AfterConstruction;
begin
inherited;
_totalParams := gsGetLicenseParamCount(_handle);
_totalActs := gsGetActionInfoCount(_handle);
end;
function TGSLicense.bindToEntity(entity: TGSEntity): Boolean;
begin
if gsBindLicense(entity.Handle, Handle) then begin
_licensedEntity := entity;
Result := True;
end else Result := False;
end;
constructor TGSLicense.Create(entity: TGSEntity; hLic: TLicenseHandle);
begin
inherited Create(hLic);
_licensedEntity := entity;
end;
constructor TGSLicense.Create(hLic: TLicenseHandle);
begin
inherited Create(hLic);
_licensedEntity := nil;
end;
constructor TGSLicense.Create(const licId: AnsiString);
begin
self.Create(gsCreateLicense(PAnsiChar(licId)));
end;
function TGSLicense.getActionIds(index: Integer): action_id_t;
begin
gsGetActionInfoByIndex(_handle, index, Result);
end;
function TGSLicense.getActionNames(index: Integer): AnsiString;
var
dummy: action_id_t;
begin
Result := gsGetActionInfoByIndex(_handle, index, dummy);
end;
function TGSLicense.getDescription: AnsiString;
begin
Result := gsGetLicenseDescription(_handle);
end;
function TGSLicense.getId: AnsiString;
begin
Result := gsGetLicenseId(_handle);
end;
function TGSLicense.getIsValid: Boolean;
begin
Result := gsIsLicenseValid(_handle);
end;
function TGSLicense.getName: AnsiString;
begin
Result := gsGetLicenseName(_handle);
end;
function TGSLicense.getParamByIndex(index: Integer): TGSVariable;
var
h : gs_handle_t;
begin
Result := nil;
if (index >= 0) and (index < _totalParams) then begin
h := gsGetLicenseParamByIndex(_handle, index);
if h <> INVALID_GS_HANDLE then Result := TGSVariable.Create(h);
end;
end;
function TGSLicense.getParamByName(const name: AnsiString): TGSVariable;
var
h : gs_handle_t;
begin
Result := nil;
h := gsGetLicenseParamByName(_handle, PAnsiChar(name));
if h <> INVALID_GS_HANDLE then Result := TGSVariable.Create(h);
end;
function TGSLicense.getParamBool(const paramName: AnsiString): Boolean;
begin
with getParamByName(paramName) do
try
Result := AsInt <> 0;
finally
Free;
end;
end;
function TGSLicense.getParamFloat(const paramName: AnsiString): Single;
begin
with getParamByName(paramName) do
try
Result := AsFloat;
finally
Free;
end;
end;
function TGSLicense.getParamDouble(const paramName: AnsiString): Double;
begin
with getParamByName(paramName) do
try
Result := AsDouble;
finally
Free;
end;
end;
function TGSLicense.getParamInt(const paramName: AnsiString): Integer;
begin
with getParamByName(paramName) do
try
Result := AsInt;
finally
Free;
end;
end;
function TGSLicense.getParamInt64(const paramName: AnsiString): Int64;
begin
with getParamByName(paramName) do
try
Result := AsInt64;
finally
Free;
end;
end;
function TGSLicense.getParamStr(
const paramName: AnsiString): AnsiString;
begin
with getParamByName(paramName) do
try
Result := AsString;
finally
Free;
end;
end;
function TGSLicense.getParamUTCTime(
const paramName: AnsiString): TDateTime;
begin
with getParamByName(paramName) do
try
Result := AsUTCTime;
finally
Free;
end;
end;
procedure TGSLicense.setParamBool(const paramName: AnsiString;
val: Boolean);
begin
with getParamByName(paramName) do
try
fromInt(Ord(val));
finally
Free;
end;
end;
procedure TGSLicense.setParamFloat(const paramName: AnsiString;
val: Single);
begin
with getParamByName(paramName) do
try
fromFloat(val);
finally
Free;
end;
end;
procedure TGSLicense.setParamDouble(const paramName: AnsiString;
const Value: Double);
begin
with getParamByName(paramName) do
try
fromDouble(Value);
finally
Free;
end;
end;
procedure TGSLicense.setParamInt(const paramName: AnsiString;
val: Integer);
begin
with getParamByName(paramName) do
try
fromInt(val);
finally
Free;
end;
end;
procedure TGSLicense.setParamInt64(const paramName: AnsiString;
val: Int64);
begin
with getParamByName(paramName) do
try
fromInt64(val);
finally
Free;
end;
end;
procedure TGSLicense.setParamStr(const paramName, val: AnsiString);
begin
{$ifdef DEBUG}
DebugMsg('TGSLicense.setParamStr(%s, %s)', [paramName, val]);
{$endif}
with getParamByName(paramName) do
try
fromString(val);
finally
Free;
end;
end;
procedure TGSLicense.setParamUTCTime(const paramName: AnsiString;
const val: TDateTime);
begin
with getParamByName(paramName) do
try
fromUTCTime(val);
finally
Free;
end;
end;
function TGSLicense.getStatus: TLicenseStatus;
begin
Result := gsGetLicenseStatus(_handle);
end;
function TGSLicense.getUnlockLicenseRequestCode: String;
begin
with TGSCore.getInstance.createRequest do
try
addAction(ACT_UNLOCK);
Result := Code;
finally
Free;
end;
end;
class function TGSLicense.StatusToStr(stat: TLicenseStatus): string;
begin
case stat of
STATUS_INVALID: Result := 'STATUS_INVALID';
STATUS_LOCKED: Result := 'STATUS_LOCKED';
STATUS_UNLOCKED: Result := 'STATUS_UNLOCKED';
STATUS_ACTIVE: Result := 'STATUS_ACTIVE';
else
Result := 'Unknown Status: ' + IntToStr(Ord(stat));
end;
end;
procedure TGSLicense.lock;
begin
gsLockLicense(_handle);
end;
{ TGSAction }
procedure TGSAction.AfterConstruction;
begin
inherited;
_totalParams := gsGetActionParamCount(_handle);
end;
function TGSAction.getDescription: AnsiString;
begin
Result := gsGetActionDescription(_handle);
end;
function TGSAction.getId: action_id_t;
begin
Result := gsGetActionId(_handle);
end;
function TGSAction.getName: AnsiString;
begin
Result := gsGetActionName(_handle);
end;
function TGSAction.getParamByIndex(index: Integer): TGSVariable;
var
h: gs_handle_t;
begin
Result := nil;
if (index >= 0) and (index < _totalParams) then begin
h := gsGetActionParamByIndex(_handle, index);
if h <> INVALID_GS_HANDLE then Result := TGSVariable.Create(h);
end;
end;
function TGSAction.getParamByName(const name: AnsiString): TGSVariable;
var
h : gs_handle_t;
begin
h := gsGetActionParamByName(_handle, PAnsiChar(name));
if h <> INVALID_GS_HANDLE then Result := TGSVariable.Create(h)
else Result := nil;
end;
function TGSAction.getWhatToDo: AnsiString;
begin
Result := gsGetActionString(_handle);
end;
{ TGSVariable }
function TGSVariable.getName: AnsiString;
begin
Result := gsGetVariableName(_handle);
end;
function TGSVariable.getPermission: AnsiString;
begin
Result := PermissionToString(gsGetVariablePermission(_handle));
end;
function TGSVariable.getType: var_type_t;
begin
Result := gsGetVariableType(_handle);
end;
class function TGSVariable.getTypeName(varType: var_type_t): AnsiString;
begin
Result := gsVariableTypeToString(varType);
end;
function TGSVariable.getValAsFloat: Single;
begin
if not gsGetVariableValueAsFloat(_handle, Result) then
raise Exception.Create('Float conversion error');
end;
function TGSVariable.getValAsInt: Integer;
begin
if not gsGetVariableValueAsInt(_handle, Result) then
raise Exception.Create('Integer conversion error');
end;
function TGSVariable.getValAsInt64: Int64;
begin
if not gsGetVariableValueAsInt64(_handle, Result) then
raise Exception.Create('Int64 conversion error');
end;
function TGSVariable.getValAsStr: AnsiString;
begin
Result := gsGetVariableValueAsString(_handle);
end;
procedure TGSVariable.fromInt(const v: Integer);
begin
if not gsSetVariableValueFromInt(_handle, v) then
raise Exception.Create('Integer conversion error');
end;
procedure TGSVariable.fromString(const v: AnsiString);
begin
{$ifdef DEBUG}
DebugMsg('TGSVariable.fromString: perm [ %s ]', [ Self.Permission ]);
{$endif}
if not gsSetVariableValueFromString(_handle, PAnsiChar(v)) then
raise Exception.Create('AnsiString conversion error');
end;
procedure TGSVariable.fromFloat(const v: Single);
begin
if not gsSetVariableValueFromFloat(_handle, v) then
raise Exception.Create('Float conversion error');
end;
procedure TGSVariable.fromInt64(const v: Int64);
begin
if not gsSetVariableValueFromInt64(_handle, v) then
raise Exception.Create('Int64 conversion error');
end;
function TGSVariable.isValid: Boolean;
begin
Result := gsIsVariableValid(_handle);
end;
procedure TGSVariable.fromUTCTime(const time: TDateTime);
var
t: Int64;
begin
t := UTCToUnixTime(time);
if not gsSetVariableValueFromTime(_handle, t) then
raise Exception.Create('Time conversion error');
end;
function TGSVariable.getValAsUTCTime: TDateTime;
var
t: Int64;
begin
if not gsGetVariableValueAsTime(_handle, t) then
raise Exception.Create('Time conversion error');
Result := UnixTimeToUTC( t );
end;
procedure TGSVariable.fromDouble(const v: Double);
begin
if not gsSetVariableValueFromDouble(_handle, v) then
raise Exception.Create('Double conversion error');
end;
function TGSVariable.getValAsDouble: Double;
begin
if not gsGetVariableValueAsDouble(_handle, Result) then
raise Exception.Create('Double conversion error');
end;
{ TGSRequest }
function TGSRequest.addAction(actId: action_id_t;
lic: TGSLicense): TGSAction;
var
h: gs_handle_t;
begin
h := gsAddRequestAction(_handle, actId, lic._handle);
if h <> INVALID_GS_HANDLE then Result := TGSAction.Create(h) else Result := nil;
end;
function TGSRequest.addAction(actId: action_id_t; const entityId,
licenseId: AnsiString): TGSAction;
var
h: gs_handle_t;
begin
h := gsAddRequestActionEx(_handle, actId, PAnsiChar(entityId), PAnsiChar(licenseId));
if h <> INVALID_GS_HANDLE then Result := TGSAction.Create(h) else Result := nil;
end;
function TGSRequest.addAction(actId: action_id_t): TGSAction;
var
h: gs_handle_t;
begin
h := gsAddRequestActionEx(_handle, actId, nil, nil);
if h <> INVALID_GS_HANDLE then Result := TGSAction.Create(h) else Result := nil;
end;
function TGSRequest.addAction(actId: action_id_t;
entity: TGSEntity): TGSAction;
var
h: gs_handle_t;
begin
h := gsAddRequestActionEx(_handle, actId, PAnsiChar(entity.Name), nil);
if h <> INVALID_GS_HANDLE then Result := TGSAction.Create(h) else Result := nil;
end;
function TGSRequest.getCode: AnsiString;
begin
Result := gsGetRequestCode(_handle);
end;
class function TGSVariable.PermissionFromString(const permitStr: AnsiString): Integer;
begin
Result := gsVariablePermissionFromString(PAnsiChar(permitStr));
end;
class function TGSVariable.PermissionToString(permit: Integer): AnsiString;
begin
SetLength(Result, 32);
Result := gsVariablePermissionToString(permit, PAnsiChar(Result), 32);
end;
{ TLM_Period }
procedure TLM_Period.attach(lic: TGSLicense);
begin
_lic := lic;
end;
constructor TLM_Period.Create(lic: TGSLicense);
begin
_lic := lic;
end;
constructor TLM_Period.Create;
begin
end;
function TLM_Period.getExpireDate: TDateTime;
begin
Result := IncSecond(self.FirstAccessDate, Self.ExpirePeriodInSeconds);
end;
function TLM_Period.getExpirePeriodInSeconds: Integer;
begin
Result := _lic.getParamByName('periodInSeconds').getValAsInt;
end;
function TLM_Period.getFirstAccessDate: TDateTime;
var
v : TGSVariable;
begin
v := _lic.getParamByName('timeFirstAccess');
try
Result := UnixTimeToUTC(v.getValAsInt64);
except
raise ERangeError.Create('TLM_Period.FirstAccessDate');
end;
end;
function TLM_Period.getSecondsLeft: Integer;
begin
Result := Self.ExpirePeriodInSeconds - Self.SecondsPassed;
if Result < 0 then Result := 0;
end;
function TLM_Period.getSecondsPassed: Integer;
begin
if isUsed then begin
Result := SecondsBetween(Now, UTCToLocal(Self.getFirstAccessDate));
if Result < 0 then Result := 0;
end else begin
Result := 0;
end;
end;
function TLM_Period.isUsed: Boolean;
begin
Result := _lic.getParamByName('timeFirstAccess').Valid;
end;
{ TLM_Inspector }
constructor TLM_Inspector.Create(lic: TGSLicense);
begin
_lic := lic;
end;
{ TMovePackage }
procedure TMovePackage.addEntityId(const entityId: AnsiString);
begin
gsMPAddEntity(_handle, PAnsiChar(entityId));
end;
function TMovePackage.canPreliminarySNResolved: Boolean;
begin
Result := gsMPCanPreliminarySNResolved(_handle);
end;
constructor TMovePackage.Create(handle: TMPHandle);
begin
inherited Create(handle);
end;
destructor TMovePackage.Destroy;
begin
inherited;
end;
function TMovePackage.exportData: AnsiString;
begin
Result := gsMPExport(_handle);
end;
function TMovePackage.getImportOfflineRequestCode: AnsiString;
begin
Result := gsMPGetImportOfflineRequestCode(_handle);
end;
function TMovePackage.importOffline(const licenseCode: AnsiString): Boolean;
begin
Result := gsMPImportOffline(_handle, PAnsiChar(licenseCode));
end;
function TMovePackage.importOnline(const preSN: AnsiString): Boolean;
begin
//make sure we have a valid preliminary SN for online operation
if (preSN <> '') or canPreliminarySNResolved then
Result := gsMPImportOnline(_handle, PAnsiChar(preSN), -1)
else
Result := False;
end;
function TMovePackage.isTooBigToUpload: Boolean;
begin
Result := gsMPIsTooBigToUpload(_handle);
end;
function TMovePackage.upload(const preSN: AnsiString): AnsiString;
begin
//make sure we have a valid preliminary SN for online operation
if (preSN <> '') or canPreliminarySNResolved then
Result := gsMPUpload(_handle, PAnsiChar(preSN), -1)
else
raise Exception.Create('TMovePackage.upload: Preliminary Serial must be available for uploading!');
end;
end.
|