[go: up one dir, main page]

Menu

[r110]: / trunk / core / row.cpp  Maximize  Restore  History

Download this file

1597 lines (1393 with data), 47.8 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
///////////////////////////////////////////////////////////////////////////////
//
// File : $Id$
// Subject : IBPP, Row class implementation
//
///////////////////////////////////////////////////////////////////////////////
//
// (C) Copyright 2000-2007 T.I.P. Group S.A. and the IBPP Team (www.ibpp.org)
//
// The contents of this file are subject to the IBPP License (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at http://www.ibpp.org or in the 'license.txt'
// file which must have been distributed along with this file.
//
// This software, distributed under the License, is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
// License for the specific language governing rights and limitations
// under the License.
//
///////////////////////////////////////////////////////////////////////////////
//
// COMMENTS
// * Tabulations should be set every four characters when editing this file.
//
///////////////////////////////////////////////////////////////////////////////
#ifdef _MSC_VER
#pragma warning(disable: 4786 4996)
#ifndef _DEBUG
#pragma warning(disable: 4702)
#endif
#endif
#include "_ibpp.h"
#ifdef HAS_HDRSTOP
#pragma hdrstop
#endif
#include <time.h>
using namespace ibpp_internals;
// (((((((( OBJECT INTERFACE IMPLEMENTATION ))))))))
void RowImpl::SetNull(int param)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::SetNull", _("The row is not initialized."));
if (param < 1 || param > mDescrArea->sqld)
throw LogicExceptionImpl("Row::SetNull", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[param-1]);
if (! (var->sqltype & 1))
throw LogicExceptionImpl("Row::SetNull", _("This column can't be null."));
*var->sqlind = -1; // Set the column to SQL NULL
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, bool value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[bool]", _("The row is not initialized."));
SetValue(param, ivBool, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const void* bindata, int len)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[void*]", _("The row is not initialized."));
if (bindata == 0)
throw LogicExceptionImpl("Row::Set[void*]", _("null char* pointer detected."));
if (len < 0)
throw LogicExceptionImpl("Row::Set[void*]", _("Length must be >= 0"));
SetValue(param, ivByte, bindata, len);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const std::string& s)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[string]", _("The row is not initialized."));
SetValue(param, ivString, (void*)&s);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, int16_t value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[int16_t]", _("The row is not initialized."));
SetValue(param, ivInt16, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, int value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[int]", _("The row is not initialized."));
SetValue(param, ivInt32, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, int64_t value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[int64_t]", _("The row is not initialized."));
SetValue(param, ivInt64, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, float value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[float]", _("The row is not initialized."));
SetValue(param, ivFloat, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, double value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[double]", _("The row is not initialized."));
SetValue(param, ivDouble, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const IBPP::Timestamp& value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[Timestamp]", _("The row is not initialized."));
SetValue(param, ivTimestamp, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const IBPP::Date& value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[Date]", _("The row is not initialized."));
if (mDialect == 1)
{
// In dialect 1, IBPP::Date is supposed to work with old 'DATE'
// fields which are actually ISC_TIMESTAMP.
IBPP::Timestamp timestamp(value);
SetValue(param, ivTimestamp, &timestamp);
}
else
{
// Dialect 3
SetValue(param, ivDate, (void*)&value);
}
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const IBPP::Time& value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[Time]", _("The row is not initialized."));
if (mDialect == 1)
throw LogicExceptionImpl("Row::Set[Time]", _("Requires use of a dialect 3 database."));
SetValue(param, ivTime, &value);
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const IBPP::Blob& blob)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[Blob]", _("The row is not initialized."));
if (mDatabase != 0 && blob->DatabasePtr() != mDatabase)
throw LogicExceptionImpl("Row::Set[Blob]",
_("IBlob and Row attached to different databases"));
if (mTransaction != 0 && blob->TransactionPtr() != mTransaction)
throw LogicExceptionImpl("Row::Set[Blob]",
_("IBlob and Row attached to different transactions"));
SetValue(param, ivBlob, blob.intf());
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const IBPP::Array& array)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[Array]", _("The row is not initialized."));
if (mDatabase != 0 && array->DatabasePtr() != mDatabase)
throw LogicExceptionImpl("Row::Set[Array]",
_("IArray and Row attached to different databases"));
if (mTransaction != 0 && array->TransactionPtr() != mTransaction)
throw LogicExceptionImpl("Row::Set[Array]",
_("IArray and Row attached to different transactions"));
SetValue(param, ivArray, (void*)array.intf());
mUpdated[param-1] = true;
}
void RowImpl::Set(int param, const IBPP::DBKey& key)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[DBKey]", _("The row is not initialized."));
SetValue(param, ivDBKey, (void*)&key);
mUpdated[param-1] = true;
}
/*
void RowImpl::Set(int param, const IBPP::Value& value)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Set[Value]", _("The row is not initialized."));
//SetValue(param, ivDBKey, (void*)&key);
//mUpdated[param-1] = true;
}
*/
bool RowImpl::IsNull(int column)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::IsNull", _("The row is not initialized."));
if (column < 1 || column > mDescrArea->sqld)
throw LogicExceptionImpl("Row::IsNull", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[column-1]);
return ((var->sqltype & 1) && *(var->sqlind) != 0) ? true : false;
}
bool RowImpl::Get(int column, bool& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivBool);
if (pvalue != 0)
retvalue = (*(char*)pvalue == 0 ? false : true);
return pvalue == 0 ? true : false;
}
/*
bool RowImpl::Get(int column, char* retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
if (retvalue == 0)
throw LogicExceptionImpl("Row::Get", _("Null pointer detected"));
int sqllen;
void* pvalue = GetValue(column, ivByte, &sqllen);
if (pvalue != 0)
{
memcpy(retvalue, pvalue, sqllen);
retvalue[sqllen] = '\0';
}
return pvalue == 0 ? true : false;
}
*/
bool RowImpl::Get(int column, void* bindata, int& userlen)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
if (bindata == 0)
throw LogicExceptionImpl("Row::Get", _("Null pointer detected"));
int sqllen;
void* pvalue = GetValue(column, ivByte, &sqllen);
if (pvalue != 0)
{
// userlen says how much bytes the user can accept
// let's shorten it, if there is less bytes available
if (sqllen < userlen) userlen = sqllen;
if (userlen < 0)
throw LogicExceptionImpl("Row::Get", _("Length must be >= 0"));
memcpy(bindata, pvalue, userlen);
}
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, std::string& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivString, &retvalue);
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, int16_t& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivInt16);
if (pvalue != 0)
retvalue = *(int16_t*)pvalue;
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, int& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivInt32);
if (pvalue != 0)
retvalue = *(int*)pvalue;
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, int64_t& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivInt64);
if (pvalue != 0)
retvalue = *(int64_t*)pvalue;
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, float& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivFloat);
if (pvalue != 0)
retvalue = *(float*)pvalue;
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, double& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivDouble);
if (pvalue != 0)
retvalue = *(double*)pvalue;
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, IBPP::Timestamp& timestamp)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivTimestamp, (void*)&timestamp);
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, IBPP::Date& date)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
if (mDialect == 1)
{
// Dialect 1. IBPP::Date is supposed to work with old 'DATE'
// fields which are actually ISC_TIMESTAMP.
IBPP::Timestamp timestamp;
void* pvalue = GetValue(column, ivTimestamp, (void*)&timestamp);
if (pvalue != 0) date = timestamp;
return pvalue == 0 ? true : false;
}
else
{
void* pvalue = GetValue(column, ivDate, (void*)&date);
return pvalue == 0 ? true : false;
}
}
bool RowImpl::Get(int column, IBPP::Time& t)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivTime, (void*)&t);
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, IBPP::Blob& retblob)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivBlob, (void*)retblob.intf());
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, IBPP::DBKey& retkey)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivDBKey, (void*)&retkey);
return pvalue == 0 ? true : false;
}
bool RowImpl::Get(int column, IBPP::Array& retarray)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
void* pvalue = GetValue(column, ivArray, (void*)retarray.intf());
return pvalue == 0 ? true : false;
}
/*
const IBPP::Value RowImpl::Get(int column)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
//void* value = GetValue(column, ivArray, (void*)retarray.intf());
//return value == 0 ? true : false;
return IBPP::Value();
}
*/
bool RowImpl::IsNull(const std::string& name)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::IsNull", _("The row is not initialized."));
return IsNull(ColumnNum(name));
}
bool RowImpl::Get(const std::string& name, bool& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
/*
bool RowImpl::Get(const std::string& name, char* retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get[char*]", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
*/
bool RowImpl::Get(const std::string& name, void* retvalue, int& count)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get[void*,int]", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue, count);
}
bool RowImpl::Get(const std::string& name, std::string& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::GetString", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, int16_t& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, int& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, int64_t& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, float& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, double& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, IBPP::Timestamp& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, IBPP::Date& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, IBPP::Time& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string&name, IBPP::Blob& retblob)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retblob);
}
bool RowImpl::Get(const std::string& name, IBPP::DBKey& retvalue)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retvalue);
}
bool RowImpl::Get(const std::string& name, IBPP::Array& retarray)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name), retarray);
}
/*
const IBPP::Value RowImpl::Get(const std::string& name)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Get", _("The row is not initialized."));
return Get(ColumnNum(name));
}
*/
int RowImpl::Columns()
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::Columns", _("The row is not initialized."));
return mDescrArea->sqld;
}
int RowImpl::ColumnNum(const std::string& name)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnNum", _("The row is not initialized."));
if (name.empty())
throw LogicExceptionImpl("Row::ColumnNum", _("Column name <empty> not found."));
XSQLVAR* var;
char Uname[sizeof(var->sqlname)+1]; // Max size of sqlname + '\0'
// Local upper case copy of the column name
size_t len = name.length();
if (len > sizeof(var->sqlname)) len = sizeof(var->sqlname);
strncpy(Uname, name.c_str(), len);
Uname[len] = '\0';
char* p = Uname;
while (*p != '\0') { *p = char(toupper(*p)); ++p; }
// Loop through the columns of the descriptor
for (int i = 0; i < mDescrArea->sqld; i++)
{
var = &(mDescrArea->sqlvar[i]);
if (var->sqlname_length != (int16_t)len) continue;
if (strncmp(Uname, var->sqlname, len) == 0) return i+1;
}
// Failed finding the column name, let's retry using the aliases
char Ualias[sizeof(var->aliasname)+1]; // Max size of aliasname + '\0'
// Local upper case copy of the column name
len = name.length();
if (len > sizeof(var->aliasname)) len = sizeof(var->aliasname);
strncpy(Ualias, name.c_str(), len);
Ualias[len] = '\0';
p = Ualias;
while (*p != '\0') { *p = char(toupper(*p)); ++p; }
// Loop through the columns of the descriptor
for (int i = 0; i < mDescrArea->sqld; i++)
{
var = &(mDescrArea->sqlvar[i]);
if (var->aliasname_length != (int16_t)len) continue;
if (strncmp(Ualias, var->aliasname, len) == 0) return i+1;
}
throw LogicExceptionImpl("Row::ColumnNum", _("Could not find matching column."));
#ifdef __DMC__
return 0; // DMC errronously warns here about a missing return
#endif
}
/*
ColumnName, ColumnAlias, ColumnTable : all these 3 have a mistake.
Ideally, the strings should be stored elsewhere (like _Numerics and so on) to
take into account the final '\0' which needs to be added. For now, we insert
the '\0' in the original data, which will cut the 32th character. Not terribly
bad, but should be cleanly rewritten.
*/
const char* RowImpl::ColumnName(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnName", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumName", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
if (var->sqlname_length >= 31) var->sqlname_length = 31;
var->sqlname[var->sqlname_length] = '\0';
return var->sqlname;
}
const char* RowImpl::ColumnAlias(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnAlias", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnAlias", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
if (var->aliasname_length >= 31) var->aliasname_length = 31;
var->aliasname[var->aliasname_length] = '\0';
return var->aliasname;
}
const char* RowImpl::ColumnTable(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnTable", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnTable", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
if (var->relname_length >= 31) var->relname_length = 31;
var->relname[var->relname_length] = '\0';
return var->relname;
}
IBPP::SDT RowImpl::ColumnType(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnType", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnType", _("Variable index out of range."));
IBPP::SDT value;
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
switch (var->sqltype & ~1)
{
case SQL_TEXT : value = IBPP::sdString; break;
case SQL_VARYING : value = IBPP::sdString; break;
case SQL_SHORT : value = IBPP::sdSmallint; break;
case SQL_LONG : value = IBPP::sdInteger; break;
case SQL_INT64 : value = IBPP::sdLargeint; break;
case SQL_FLOAT : value = IBPP::sdFloat; break;
case SQL_DOUBLE : value = IBPP::sdDouble; break;
case SQL_TIMESTAMP : value = IBPP::sdTimestamp; break;
case SQL_TYPE_DATE : value = IBPP::sdDate; break;
case SQL_TYPE_TIME : value = IBPP::sdTime; break;
case SQL_BLOB : value = IBPP::sdBlob; break;
case SQL_ARRAY : value = IBPP::sdArray; break;
default : throw LogicExceptionImpl("Row::ColumnType",
_("Found an unknown sqltype !"));
}
return value;
}
int RowImpl::ColumnSubtype(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnSubtype", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnSubtype", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
return (int)var->sqlsubtype;
}
int RowImpl::ColumnSize(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnSize", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnSize", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
return var->sqllen;
}
int RowImpl::ColumnScale(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnScale", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnScale", _("Variable index out of range."));
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
return -var->sqlscale;
}
bool RowImpl::ColumnUpdated(int varnum)
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnUpdated", _("The row is not initialized."));
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("Row::ColumnUpdated", _("Variable index out of range."));
return mUpdated[varnum-1];
}
bool RowImpl::Updated()
{
if (mDescrArea == 0)
throw LogicExceptionImpl("Row::ColumnUpdated", _("The row is not initialized."));
for (int i = 0; i < mDescrArea->sqld; i++)
if (mUpdated[i]) return true;
return false;
}
IBPP::Database RowImpl::DatabasePtr() const
{
return mDatabase;
}
IBPP::Transaction RowImpl::TransactionPtr() const
{
return mTransaction;
}
/*
IBPP::IRow* RowImpl::Clone()
{
// By definition the clone of an IBPP Row is a new row (so refcount=0).
RowImpl* clone = new RowImpl(*this);
return clone;
}
*/
void RowImpl::AddRef()
{
ASSERTION(mRefCount >= 0);
++mRefCount;
}
void RowImpl::Release()
{
// Release cannot throw, except in DEBUG builds on assertion
ASSERTION(mRefCount >= 0);
--mRefCount;
try
{
if (mRefCount <= 0)
delete this;
}
catch (...) { }
}
// (((((((( OBJECT INTERNAL METHODS ))))))))
void RowImpl::SetValue(int varnum, IITYPE ivType, const void* value, int userlen)
{
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("RowImpl::SetValue", _("Variable index out of range."));
if (value == 0)
throw LogicExceptionImpl("RowImpl::SetValue", _("Unexpected null pointer detected."));
int16_t len;
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
switch (var->sqltype & ~1)
{
case SQL_TEXT :
if (ivType == ivString)
{
std::string* svalue = (std::string*)value;
len = (int16_t)svalue->length();
if (len > var->sqllen) len = var->sqllen;
strncpy(var->sqldata, svalue->c_str(), len);
while (len < var->sqllen) var->sqldata[len++] = ' ';
}
else if (ivType == ivByte)
{
if (userlen > var->sqllen) userlen = var->sqllen;
memcpy(var->sqldata, value, userlen);
while (userlen < var->sqllen) var->sqldata[userlen++] = ' ';
}
else if (ivType == ivDBKey)
{
IBPP::DBKey* key = (IBPP::DBKey*)value;
key->GetKey(var->sqldata, var->sqllen);
}
else if (ivType == ivBool)
{
var->sqldata[0] = *(bool*)value ? 'T' : 'F';
len = 1;
while (len < var->sqllen) var->sqldata[len++] = ' ';
}
else throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_VARYING :
if (ivType == ivString)
{
std::string* svalue = (std::string*)value;
len = (int16_t)svalue->length();
if (len > var->sqllen) len = var->sqllen;
*(int16_t*)var->sqldata = (int16_t)len;
strncpy(var->sqldata+2, svalue->c_str(), len);
}
else if (ivType == ivByte)
{
if (userlen > var->sqllen) userlen = var->sqllen;
*(int16_t*)var->sqldata = (int16_t)userlen;
memcpy(var->sqldata+2, value, userlen);
}
else if (ivType == ivBool)
{
*(int16_t*)var->sqldata = (int16_t)1;
var->sqldata[2] = *(bool*)value ? 'T' : 'F';
}
else throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_SHORT :
if (ivType == ivBool)
{
*(int16_t*)var->sqldata = int16_t(*(bool*)value ? 1 : 0);
}
else if (ivType == ivInt16)
{
*(int16_t*)var->sqldata = *(int16_t*)value;
}
else if (ivType == ivInt32)
{
if (*(int32_t*)value < consts::min16 || *(int32_t*)value > consts::max16)
throw LogicExceptionImpl("RowImpl::SetValue",
_("Out of range numeric conversion !"));
*(int16_t*)var->sqldata = (int16_t)*(int32_t*)value;
}
else if (ivType == ivInt64)
{
if (*(int64_t*)value < consts::min16 || *(int64_t*)value > consts::max16)
throw LogicExceptionImpl("RowImpl::SetValue",
_("Out of range numeric conversion !"));
*(int16_t*)var->sqldata = (int16_t)*(int64_t*)value;
}
else if (ivType == ivFloat)
{
// This SQL_SHORT is a NUMERIC(x,y), scale it !
double multiplier = consts::dscales[-var->sqlscale];
*(int16_t*)var->sqldata =
(int16_t)floor(*(float*)value * multiplier + 0.5);
}
else if (ivType == ivDouble)
{
// This SQL_SHORT is a NUMERIC(x,y), scale it !
double multiplier = consts::dscales[-var->sqlscale];
*(int16_t*)var->sqldata =
(int16_t)floor(*(double*)value * multiplier + 0.5);
}
else throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_LONG :
if (ivType == ivBool)
{
*(ISC_LONG*)var->sqldata = *(bool*)value ? 1 : 0;
}
else if (ivType == ivInt16)
{
*(ISC_LONG*)var->sqldata = *(int16_t*)value;
}
else if (ivType == ivInt32)
{
*(ISC_LONG*)var->sqldata = *(ISC_LONG*)value;
}
else if (ivType == ivInt64)
{
if (*(int64_t*)value < consts::min32 || *(int64_t*)value > consts::max32)
throw LogicExceptionImpl("RowImpl::SetValue",
_("Out of range numeric conversion !"));
*(ISC_LONG*)var->sqldata = (ISC_LONG)*(int64_t*)value;
}
else if (ivType == ivFloat)
{
// This SQL_LONG is a NUMERIC(x,y), scale it !
double multiplier = consts::dscales[-var->sqlscale];
*(ISC_LONG*)var->sqldata =
(ISC_LONG)floor(*(float*)value * multiplier + 0.5);
}
else if (ivType == ivDouble)
{
// This SQL_LONG is a NUMERIC(x,y), scale it !
double multiplier = consts::dscales[-var->sqlscale];
*(ISC_LONG*)var->sqldata =
(ISC_LONG)floor(*(double*)value * multiplier + 0.5);
}
else throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_INT64 :
if (ivType == ivBool)
{
*(int64_t*)var->sqldata = *(bool*)value ? 1 : 0;
}
else if (ivType == ivInt16)
{
*(int64_t*)var->sqldata = *(int16_t*)value;
}
else if (ivType == ivInt32)
{
*(int64_t*)var->sqldata = *(int32_t*)value;
}
else if (ivType == ivInt64)
{
*(int64_t*)var->sqldata = *(int64_t*)value;
}
else if (ivType == ivFloat)
{
// This SQL_INT64 is a NUMERIC(x,y), scale it !
double multiplier = consts::dscales[-var->sqlscale];
*(int64_t*)var->sqldata =
(int64_t)floor(*(float*)value * multiplier + 0.5);
}
else if (ivType == ivDouble)
{
// This SQL_INT64 is a NUMERIC(x,y), scale it !
double multiplier = consts::dscales[-var->sqlscale];
*(int64_t*)var->sqldata =
(int64_t)floor(*(double*)value * multiplier + 0.5);
}
else throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_FLOAT :
if (ivType != ivFloat || var->sqlscale != 0)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
*(float*)var->sqldata = *(float*)value;
break;
case SQL_DOUBLE :
if (ivType != ivDouble)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
if (var->sqlscale != 0)
{
// Round to scale of NUMERIC(x,y)
double multiplier = consts::dscales[-var->sqlscale];
*(double*)var->sqldata =
floor(*(double*)value * multiplier + 0.5) / multiplier;
}
else *(double*)var->sqldata = *(double*)value;
break;
case SQL_TIMESTAMP :
if (ivType != ivTimestamp)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
encodeTimestamp(*(ISC_TIMESTAMP*)var->sqldata, *(IBPP::Timestamp*)value);
break;
case SQL_TYPE_DATE :
if (ivType != ivDate)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
encodeDate(*(ISC_DATE*)var->sqldata, *(IBPP::Date*)value);
break;
case SQL_TYPE_TIME :
if (ivType != ivTime)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
encodeTime(*(ISC_TIME*)var->sqldata, *(IBPP::Time*)value);
break;
case SQL_BLOB :
if (ivType == ivBlob)
{
BlobImpl* blob = (BlobImpl*)value;
blob->GetId((ISC_QUAD*)var->sqldata);
}
else if (ivType == ivString)
{
BlobImpl blob(mDriver, mDatabase, mTransaction);
blob.Save(*(std::string*)value);
blob.GetId((ISC_QUAD*)var->sqldata);
}
else throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_ARRAY :
if (ivType != ivArray)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
{
ArrayImpl* array = (ArrayImpl*)value;
array->GetId((ISC_QUAD*)var->sqldata);
// When an array has been affected to a column, we want to reset
// its ID. This way, the next WriteFrom() on the same Array object
// will allocate a new ID. This protects against storing the same
// array ID in multiple columns or rows.
array->ResetId();
}
break;
default : throw LogicExceptionImpl("RowImpl::SetValue",
_("The field uses an unsupported SQL type !"));
}
if (var->sqltype & 1) *var->sqlind = 0; // Remove the 0 flag
}
void* RowImpl::GetValue(int varnum, IITYPE ivType, void* retvalue)
{
if (varnum < 1 || varnum > mDescrArea->sqld)
throw LogicExceptionImpl("RowImpl::GetValue", _("Variable index out of range."));
void* value;
int len;
XSQLVAR* var = &(mDescrArea->sqlvar[varnum-1]);
// When there is no value (SQL NULL)
if ((var->sqltype & 1) && *(var->sqlind) != 0) return 0;
switch (var->sqltype & ~1)
{
case SQL_TEXT :
if (ivType == ivString)
{
// In case of ivString, 'void* retvalue' points to a std::string where we
// will directly store the data.
std::string* str = (std::string*)retvalue;
str->erase();
str->append(var->sqldata, var->sqllen);
value = retvalue; // value != 0 means 'not null'
}
else if (ivType == ivByte)
{
// In case of ivByte, void* retvalue points to an int where we
// will store the len of the available data
if (retvalue != 0) *(int*)retvalue = var->sqllen;
value = var->sqldata;
}
else if (ivType == ivDBKey)
{
IBPP::DBKey* key = (IBPP::DBKey*)retvalue;
key->SetKey(var->sqldata, var->sqllen);
value = retvalue;
}
else if (ivType == ivBool)
{
mBools[varnum-1] = 0;
if (var->sqllen >= 1)
{
char c = var->sqldata[0];
if (c == 't' || c == 'T' || c == 'y' || c == 'Y' || c == '1')
mBools[varnum-1] = 1;
}
value = &mBools[varnum-1];
}
else throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_VARYING :
if (ivType == ivString)
{
// In case of ivString, 'void* retvalue' points to a std::string where we
// will directly store the data.
std::string* str = (std::string*)retvalue;
str->erase();
str->append(var->sqldata+2, (int32_t)*(int16_t*)var->sqldata);
value = retvalue;
}
else if (ivType == ivByte)
{
// In case of ivByte, void* retvalue points to an int where we
// will store the len of the available data
if (retvalue != 0) *(int*)retvalue = (int)*(int16_t*)var->sqldata;
value = var->sqldata+2;
}
else if (ivType == ivBool)
{
mBools[varnum-1] = 0;
len = *(int16_t*)var->sqldata;
if (len >= 1)
{
char c = var->sqldata[2];
if (c == 't' || c == 'T' || c == 'y' || c == 'Y' || c == '1')
mBools[varnum-1] = 1;
}
value = &mBools[varnum-1];
}
else throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_SHORT :
if (ivType == ivInt16)
{
value = var->sqldata;
}
else if (ivType == ivBool)
{
if (*(int16_t*)var->sqldata == 0) mBools[varnum-1] = 0;
else mBools[varnum-1] = 1;
value = &mBools[varnum-1];
}
else if (ivType == ivInt32)
{
mInt32s[varnum-1] = *(int16_t*)var->sqldata;
value = &mInt32s[varnum-1];
}
else if (ivType == ivInt64)
{
mInt64s[varnum-1] = *(int16_t*)var->sqldata;
value = &mInt64s[varnum-1];
}
else if (ivType == ivFloat)
{
// This SQL_SHORT is a NUMERIC(x,y), scale it !
double divisor = consts::dscales[-var->sqlscale];
mFloats[varnum-1] = (float)(*(int16_t*)var->sqldata / divisor);
value = &mFloats[varnum-1];
}
else if (ivType == ivDouble)
{
// This SQL_SHORT is a NUMERIC(x,y), scale it !
double divisor = consts::dscales[-var->sqlscale];
mNumerics[varnum-1] = *(int16_t*)var->sqldata / divisor;
value = &mNumerics[varnum-1];
}
else throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_LONG :
if (ivType == ivInt32)
{
value = var->sqldata;
}
else if (ivType == ivBool)
{
if (*(int32_t*)var->sqldata == 0) mBools[varnum-1] = 0;
else mBools[varnum-1] = 1;
value = &mBools[varnum-1];
}
else if (ivType == ivInt16)
{
int32_t tmp = *(int32_t*)var->sqldata;
if (tmp < consts::min16 || tmp > consts::max16)
throw LogicExceptionImpl("RowImpl::GetValue",
_("Out of range numeric conversion !"));
mInt16s[varnum-1] = (int16_t)tmp;
value = &mInt16s[varnum-1];
}
else if (ivType == ivInt64)
{
mInt64s[varnum-1] = *(int32_t*)var->sqldata;
value = &mInt64s[varnum-1];
}
else if (ivType == ivFloat)
{
// This SQL_LONG is a NUMERIC(x,y), scale it !
double divisor = consts::dscales[-var->sqlscale];
mFloats[varnum-1] = (float)(*(int32_t*)var->sqldata / divisor);
value = &mFloats[varnum-1];
}
else if (ivType == ivDouble)
{
// This SQL_LONG is a NUMERIC(x,y), scale it !
double divisor = consts::dscales[-var->sqlscale];
mNumerics[varnum-1] = *(int32_t*)var->sqldata / divisor;
value = &mNumerics[varnum-1];
}
else throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_INT64 :
if (ivType == ivInt64)
{
value = var->sqldata;
}
else if (ivType == ivBool)
{
if (*(int64_t*)var->sqldata == 0) mBools[varnum-1] = 0;
else mBools[varnum-1] = 1;
value = &mBools[varnum-1];
}
else if (ivType == ivInt16)
{
int64_t tmp = *(int64_t*)var->sqldata;
if (tmp < consts::min16 || tmp > consts::max16)
throw LogicExceptionImpl("RowImpl::GetValue",
_("Out of range numeric conversion !"));
mInt16s[varnum-1] = (int16_t)tmp;
value = &mInt16s[varnum-1];
}
else if (ivType == ivInt32)
{
int64_t tmp = *(int64_t*)var->sqldata;
if (tmp < consts::min32 || tmp > consts::max32)
throw LogicExceptionImpl("RowImpl::GetValue",
_("Out of range numeric conversion !"));
mInt32s[varnum-1] = (int32_t)tmp;
value = &mInt32s[varnum-1];
}
else if (ivType == ivFloat)
{
// This SQL_INT64 is a NUMERIC(x,y), scale it !
double divisor = consts::dscales[-var->sqlscale];
mFloats[varnum-1] = (float)(*(int64_t*)var->sqldata / divisor);
value = &mFloats[varnum-1];
}
else if (ivType == ivDouble)
{
// This SQL_INT64 is a NUMERIC(x,y), scale it !
double divisor = consts::dscales[-var->sqlscale];
mNumerics[varnum-1] = *(int64_t*)var->sqldata / divisor;
value = &mNumerics[varnum-1];
}
else throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_FLOAT :
if (ivType != ivFloat)
throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
value = var->sqldata;
break;
case SQL_DOUBLE :
if (ivType != ivDouble)
throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
if (var->sqlscale != 0)
{
// Round to scale y of NUMERIC(x,y)
double multiplier = consts::dscales[-var->sqlscale];
mNumerics[varnum-1] =
floor(*(double*)var->sqldata * multiplier + 0.5) / multiplier;
value = &mNumerics[varnum-1];
}
else value = var->sqldata;
break;
case SQL_TIMESTAMP :
if (ivType != ivTimestamp)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
decodeTimestamp(*(IBPP::Timestamp*)retvalue, *(ISC_TIMESTAMP*)var->sqldata);
value = retvalue;
break;
case SQL_TYPE_DATE :
if (ivType != ivDate)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
decodeDate(*(IBPP::Date*)retvalue, *(ISC_DATE*)var->sqldata);
value = retvalue;
break;
case SQL_TYPE_TIME :
if (ivType != ivTime)
throw WrongTypeImpl("RowImpl::SetValue", var->sqltype, ivType,
_("Incompatible types."));
decodeTime(*(IBPP::Time*)retvalue, *(ISC_TIME*)var->sqldata);
value = retvalue;
break;
case SQL_BLOB :
if (ivType == ivBlob)
{
BlobImpl* blob = (BlobImpl*)retvalue;
blob->SetId((ISC_QUAD*)var->sqldata);
value = retvalue;
}
else if (ivType == ivString)
{
BlobImpl blob(mDriver, mDatabase, mTransaction);
blob.SetId((ISC_QUAD*)var->sqldata);
std::string* str = (std::string*)retvalue;
blob.Load(*str);
value = retvalue;
}
else throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
break;
case SQL_ARRAY :
if (ivType != ivArray)
throw WrongTypeImpl("RowImpl::GetValue", var->sqltype, ivType,
_("Incompatible types."));
{
ArrayImpl* array = (ArrayImpl*)retvalue;
array->SetId((ISC_QUAD*)var->sqldata);
value = retvalue;
}
break;
default : throw LogicExceptionImpl("RowImpl::GetValue",
_("Found an unknown sqltype !"));
}
return value;
}
void RowImpl::Free()
{
if (mDescrArea != 0)
{
for (int i = 0; i < mDescrArea->sqln; i++)
{
XSQLVAR* var = &(mDescrArea->sqlvar[i]);
if (var->sqldata != 0)
{
switch (var->sqltype & ~1)
{
case SQL_ARRAY :
case SQL_BLOB : delete (ISC_QUAD*) var->sqldata; break;
case SQL_TIMESTAMP :delete (ISC_TIMESTAMP*) var->sqldata; break;
case SQL_TYPE_TIME :delete (ISC_TIME*) var->sqldata; break;
case SQL_TYPE_DATE :delete (ISC_DATE*) var->sqldata; break;
case SQL_TEXT :
case SQL_VARYING : delete [] var->sqldata; break;
case SQL_SHORT : delete (int16_t*) var->sqldata; break;
case SQL_LONG : delete (int32_t*) var->sqldata; break;
case SQL_INT64 : delete (int64_t*) var->sqldata; break;
case SQL_FLOAT : delete (float*) var->sqldata; break;
case SQL_DOUBLE : delete (double*) var->sqldata; break;
default : throw LogicExceptionImpl("RowImpl::Free",
_("Found an unknown sqltype !"));
}
}
if (var->sqlind != 0) delete var->sqlind;
}
delete [] (char*)mDescrArea;
mDescrArea = 0;
}
mNumerics.clear();
mFloats.clear();
mInt64s.clear();
mInt32s.clear();
mInt16s.clear();
mBools.clear();
mStrings.clear();
mUpdated.clear();
/* Free() MUST NOT clear these members, but only 'free' allocations as above.
mDialect = 0;
mDatabase = 0;
mTransaction = 0;
*/
}
void RowImpl::Resize(int n)
{
Free();
const int size = XSQLDA_LENGTH(n);
//lint -e{433} despite what Lint thinks it looks the allocated area is large enough
mDescrArea = (XSQLDA*) new char[size];
memset(mDescrArea, 0, size);
mNumerics.resize(n);
mFloats.resize(n);
mInt64s.resize(n);
mInt32s.resize(n);
mInt16s.resize(n);
mBools.resize(n);
mStrings.resize(n);
mUpdated.resize(n);
for (int i = 0; i < n; i++)
{
mNumerics[i] = 0.0;
mFloats[i] = 0.0;
mInt64s[i] = 0;
mInt32s[i] = 0;
mInt16s[i] = 0;
mBools[i] = 0;
mStrings[i].erase();
mUpdated[i] = false;
}
mDescrArea->version = SQLDA_VERSION1;
mDescrArea->sqln = (int16_t)n;
}
//lint -e{1556} new Type(integer) is expected in this function
void RowImpl::AllocVariables()
{
if (mDescrArea == 0)
throw LogicExceptionImpl("RowImpl internals", _("Unexpected null pointer."));
int i;
for (i = 0; i < mDescrArea->sqld; i++)
{
XSQLVAR* var = &(mDescrArea->sqlvar[i]);
switch (var->sqltype & ~1)
{
case SQL_ARRAY :
case SQL_BLOB : var->sqldata = (char*) new ISC_QUAD;
memset(var->sqldata, 0, sizeof(ISC_QUAD));
break;
case SQL_TIMESTAMP :var->sqldata = (char*) new ISC_TIMESTAMP;
memset(var->sqldata, 0, sizeof(ISC_TIMESTAMP));
break;
case SQL_TYPE_TIME :var->sqldata = (char*) new ISC_TIME;
memset(var->sqldata, 0, sizeof(ISC_TIME));
break;
case SQL_TYPE_DATE :var->sqldata = (char*) new ISC_DATE;
memset(var->sqldata, 0, sizeof(ISC_DATE));
break;
case SQL_TEXT : var->sqldata = new char[var->sqllen+1];
memset(var->sqldata, ' ', var->sqllen);
var->sqldata[var->sqllen] = '\0';
break;
case SQL_VARYING : var->sqldata = new char[var->sqllen+3];
memset(var->sqldata, 0, 2);
memset(var->sqldata+2, ' ', var->sqllen);
var->sqldata[var->sqllen+2] = '\0';
break;
case SQL_SHORT : var->sqldata = (char*) new int16_t(0); break;
case SQL_LONG : var->sqldata = (char*) new int32_t(0); break;
case SQL_INT64 : var->sqldata = (char*) new int64_t(0); break;
case SQL_FLOAT : var->sqldata = (char*) new float(0.0); break;
case SQL_DOUBLE : var->sqldata = (char*) new double(0.0); break;
default : throw LogicExceptionImpl("RowImpl::AllocVariables",
_("Found an unknown sqltype !"));
}
if (var->sqltype & 1) var->sqlind = new short(-1); // 0 indicator
}
}
bool RowImpl::MissingValues()
{
if (mDescrArea == 0)
throw LogicExceptionImpl("RowImpl internals", _("Unexpected null pointer."));
for (int i = 0; i < mDescrArea->sqld; i++)
if (! mUpdated[i]) return true;
return false;
}
//lint -e{1556} new Type(integer) is expected in this function
RowImpl& RowImpl::operator=(const RowImpl& copied)
{
if (&copied == this) return *this;
Free();
mDriver = copied.mDriver;
const int n = copied.mDescrArea->sqln;
const int size = XSQLDA_LENGTH(n);
// Initial brute copy
//lint -e{433} despite what Lint thinks it looks the allocated area is large enough
//lint -e{423} despite what Lint thinks mDescrArea has been freed by Free() above
mDescrArea = (XSQLDA*) new char[size];
memcpy(mDescrArea, copied.mDescrArea, size);
// Copy of the columns data
for (int i = 0; i < mDescrArea->sqld; i++)
{
XSQLVAR* var = &(mDescrArea->sqlvar[i]);
XSQLVAR* org = &(copied.mDescrArea->sqlvar[i]);
switch (var->sqltype & ~1)
{
case SQL_ARRAY :
case SQL_BLOB : var->sqldata = (char*) new ISC_QUAD;
memcpy(var->sqldata, org->sqldata, sizeof(ISC_QUAD));
break;
case SQL_TIMESTAMP :var->sqldata = (char*) new ISC_TIMESTAMP;
memcpy(var->sqldata, org->sqldata, sizeof(ISC_TIMESTAMP));
break;
case SQL_TYPE_TIME :var->sqldata = (char*) new ISC_TIME;
memcpy(var->sqldata, org->sqldata, sizeof(ISC_TIME));
break;
case SQL_TYPE_DATE :var->sqldata = (char*) new ISC_DATE;
memcpy(var->sqldata, org->sqldata, sizeof(ISC_DATE));
break;
case SQL_TEXT : var->sqldata = new char[var->sqllen+1];
memcpy(var->sqldata, org->sqldata, var->sqllen+1);
break;
case SQL_VARYING : var->sqldata = new char[var->sqllen+3];
memcpy(var->sqldata, org->sqldata, var->sqllen+3);
break;
case SQL_SHORT : var->sqldata = (char*) new int16_t(*(int16_t*)org->sqldata); break;
case SQL_LONG : var->sqldata = (char*) new int32_t(*(int32_t*)org->sqldata); break;
case SQL_INT64 : var->sqldata = (char*) new int64_t(*(int64_t*)org->sqldata); break;
case SQL_FLOAT : var->sqldata = (char*) new float(*(float*)org->sqldata); break;
case SQL_DOUBLE : var->sqldata = (char*) new double(*(double*)org->sqldata); break;
default : throw LogicExceptionImpl("RowImpl::Ctor",
_("Found an unknown sqltype !"));
}
if (var->sqltype & 1) var->sqlind = new short(*org->sqlind); // 0 indicator
}
// Pointers init, real data copy
mNumerics = copied.mNumerics;
mFloats = copied.mFloats;
mInt64s = copied.mInt64s;
mInt32s = copied.mInt32s;
mInt16s = copied.mInt16s;
mBools = copied.mBools;
mStrings = copied.mStrings;
mDialect = copied.mDialect;
//lint -e{1555} may sound strange but the plain pointer copies are expected
{
mDatabase = copied.mDatabase;
mTransaction = copied.mTransaction;
}
return *this;
}
RowImpl::RowImpl(const RowImpl& copied)
: /*IBPP::IRow(),*/ mRefCount(0), mDescrArea(0)
{
// mRefCount and mDescrArea are set to 0 before using the assignment operator
*this = copied; // The assignment operator does the real copy
}
RowImpl::RowImpl(DriverImpl* drv, int dialect, int n, DatabaseImpl* db, TransactionImpl* tr)
: mRefCount(0), mDriver(drv), mDescrArea(0)
{
Resize(n);
mDialect = dialect;
mDatabase = db;
mTransaction = tr;
}
RowImpl::~RowImpl()
{
try { Free(); }
catch (...) { }
}
//
// EOF
//