[go: up one dir, main page]

Menu

[9c90d7]: / util / util.c  Maximize  Restore  History

Download this file

1707 lines (1550 with data), 55.2 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
 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
1700
1701
1702
1703
1704
1705
1706
/*
* This file was written by Bill Cox, originally in 1991, and maintained since. It is hereby
* placed into the public domain.
*/
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
#include "ddutil.h"
#include "utmem.h"
bool _utInitialized = false;
utSymtab utTheSymtab;
struct utSetjmpStruct *utSetjmpStack;
int32 utSetjmpDepth = 0;
int32 utSetjmpStackSize = 0;
char *utConfigDirectory = NULL;
static char *utExeDirectory = NULL;
static char *utExeFullPath = NULL;
static FILE *utLogFile = NULL;
static FILE *utWarnFile = NULL;
static FILE *utReportFile = NULL;
static FILE *utDebugFile = NULL;
static char *utLogFileName = NULL;
static char *utWarnFileName = NULL;
static char *utReportFileName = NULL;
static char *utDebugFileName = NULL;
uint32 utDebugVal = 0;
uint32 utVerboseVal = 0;
#define UT_MAX_BUFFERS 42
static char *utBuffers[UT_MAX_BUFFERS];
static uint16 utNextBuffer;
static uint32 utBufferSizes[UT_MAX_BUFFERS];
static time_t utTimers[UT_MAX_BUFFERS];
static uint16 utTimerDepth = 0;
static utErrorProc utUserErrProc = NULL, utUserWarningProc = NULL, utUserStatusProc = NULL, utUserLogMessageProc = NULL;
static char *utVersion = NULL;
static uint32 utSymNextIndex;
static bool utMessageHeaderEnabled = false;
/*--------------------------------------------------------------------------------------------------
Like ansi sprintf.
--------------------------------------------------------------------------------------------------*/
char *utSprintf(
char *format,
...)
{
va_list ap;
char *returnBuffer;
va_start(ap, format);
returnBuffer = utVsprintf(format, ap);
va_end(ap);
return returnBuffer;
}
/*--------------------------------------------------------------------------------------------------
Enable the message header tags to add info to the messages
--------------------------------------------------------------------------------------------------*/
void utEnableMessageHeaders(
bool value)
{
utMessageHeaderEnabled = value;
}
/*--------------------------------------------------------------------------------------------------
get the message prefix
--------------------------------------------------------------------------------------------------*/
static char* getMessageNameFromType(
utMessageType msgType)
{
switch(msgType) {
case UT_MESSAGE_INFO: return "INFO:";
case UT_MESSAGE_WARNING: return "WARNING:";
case UT_MESSAGE_ERROR: return "ERROR:";
case UT_MESSAGE_EXIT: return "EXIT:";
case UT_MESSAGE_DETAILS: return "DETAILS:";
case UT_MESSAGE_INTERNAL: return "DEBUG:";
case UT_MESSAGE_REPORT: return "REPORT: ";
}
return "";
}
/*--------------------------------------------------------------------------------------------------
Log a message to the debug file.
--------------------------------------------------------------------------------------------------*/
void utLogMessageType(
utMessageType msgType,
bool logAlso,
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utMessageHeaderEnabled || msgType == UT_MESSAGE_ERROR || msgType == UT_MESSAGE_EXIT ||
msgType == UT_MESSAGE_WARNING) {
buff = utSprintf("%s%s", getMessageNameFromType(msgType), buff);
}
if(utUserLogMessageProc != NULL) {
(utUserLogMessageProc)(buff);
}
if((!(msgType == UT_MESSAGE_WARNING) || logAlso) && utLogFile != NULL) {
fputs(buff, utLogFile);
fflush(utLogFile);
}
if(msgType == UT_MESSAGE_WARNING && utWarnFile != NULL) {
fputs(buff, utWarnFile);
fflush(utWarnFile);
}
}
/*--------------------------------------------------------------------------------------------------
Function to report results
--------------------------------------------------------------------------------------------------*/
void utReport(
char *format, ...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf(format, ap);
va_end(ap);
if(utReportFile == NULL) {
utLogMessageType(UT_MESSAGE_REPORT, false, "%s", buff);
return;
}
fputs(buff, utReportFile);
fflush(utReportFile);
}
/*--------------------------------------------------------------------------------------------------
Same as utLogDebug but without the newline & prefix.
--------------------------------------------------------------------------------------------------*/
bool utDebug(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utDebugFile == NULL) {
utLogMessageType(UT_MESSAGE_INTERNAL, false, "%s", buff);
return true;
}
fputs(buff, utDebugFile);
fflush(utDebugFile);
return true; /* So utDebug can be used in ',' expressions */
}
/*--------------------------------------------------------------------------------------------------
Log a message to the debug file.
--------------------------------------------------------------------------------------------------*/
void utLogDebug(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
utStatus("%s\n", buff);
} else if(!utMessageHeaderEnabled) {
printf("%s\n", buff);
fflush(stdout);
}
utDebug("%s\n", buff);
}
/*--------------------------------------------------------------------------------------------------
Log a message to the debug file.
--------------------------------------------------------------------------------------------------*/
void utLogString(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
utStatus("%s", buff);
} else if(!utMessageHeaderEnabled) {
printf("%s", buff);
fflush(stdout);
}
utLogMessageType(UT_MESSAGE_INFO, false, "%s", buff);
}
/*--------------------------------------------------------------------------------------------------
Log a message to the debug file.
--------------------------------------------------------------------------------------------------*/
void utLogMessage(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
utStatus("%s\n", buff);
} else {
printf("%s\n", buff);
fflush(stdout);
}
utLogMessageType(UT_MESSAGE_INFO, false, "%s\n", buff);
}
/*--------------------------------------------------------------------------------------------------
Print a message, and start recording the time since this message.
--------------------------------------------------------------------------------------------------*/
uint32 utStartTimer(
char *format,
...)
{
va_list ap;
char *buff;
uint16 timerID = utTimerDepth++;
utTimers[timerID] = time(NULL);
if(format != NULL) {
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
utLogMessageType(UT_MESSAGE_INFO, false, "%s\n", buff);
if(utUserStatusProc != NULL) {
utLogMessage("%s", buff);
} else {
printf("%s\n", buff);
fflush(stdout);
}
}
return timerID;
}
/*--------------------------------------------------------------------------------------------------
Print a message about the length of the current timer.
--------------------------------------------------------------------------------------------------*/
void utStopTimer(
uint32 timerID,
char *format,
...)
{
va_list ap;
char *buff;
uint32 deltaTime = (uint32)difftime(time(NULL), utTimers[--utTimerDepth]);
uint32 hours, minutes, seconds;
if(timerID != utTimerDepth) {
utWarning("Timer start/stop mismatch!");
}
hours = deltaTime/3600;
deltaTime -= hours*3600;
minutes = deltaTime/60;
deltaTime -= minutes*60;
seconds = deltaTime;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
utLogMessageType(UT_MESSAGE_INFO, false, "%s %u:%02u:%02u\n", buff, hours, minutes, seconds);
if(utUserStatusProc != NULL) {
utStatus("%s %u:%02u:%02u\n", buff, hours, minutes, seconds);
} else {
printf("%s %u:%02u:%02u\n", buff, hours, minutes, seconds);
fflush(stdout);
}
}
/*--------------------------------------------------------------------------------------------------
Function to log errors without a message box to log file.
--------------------------------------------------------------------------------------------------*/
void utLogError(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf(format, ap);
va_end(ap);
utLogMessageType(UT_MESSAGE_ERROR, false, "%s\n", buff);
}
/*--------------------------------------------------------------------------------------------------
Function to Send a message to the log file. Prefix with a time stamp line and a comment character.
--------------------------------------------------------------------------------------------------*/
void utLogTimeStamp(
char *message,
...)
{
time_t timeInt = time(NULL);
char *timeStr = ctime(&timeInt);
va_list ap;
char *buff1;
va_start(ap, message);
buff1 = utVsprintf(message, ap);
va_end(ap);
utLogMessageType(UT_MESSAGE_INFO, false, "%s : %s", buff1, timeStr);
}
/*--------------------------------------------------------------------------------------------------
Function to log the status of a tool to log file
--------------------------------------------------------------------------------------------------*/
void utStatus(
char *format, ...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf(format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
(utUserStatusProc)(buff);
} else {
printf("%s", buff);
fflush(stdout);
}
}
static char *utExitFileName;
static uint32 utExitLineNum;
uint32 utDummyCount = 0;
/*--------------------------------------------------------------------------------------------------
Exit with a fatal error message.
--------------------------------------------------------------------------------------------------*/
void utExit_(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
utStatus("%s\n", buff);
} else if(!utMessageHeaderEnabled) {
printf("%s\n", buff);
fflush(stdout);
}
if(utExitFileName == NULL) {
utLogMessageType(UT_MESSAGE_EXIT, false, "%s\n", buff);
} else {
utLogMessageType(UT_MESSAGE_EXIT, false, "%s:%u %s\n", utExitFileName, utExitLineNum, buff);
}
utDummyCount++;
if(utDummyCount == 0) {
return; /* Foo the optimizer into having a return here which is never called. It's useful for debugging. */
}
if(utUserErrProc != NULL) {
(utUserErrProc)(buff);
}
exit(1);
}
/*--------------------------------------------------------------------------------------------------
Set the file and line globals so that utExit_ can print them. Return utExit_ so it can be called
with the user's parameters.
--------------------------------------------------------------------------------------------------*/
utExitProcType utSetFileAndLineAndReturnExitFunc(
char *fileName,
uint32 lineNum)
{
utExitFileName = fileName;
utExitLineNum = lineNum;
return &utExit_;
}
/*--------------------------------------------------------------------------------------------------
Post a warning message.
--------------------------------------------------------------------------------------------------*/
void utWarning_(
uint32 count,
char *format,
...)
{
va_list ap;
char *buff;
bool logAlso = false;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
utStatus("%s\n", buff);
} else if(!utMessageHeaderEnabled) {
printf("%s\n", buff);
fflush(stdout);
}
if(count <= utMaxWarnings) {
logAlso = true;
}
utLogMessageType(UT_MESSAGE_WARNING, logAlso, "%s\n", buff);
if(count == utMaxWarnings) {
utLogMessage("More warnings of this type will be suppressed");
if(utWarnFile != NULL && utWarnFileName != NULL) {
utLogMessage("Refer to the file, %s, for a complete list", utWarnFileName);
}
}
if(utUserWarningProc != NULL) {
(utUserWarningProc)(buff);
}
}
/*--------------------------------------------------------------------------------------------------
Post a note.
--------------------------------------------------------------------------------------------------*/
void utNote(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
utReport("%s\n", buff);
}
/*--------------------------------------------------------------------------------------------------
Post an error message, and longjump.
This function just returns a value so that it can be used for inline macros as a return value.
--------------------------------------------------------------------------------------------------*/
void utError(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
if(utUserStatusProc != NULL) {
utStatus("%s %s\n", getMessageNameFromType(UT_MESSAGE_ERROR), buff);
} else if(!utMessageHeaderEnabled) {
printf("%s\n", buff);
fflush(stdout);
}
utLogMessageType(UT_MESSAGE_ERROR, false, "%s\n", buff);
utLongjmp();
}
/*--------------------------------------------------------------------------------------------------
Post an error message, and exit. Do not report file and line number, since this is a user error.
--------------------------------------------------------------------------------------------------*/
void utCriticalError(
char *format,
...)
{
va_list ap;
char *buff;
va_start(ap, format);
buff = utVsprintf((char *)format, ap);
va_end(ap);
utLogMessageType(UT_MESSAGE_ERROR, false, "%s\n", buff);
exit(1);
}
/*--------------------------------------------------------------------------------------------------
Cry and die.
--------------------------------------------------------------------------------------------------*/
void utAssert_(
char *fileName,
uint32 line,
char *text)
{
utMemCheck();
utExitFileName = NULL; /* we don't want "util.c" and the utAssert line number to print */
utExit_("Assertion failed in file %s on line %u: %s", fileName, line, text);
}
/*--------------------------------------------------------------------------------------------------
Set the name of the Error callback.
--------------------------------------------------------------------------------------------------*/
void utSetErrorCallback(
utErrorProc errorProc)
{
utUserErrProc = errorProc;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the Warning callback.
--------------------------------------------------------------------------------------------------*/
void utSetWarningCallback(
utErrorProc warningProc)
{
utUserWarningProc = warningProc;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the status update callback.
--------------------------------------------------------------------------------------------------*/
void utSetStatusCallback(
utErrorProc statusProc)
{
utUserStatusProc = statusProc;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the log message callback.
--------------------------------------------------------------------------------------------------*/
void utSetLogMessageCallback(
utErrorProc logMessageProc)
{
utUserLogMessageProc = logMessageProc;
}
/*--------------------------------------------------------------------------------------------------
Get the name of the Error callback.
--------------------------------------------------------------------------------------------------*/
utErrorProc utGetErrorCallback(void)
{
return utUserErrProc;
}
/*--------------------------------------------------------------------------------------------------
Get the name of the Warning callback.
--------------------------------------------------------------------------------------------------*/
utErrorProc utGetWarningCallback(void)
{
return utUserWarningProc;
}
/*--------------------------------------------------------------------------------------------------
Get the name of the status update callback.
--------------------------------------------------------------------------------------------------*/
utErrorProc utGetStatusCallback(void)
{
return utUserStatusProc;
}
/*--------------------------------------------------------------------------------------------------
Get the name of the log message callback.
--------------------------------------------------------------------------------------------------*/
utErrorProc utGetLogMessageCallback(void)
{
return utUserLogMessageProc;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file and reset it.
--------------------------------------------------------------------------------------------------*/
void utInitDebugFile(
char *fileName)
{
utSetDebugFile(fileName);
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
FILE *utGetDebugFile(void)
{
return utDebugFile;
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
char *utGetDebugFileName(void)
{
return utDebugFileName;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file without resetting it.
--------------------------------------------------------------------------------------------------*/
void utSetDebugFile(
char *fileName)
{
if(utDebugFile != NULL) {
fclose(utDebugFile);
utDebugFile = NULL;
}
if(utDebugFileName != NULL) {
utFree(utDebugFileName);
}
utDebugFileName = utNewA(char, strlen(fileName) + 1);
strcpy(utDebugFileName, fileName);
utDebugFile = fopen(fileName, "w");
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file and reset it.
--------------------------------------------------------------------------------------------------*/
void utInitReportFile(
char *fileName)
{
utSetReportFile(fileName);
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
FILE *utGetReportFile(void)
{
return utReportFile;
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
char *utGetReportFileName(void)
{
return utReportFileName;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file without resetting it.
--------------------------------------------------------------------------------------------------*/
void utSetReportFile(
char *fileName)
{
if(utReportFile != NULL) {
fclose(utReportFile);
}
if(utReportFileName != NULL) {
utFree(utReportFileName);
}
utReportFileName = utNewA(char, strlen(fileName) + 1);
strcpy(utReportFileName, fileName);
utReportFile = fopen(fileName, "w");
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file and reset it.
--------------------------------------------------------------------------------------------------*/
void utInitLogFile(
char *fileName)
{
if(utLogFile != NULL) {
fclose(utLogFile);
}
if(utLogFileName != NULL) {
utFree(utLogFileName);
}
utLogFileName = utAllocString(fileName);
utLogFile = fopen(fileName, "w");
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file and reset it.
--------------------------------------------------------------------------------------------------*/
void utInitWarnFile(
char *fileName)
{
if(utWarnFile != NULL) {
fclose(utWarnFile);
}
if(utWarnFileName != NULL) {
utFree(utWarnFileName);
}
utWarnFileName = utAllocString(fileName);
utWarnFile = fopen(fileName, "w");
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
char *utGetLogFileName(void)
{
return utLogFileName;
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
char *utGetWarnFileName(void)
{
return utWarnFileName;
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
FILE *utGetLogFile(void)
{
return utLogFile;
}
/*--------------------------------------------------------------------------------------------------
Just return the logi file name.
--------------------------------------------------------------------------------------------------*/
FILE *utGetWarnFile(void)
{
return utWarnFile;
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file without resetting it.
--------------------------------------------------------------------------------------------------*/
void utSetLogFile(
char *fileName)
{
if(utLogFile != NULL) {
fclose(utLogFile);
}
if(utLogFileName != NULL) {
utFree(utLogFileName);
}
utLogFileName = utAllocString(fileName);
utLogFile = fopen(fileName, "a");
}
/*--------------------------------------------------------------------------------------------------
Set the name of the logging file without resetting it.
--------------------------------------------------------------------------------------------------*/
void utSetWarnFile(
char *fileName)
{
if(utWarnFile != NULL) {
fclose(utWarnFile);
}
if(utWarnFileName != NULL) {
utFree(utWarnFileName);
}
utWarnFileName = utAllocString(fileName);
utWarnFile = fopen(fileName, "a");
}
/*--------------------------------------------------------------------------------------------------
Set the name of the configuration file directory.
--------------------------------------------------------------------------------------------------*/
void utSetConfigDirectory(
char *dirName)
{
if(utConfigDirectory != NULL) {
utFree(utConfigDirectory);
}
utConfigDirectory = utNewA(char, strlen(dirName) + 1);
strcpy(utConfigDirectory, dirName);
}
/*--------------------------------------------------------------------------------------------------
Set the name of the executable file directory.
--------------------------------------------------------------------------------------------------*/
void utSetExeDirectory(
char *dirName)
{
if(utExeDirectory != NULL) {
utFree(utExeDirectory);
}
utExeDirectory = utNewA(char, strlen(dirName) + 1);
strcpy(utExeDirectory, dirName);
}
/*--------------------------------------------------------------------------------------------------
Return the exec directory.
--------------------------------------------------------------------------------------------------*/
char *utGetExeDirectory(void)
{
return utExeDirectory;
}
/*--------------------------------------------------------------------------------------------------
Return the config directory.
--------------------------------------------------------------------------------------------------*/
char *utGetConfigDirectory(void)
{
return utConfigDirectory;
}
/*--------------------------------------------------------------------------------------------------
Set the complete path and name of the executable file (argv[0])
--------------------------------------------------------------------------------------------------*/
void utSetExeFullPath(
char *fullName)
{
if(utExeFullPath != NULL) {
utFree(utExeFullPath);
}
utExeFullPath = utNewA(char, strlen(fullName) + 1);
strcpy(utExeFullPath, fullName);
}
/*--------------------------------------------------------------------------------------------------
Return the full path of the executable file.
--------------------------------------------------------------------------------------------------*/
char *utGetExeFullPath(void)
{
return utExeFullPath;
}
/*--------------------------------------------------------------------------------------------------
Just set the version variable.
--------------------------------------------------------------------------------------------------*/
void utSetVersion(
char *version)
{
if(utVersion != NULL) {
utFree(utVersion);
}
utVersion = utNewA(char, strlen(version) + 1);
strcpy(utVersion, version);
}
/*--------------------------------------------------------------------------------------------------
Return the version variable.
--------------------------------------------------------------------------------------------------*/
char *utGetVersion(void)
{
return utVersion;
}
/*--------------------------------------------------------------------------------------------------
Initialize generic buffer memory.
--------------------------------------------------------------------------------------------------*/
static void initBuffers(void)
{
uint16 xBuffer;
utNextBuffer = 0;
for(xBuffer = 0; xBuffer < UT_MAX_BUFFERS; xBuffer++) {
utBufferSizes[xBuffer] = 42;
utBuffers[xBuffer] = (char *)calloc(utBufferSizes[xBuffer], sizeof(char));
}
}
/*--------------------------------------------------------------------------------------------------
Free generic buffer memory.
--------------------------------------------------------------------------------------------------*/
static void freeBuffers(void)
{
uint16 xBuffer;
utNextBuffer = 0;
for(xBuffer = 0; xBuffer < UT_MAX_BUFFERS; xBuffer++) {
free(utBuffers[xBuffer]);
}
}
/*--------------------------------------------------------------------------------------------------
Free memory used by the utility module.
--------------------------------------------------------------------------------------------------*/
void utStop(
bool reportTimeAndMemory)
{
if(utInitialized()) {
if(utSetjmpDepth > 0 && utSetjmpDepth < UT_MAX_SETJMP_DEPTH) {
utWarning("utClose: utSetjmpDepth != 0 (file %s, line %u)",
utSetjmpStack[utSetjmpDepth - 1].file,
utSetjmpStack[utSetjmpDepth - 1].line);
} else if(utSetjmpDepth != 0) {
utWarning("utClose: utSetjmpDepth has an invalid value");
/* prevents crashes */
}
if(utTimerDepth != 1) {
utWarning("utClose: timer started, but never stopped");
} else if(reportTimeAndMemory) {
utStopTimer(0, "Process completed in");
}
utDatabaseManagerStop();
utDatabaseStop();
utFreePersistenceObjects();
utInitialized() = false;
if(utReportFile != NULL) {
fflush(utReportFile);
fclose(utReportFile);
utFree(utReportFileName);
utReportFileName = NULL;
utReportFile = NULL;
}
if(utDebugFile != NULL) {
fflush(utDebugFile);
fclose(utDebugFile);
utFree(utDebugFileName);
utDebugFileName = NULL;
utDebugFile = NULL;
}
if(utLogFile != NULL) {
fflush(utLogFile);
fclose(utLogFile);
utFree(utLogFileName);
utLogFileName = NULL;
utLogFile = NULL;
}
if(utWarnFile != NULL) {
fflush(utWarnFile);
fclose(utWarnFile);
utFree(utWarnFileName);
utWarnFileName = NULL;
utWarnFile = NULL;
}
if(utConfigDirectory != NULL) {
utFree(utConfigDirectory);
utConfigDirectory = NULL;
}
if(utExeDirectory != NULL) {
utFree(utExeDirectory);
utExeDirectory = NULL;
}
if(utExeFullPath != NULL) {
utFree(utExeFullPath);
utExeFullPath = NULL;
}
if(utVersion != NULL) {
utFree(utVersion);
utVersion = NULL;
}
utFree(utSetjmpStack);
utMemStop(reportTimeAndMemory);
freeBuffers();
}
}
/*--------------------------------------------------------------------------------------------------
Initialize symbol table entries to utSymNull.
--------------------------------------------------------------------------------------------------*/
void utInitSymTable(void)
{
uint32 xSym;
utTheSymtab = utSymtabAlloc();
utSymtabAllocTables(utTheSymtab, 2);
for(xSym = 0; xSym < 2; xSym++) {
utSymtabSetiTable(utTheSymtab, xSym, utSymNull);
}
}
/*--------------------------------------------------------------------------------------------------
Initialize local memory.
--------------------------------------------------------------------------------------------------*/
void utStart(void)
{
if(!utInitialized()) {
utMemStart();
utUserErrProc = 0;
utInitialized() = true;
utSetjmpDepth = 0;
utSetjmpStackSize = 42;
utSetjmpStack = utNewA(struct utSetjmpStruct, utSetjmpStackSize);
utTimerDepth = 0;
initBuffers();
utStartTimer(NULL);
utInitSeed(4357);
utAllocPersistenceObjects();
utDatabaseStart();
utInitSymTable();
utDatabaseManagerStart();
}
}
/*--------------------------------------------------------------------------------------------------
Just like mtRealloc, but pass file name and line number.
--------------------------------------------------------------------------------------------------*/
void *utReallocTrace(
void *memPtr,
size_t num,
size_t size,
char *fileName,
uint32 line)
{
utMemRef mem;
size_t newSize = (num + 1)*size;
if(memPtr == NULL) {
return utMallocTrace(num, size, fileName, line);
}
mem = utqMemPtr(memPtr);
utMemCheckTrace(fileName, line);
if(!uttMemExists(mem)) {
utExit("utRealloc: Bad memory pointer in %s, line %u", fileName, line);
}
utdMem(mem, true, fileName, line);
memPtr = realloc(memPtr, (num + 1)*size);
if(memPtr != NULL) {
utBuildMem(memPtr, newSize, true, fileName, line);
} else {
utLogMessage("utRealloc: unable to allocate memory %lu. Total used: %lu",
num*(size+1), utUsedMem);
}
return memPtr;
}
/*--------------------------------------------------------------------------------------------------
Just like mtMalloc, but pass file name and line number.
--------------------------------------------------------------------------------------------------*/
void *utMallocTrace(
size_t sStruct,
size_t size,
char *fileName,
uint32 line)
{
size_t sByte = sStruct*size;
void *memPtr = malloc(sByte + 1);
utMemCheckTrace(fileName, line);
if(memPtr != NULL) {
utBuildMem(memPtr, sByte + 1, true, fileName, line);
} else {
utLogMessage("utRealloc: unable to allocate memory %lu. Total used: %lu",
sByte, utUsedMem);
}
return memPtr;
}
/*--------------------------------------------------------------------------------------------------
Just like calloc, but pass file name and line number.
--------------------------------------------------------------------------------------------------*/
void *utCallocTrace(
size_t sStruct,
size_t size,
char *fileName,
uint32 line)
{
size_t sByte = sStruct*size;
void *memPtr;
memPtr = utMallocTrace(sStruct, size, fileName, line);
if(memPtr) {
memset((void *)memPtr, 0, sByte);
}
return memPtr;
}
/*--------------------------------------------------------------------------------------------------
Just like calloc, but pass file name and line number.
--------------------------------------------------------------------------------------------------*/
void *utCallocTraceInitFirst(
size_t sStruct,
size_t size,
char *fileName,
uint32 line)
{
size_t sByte = sStruct*size;
void *memPtr;
char *cptr;
char c = (char)170; /*10101010*/
uint8 x;
memPtr = utMallocTrace(sStruct, size, fileName, line);
if(memPtr) {
memset((void *)memPtr, 0, sByte);
}
cptr = (char*)memPtr;
for(x = 0;x < size;x++) {
cptr[x] = c;
}
return memPtr;
}
/*--------------------------------------------------------------------------------------------------
Just like mtFree, but pass file name and line number.
--------------------------------------------------------------------------------------------------*/
void utFreeTrace(
void *memPtr,
char *fileName,
uint32 line)
{
utMemRef mem = utqMemPtr(memPtr);
utMemCheckTrace(fileName, line);
if(!uttMemExists(mem)) {
utExit("utFree: Bad memory pointer in %s, line %u", fileName, line);
}
utdMem(mem, true, fileName, line);
free(memPtr);
}
/*--------------------------------------------------------------------------------------------------
Just find a hash value for the symbol name.
--------------------------------------------------------------------------------------------------*/
uint32 utHashString(
char *name)
{
uint32 hashValue = 0;
do {
hashValue = utHashValues(hashValue, *name);
} while(*name++);
return hashValue;
}
/*--------------------------------------------------------------------------------------------------
Just find a hash value for the symbol name.
--------------------------------------------------------------------------------------------------*/
uint32 utHashData(
void *data,
uint32 length)
{
uint8 *dataPtr = (uint8 *)data;
uint32 hashValue = 0;
while(length--) {
hashValue = utHashValues(hashValue, *dataPtr);
dataPtr++;
}
return hashValue;
}
/*--------------------------------------------------------------------------------------------------
Just find a hash value for the float value.
--------------------------------------------------------------------------------------------------*/
uint32 utHashFloat(
float value)
{
uint8 *data = (uint8 *)(void *)&value;
return utHashData(data, sizeof(float));
}
/*--------------------------------------------------------------------------------------------------
Just find a hash value for the double value.
--------------------------------------------------------------------------------------------------*/
uint32 utHashDouble(
double value)
{
uint8 *data = (uint8 *)(void *)&value;
return utHashData(data, sizeof(double));
}
/*--------------------------------------------------------------------------------------------------
Symbol table support.
--------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------
Find a symbol in the symbol table.
--------------------------------------------------------------------------------------------------*/
static utSym symtabFindSym(
char *name,
uint32 hashValue)
{
uint32 index = (utSymtabGetNumTable(utTheSymtab) - 1) & hashValue;
utSym sym = utSymtabGetiTable(utTheSymtab, index);
while(sym != utSymNull) {
if(!strcmp(name, utSymGetName(sym))) {
return sym;
}
sym = utSymGetNext(sym);
}
return utSymNull;
}
/*--------------------------------------------------------------------------------------------------
Build a new symbol, or return an old one with the same name.
--------------------------------------------------------------------------------------------------*/
static void addSymTableSym(
utSym sym)
{
uint32 hashValue = utSymGetHashValue(sym);
uint32 index = (utSymtabGetNumTable(utTheSymtab) - 1) & hashValue;
utSym nextSym = utSymtabGetiTable(utTheSymtab, index);
utSymSetNext(sym, nextSym);
utSymtabSetiTable(utTheSymtab, index, sym);
utSymtabSetNumSym(utTheSymtab, utSymtabGetNumSym(utTheSymtab) + 1);
}
/*--------------------------------------------------------------------------------------------------
Resize the symbol table. Make it twice as big.
--------------------------------------------------------------------------------------------------*/
static void resizeSymtab(void)
{
utSym sym;
uint32 numSyms = utSymtabGetNumTable(utTheSymtab) << 1;
uint32 xSym;
utSymtabResizeTables(utTheSymtab, numSyms);
for(xSym = 0; xSym < numSyms; xSym++) {
utSymtabSetiTable(utTheSymtab, xSym, utSymNull);
}
utSymtabSetNumSym(utTheSymtab, 0);
utForeachSym(sym) {
addSymTableSym(sym);
} utEndSym;
}
/*--------------------------------------------------------------------------------------------------
Build a new symbol, or return an old one with the same name.
--------------------------------------------------------------------------------------------------*/
utSym utSymCreate(
char *name)
{
uint32 hashValue = utHashString(name);
utSym sym = symtabFindSym(name, hashValue);
uint32 length;
if(sym != utSymNull) {
return sym;
}
if(utSymtabGetNumSym(utTheSymtab) == utSymtabGetNumTable(utTheSymtab)) {
resizeSymtab();
}
sym = utSymAlloc();
length = strlen(name) + 1;
// Cast to clear a compile warning into datadraw... ideally datadraw would be fixed
utSymSetName(sym, (char*)name, length);
utSymSetHashValue(sym, hashValue);
addSymTableSym(sym);
return sym;
}
/*--------------------------------------------------------------------------------------------------
Build a new symbol, and add it to the symbol table.
--------------------------------------------------------------------------------------------------*/
utSym utSymCreateFormatted(char *format, ...)
{
char *buff;
va_list ap;
va_start(ap, format);
buff = utVsprintf(format, ap);
va_end(ap);
return utSymCreate(buff);
}
/*--------------------------------------------------------------------------------------------------
Find the lower-case version of the symbol, and create it if it does not exist.
--------------------------------------------------------------------------------------------------*/
utSym utSymGetLowerSym(
utSym sym)
{
return utSymCreate(utStringToLowerCase(utSymGetName(sym)));
}
/*--------------------------------------------------------------------------------------------------
Allocate a buffer for generic use. There is only a queue of UT_MAX_BUFFERS which can be in use
at any time. This is primarily useful for returning strings from subroutines.
--------------------------------------------------------------------------------------------------*/
void *utMakeBuffer_(
uint32 length)
{
void *buffer;
if(length > utBufferSizes[utNextBuffer]) {
utBufferSizes[utNextBuffer] = length + length/2;
utBuffers[utNextBuffer] = (char *)realloc(utBuffers[utNextBuffer],
utBufferSizes[utNextBuffer]*sizeof(char));
}
buffer = utBuffers[utNextBuffer];
if(++utNextBuffer == UT_MAX_BUFFERS) {
utNextBuffer = 0;
}
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Print a formated string to the file.
--------------------------------------------------------------------------------------------------*/
char *utVsprintf(
char *format,
va_list ap)
{
char buffer[UTSTRLEN];
char *returnBuffer;
unsigned int numWouldBePrinted;
char* tmpBuffer = NULL;
numWouldBePrinted = vsnprintf((char *)buffer, UTSTRLEN, (char *)format, ap);
if(numWouldBePrinted >= UTSTRLEN) {
tmpBuffer = malloc(numWouldBePrinted + 1);
vsprintf(tmpBuffer, (char*)format, ap);
returnBuffer = utMakeString(strlen(tmpBuffer) + 1);
strcpy(returnBuffer, tmpBuffer);
free(tmpBuffer);
} else {
returnBuffer = utMakeString(strlen(buffer) + 1);
strcpy(returnBuffer, buffer);
}
return returnBuffer;
}
/*--------------------------------------------------------------------------------------------------
Create a new string which is the specified string with the specified
suffix appended
------------------------------------------------------------------------------------------------*/
char* utAddSuffix(
char* originalName,
char* suffix)
{
char* result = NULL;
uint32 length = strlen(originalName) + strlen(suffix) + 1;
result = (char*)utMalloc(1,length);
strcpy(result, originalName);
strcat(result, suffix);
return result;
}
/*--------------------------------------------------------------------------------------------------
Just replace the file suffix.
--------------------------------------------------------------------------------------------------*/
char *utReplaceSuffix(
char *originalName,
char *newSuffix)
{
uint32 length = strlen(originalName);
char *buffer = utMakeBuffer_(length + strlen(newSuffix) + 1);
char *endPtr;
strcpy(buffer, originalName);
endPtr = buffer + length;
while(endPtr > buffer && *endPtr != '.' && *endPtr != UTDIRSEP) {
endPtr--;
}
if(*endPtr != '.') {
endPtr = buffer + length;
}
strcpy(endPtr, newSuffix);
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Return a temporary copy of a string.
--------------------------------------------------------------------------------------------------*/
char *utCopyString(
char *string)
{
char *buffer;
if(string == NULL) {
return NULL;
}
buffer = utMakeString(strlen(string) + 1);
strcpy(buffer, string);
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Make a new string by concatenating the two old ones.
--------------------------------------------------------------------------------------------------*/
char *utCatStrings(
char *string1,
char *string2)
{
return utSprintf("%s%s", string1, string2);
}
/*--------------------------------------------------------------------------------------------------
Convert a string to upper case.
--------------------------------------------------------------------------------------------------*/
char *utStringToUpperCase(
char *string)
{
char *buffer = utCopyString(string);
char *p = buffer;
while(*p != '\0') {
*p = toupper((unsigned char)*p);
p++;
}
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Convert a string to lower case.
--------------------------------------------------------------------------------------------------*/
char *utStringToLowerCase(
char *string)
{
char *buffer = utCopyString(string);
char *p = buffer;
while(*p != '\0') {
*p = tolower((unsigned char)*p);
p++;
}
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Return the compile time for the executable. This is in one place only for consistancy.
--------------------------------------------------------------------------------------------------*/
char *utGetCompileTime(void)
{
return __DATE__ " " __TIME__;
}
/*--------------------------------------------------------------------------------------------------
Return the date and time as an ASCII string.
--------------------------------------------------------------------------------------------------*/
char *utGetDateAndTime(void)
{
time_t timeval = time(NULL);
struct tm *theTime = localtime(&timeval);
return utSprintf("%02u/%02u/%02u %02u:%02u:%02u", theTime->tm_mon + 1, theTime->tm_mday,
theTime->tm_year % 100, theTime->tm_hour, theTime->tm_min, theTime->tm_sec);
}
/*--------------------------------------------------------------------------------------------------
Return the base name of the path name.
--------------------------------------------------------------------------------------------------*/
char *utBaseName(
char *name)
{
char *left = strrchr(name, UTDIRSEP);
char *right = name + strlen(name);
char *buffer;
if(left == NULL) {
return utCopyString(name);
}
left++;
buffer = utMakeString(right - left + 1);
strncpy(buffer, left, right - left);
buffer[right - left] = '\0';
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Return the suffix of the filename.
--------------------------------------------------------------------------------------------------*/
char *utSuffix(
char *name)
{
uint32 i = 0;
uint32 start = UINT32_MAX;
char c = name[i];
while(c != 0) {
i++;
if(c == '.') {
start = i;
} else if(c == UTDIRSEP) {
start = UINT32_MAX;
}
c = name[i];
}
if(start == UINT32_MAX) {
return NULL;
}
return utCopyString(name + start);
}
/*--------------------------------------------------------------------------------------------------
Return the directory name of the path name.
--------------------------------------------------------------------------------------------------*/
char *utDirName(
char *name)
{
char *end = strrchr(name, UTDIRSEP);
char *buffer;
if(end == NULL) {
return ".";
}
buffer = utMakeString(end - name + 1);
strncpy(buffer, name, end - name);
buffer[end - name] = '\0';
return buffer;
}
/*--------------------------------------------------------------------------------------------------
Just determine if the file exists.
--------------------------------------------------------------------------------------------------*/
bool utFileExists(
char *fileName)
{
FILE *file;
if(fileName == NULL || *fileName == '\0') {
return false;
}
file = fopen(fileName, "r");
if(file != NULL) {
fclose(file);
return true;
}
return false;
}
/*--------------------------------------------------------------------------------------------------
Find a file name in the directory and return the full path if it exists. Otherwise return NULL.
--------------------------------------------------------------------------------------------------*/
static char *findFileInDirectory(
char *fileName,
char *dirName)
{
char *name = utSprintf("%s%c%s", dirName, UTDIRSEP, fileName);
if(utAccess(name, NULL)) {
return name;
}
return NULL;
}
/*--------------------------------------------------------------------------------------------------
Find a file in the path that has the mode.
--------------------------------------------------------------------------------------------------*/
char *utFindInPath(
char *name,
char *path)
{
char *buf = utCopyString(path);
char *p = buf;
char *next, *fileName, *directory;
while(p != NULL && *p != '\0') {
next = strchr(p, UTPATHSEP);
if(next != NULL) {
*next++ = '\0';
}
directory = utExpandEnvVariables(p);
fileName = findFileInDirectory(name, directory);
if(fileName != NULL) {
return fileName;
}
p = next;
}
return NULL;
}
/*--------------------------------------------------------------------------------------------------
Find the matching '}' in the string.
--------------------------------------------------------------------------------------------------*/
static char *findMatchingBracket(
char *string)
{
uint32 numBraces = 0;
char c;
utDo {
c = *string;
if(c == '{') {
numBraces++;
} else if(c == '}') {
numBraces--;
}
} utWhile(numBraces != 0) {
string++;
} utRepeat;
return string;
}
/*--------------------------------------------------------------------------------------------------
Find the first non alpha-numeric character.
--------------------------------------------------------------------------------------------------*/
static char *findFirstNonAlnumChar(
char *string)
{
while(isalnum((unsigned char)*string)) {
string++;
}
return string;
}
/*--------------------------------------------------------------------------------------------------
Expand the string's environment variable.
--------------------------------------------------------------------------------------------------*/
static char *expandString(
char *string,
char *varStart)
{
char *ending;
char *p;
*varStart++ = '\0';
if(*varStart == '{') {
ending = findMatchingBracket(varStart);
varStart++;
if(ending == NULL) {
utWarning("Variable %s does not have a matching '}'" , varStart);
return string;
}
*ending++ = '\0';
} else {
ending = findFirstNonAlnumChar(varStart);
if(ending == NULL) {
ending = "";
} else {
p = ending;
ending = utCopyString(ending);
*p = '\0'; /* To terminate varStart */
}
}
return utSprintf("%s%s%s", string, getenv(varStart), ending);
}
/*--------------------------------------------------------------------------------------------------
Expand the string to replace environment variables with their values.
--------------------------------------------------------------------------------------------------*/
char *utExpandEnvVariables(
char *string)
{
char *p;
bool changed;
string = utCopyString(string); /* To make a writable copy */
if(string == NULL) {
return NULL;
}
do {
changed = false;
p = strchr(string, '$');
if(p != NULL) {
changed = true;
string = expandString(string, p);
}
} while(changed);
return string;
}
/*--------------------------------------------------------------------------------------------------
Create a dynamic array.
--------------------------------------------------------------------------------------------------*/
utDynarray utDynarrayCreate_(
uint16 valueSize)
{
utDynarray dynarray = utDynarrayAlloc();
utDynarraySetSize(dynarray, valueSize);
return dynarray;
}
/*--------------------------------------------------------------------------------------------------
Expand the string to replace environment variables with their values.
--------------------------------------------------------------------------------------------------*/
void utDynarrayResize(
utDynarray dynarray,
uint32 newSize)
{
uint32 numValues = newSize*utDynarrayGetSize(dynarray);
if(utDynarrayGetNumValue(dynarray) == 0) {
utDynarrayAllocValues(dynarray, numValues);
} else {
utDynarrayResizeValues(dynarray, numValues);
}
}
/*--------------------------------------------------------------------------------------------------
Build a new symbol, and add it to the symbol table.
--------------------------------------------------------------------------------------------------*/
utSym utUniqueSymCreate(
char *name,
char *suffix)
{
utSym baseSym, sym;
char buf[UTSTRLEN];
char *tail;
uint32 count;
uint32 hashValue;
strcpy(buf, name);
tail = buf + strlen(buf) - 1;
while(isdigit((unsigned char)*tail)) {
tail--;
}
tail++;
strcpy(tail, suffix);
hashValue = utHashString(buf);
baseSym = symtabFindSym(buf, hashValue);
if(baseSym == utSymNull) {
return utSymCreate(buf);
}
tail += strlen(suffix);
count = utSymNextIndex;
do {
sprintf(tail, "%u", count);
count++;
hashValue = utHashString(buf);
sym = symtabFindSym(buf, hashValue);
} while (sym != utSymNull);
utSymNextIndex = count;
return utSymCreate(buf);
}
/*--------------------------------------------------------------------------------------------------
Convert directory path separation characters from either '\\' or '/' to UTDIRSEP.
--------------------------------------------------------------------------------------------------*/
char *utConvertDirSepChars(
char *path)
{
char *buffer = utCopyString(path);
char *p = buffer;
char c;
utDo {
c = *p;
} utWhile(c != '\0') {
if(c == '\\' || c == '/') {
*p = UTDIRSEP;
}
p++;
} utRepeat;
return buffer;
}