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
|
/*
* palm-db-tools: Read/write DB-format databases
* Copyright (C) 1999-2001 by Tom Dyas ([email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifh Floor, Boston, MA 02110-1301 USA
*/
#include <iostream>
#include <vector>
#include <string>
#include <stdexcept>
#include <sstream>
#include <time.h>
#include <cstring>
#include <kdebug.h>
#include "../strop.h"
#include "DB.h"
#include <kdebug.h>
#define charSeperator '/'
#define VIEWFLAG_USE_IN_EDITVIEW 0x01
#define INVALID_DEFAULT 0
#define NOW_DEFAULT 1
#define CONSTANT_DEFAULT 2
using namespace PalmLib::FlatFile;
using namespace PalmLib;
namespace {
static const pi_uint16_t CHUNK_FIELD_NAMES = 0;
static const pi_uint16_t CHUNK_FIELD_TYPES = 1;
static const pi_uint16_t CHUNK_FIELD_DATA = 2;
static const pi_uint16_t CHUNK_LISTVIEW_DEFINITION = 64;
static const pi_uint16_t CHUNK_LISTVIEW_OPTIONS = 65;
static const pi_uint16_t CHUNK_LFIND_OPTIONS = 128;
static const pi_uint16_t CHUNK_ABOUT = 254;
}
template <class Map, class Key>
static inline bool has_key(const Map& map, const Key& key)
{
return map.find(key) != map.end();
}
bool PalmLib::FlatFile::DB::classify(PalmLib::Database& pdb)
{
return (! pdb.isResourceDB())
&& (pdb.creator() == PalmLib::mktag('D','B','O','S'))
&& (pdb.type() == PalmLib::mktag('D','B','0','0'));
}
bool PalmLib::FlatFile::DB::match_name(const std::string& name)
{
return (name == "DB") || (name == "db");
}
void PalmLib::FlatFile::DB::extract_chunks(const PalmLib::Block& appinfo)
{
size_t i;
pi_uint16_t chunk_type;
pi_uint16_t chunk_size;
if (appinfo.size() > 4) {
// Loop through each chunk in the block while data remains.
i = 4;
while (i < appinfo.size()) {
/* Stop the loop if there is not enough room for even one
* chunk header.
*/
if (i + 4 >= appinfo.size()) {
// throw PalmLib::error("header is corrupt");
kdDebug() << "header is corrupt" << endl;
}
// Copy the chunk type and size into the local buffer.
chunk_type = get_short(appinfo.data() + i);
chunk_size = get_short(appinfo.data() + i + 2);
i += 4;
// Copy the chunk into seperate storage.
Chunk chunk(appinfo.data() + i, chunk_size);
chunk.chunk_type = chunk_type;
m_chunks[chunk.chunk_type].push_back(chunk);
/* Advance the index by the size of the chunk. */
i += chunk.size();
}
// If everything was correct, then we should be exactly at the
// end of the block.
if (i != appinfo.size()) {
// throw PalmLib::error("header is corrupt");
kdDebug() << "header is corrupt" << endl;
}
} else {
// throw PalmLib::error("header is corrupt");
kdDebug() << "header is corrupt" << endl;
}
}
void PalmLib::FlatFile::DB::extract_schema(unsigned numFields)
{
unsigned i;
if (!has_key(m_chunks, CHUNK_FIELD_NAMES)
|| !has_key(m_chunks, CHUNK_FIELD_TYPES)) {
// throw PalmLib::error("database is missing its schema");
kdDebug() << "database is missing its schema" << endl;
return;
}
Chunk names_chunk = m_chunks[CHUNK_FIELD_NAMES][0];
Chunk types_chunk = m_chunks[CHUNK_FIELD_TYPES][0];
pi_char_t* p = names_chunk.data();
pi_char_t* q = types_chunk.data();
// Ensure that the types chunk has the expected size.
if (types_chunk.size() != numFields * sizeof(pi_uint16_t)) {
// throw PalmLib::error("types chunk is corrupt");
kdDebug() << "types chunk is corrupt" << endl;
}
// Loop for each field and extract the name and type.
for (i = 0; i < numFields; ++i) {
PalmLib::FlatFile::Field::FieldType type;
int len;
// Determine the length of the name string. Ensure that the
// string does not go beyond the end of the chunk.
pi_char_t* null_p = reinterpret_cast<pi_char_t*>
(memchr(p, 0, names_chunk.size() - (p - names_chunk.data())));
if (!null_p) {
// throw PalmLib::error("names chunk is corrupt");
kdDebug() << "names chunk is corrupt" << endl;
}
len = null_p - p;
switch (PalmLib::get_short(q)) {
case 0:
type = PalmLib::FlatFile::Field::STRING;
break;
case 1:
type = PalmLib::FlatFile::Field::BOOLEAN;
break;
case 2:
type = PalmLib::FlatFile::Field::INTEGER;
break;
case 3:
type = PalmLib::FlatFile::Field::DATE;
break;
case 4:
type = PalmLib::FlatFile::Field::TIME;
break;
case 5:
type = PalmLib::FlatFile::Field::NOTE;
break;
case 6:
type = PalmLib::FlatFile::Field::LIST;
break;
case 7:
type = PalmLib::FlatFile::Field::LINK;
break;
case 8:
type = PalmLib::FlatFile::Field::FLOAT;
break;
case 9:
type = PalmLib::FlatFile::Field::CALCULATED;
break;
case 10:
type = PalmLib::FlatFile::Field::LINKED;
break;
default:
// throw PalmLib::error("unknown field type");
kdDebug() << "PalmLib::FlatFile::DB::extract_schema() - unknown field type" << endl;
type = PalmLib::FlatFile::Field::STRING;
break;
}
// Inform the superclass about this field.
appendField(std::string((char *) p, len), type, extract_fieldsdata(i, type));
// Advance to the information on the next field.
p += len + 1;
q += 2;
}
}
void PalmLib::FlatFile::DB::extract_listviews()
{
if (!has_key(m_chunks, CHUNK_LISTVIEW_DEFINITION))
return;
/* throw PalmLib::error("no list views in database");*/
const std::vector<Chunk>& chunks = m_chunks[CHUNK_LISTVIEW_DEFINITION];
for (std::vector<Chunk>::const_iterator iter = chunks.begin();
iter != chunks.end(); ++iter) {
const Chunk& chunk = (*iter);
PalmLib::FlatFile::ListView lv;
if (chunk.size() < (2 + 2 + 32)) {
// throw PalmLib::error("list view is corrupt");
kdDebug() << "list view is corrupt" << endl;
}
pi_uint16_t flags = PalmLib::get_short(chunk.data());
pi_uint16_t num_cols = PalmLib::get_short(chunk.data() + 2);
lv.editoruse = false;
if (flags & VIEWFLAG_USE_IN_EDITVIEW)
lv.editoruse = true;
if (chunk.size() != static_cast<unsigned> (2 + 2 + 32 + num_cols * 4)) {
// throw PalmLib::error("list view is corrupt");
kdDebug() << "list view is corrupt" << endl;
}
// Determine the length of the name string.
pi_char_t* null_ptr = const_cast<pi_char_t*>(reinterpret_cast<const pi_char_t*>
(memchr(chunk.data() + 4, 0, 32)));
if (null_ptr)
lv.name = std::string((char *) (chunk.data() + 4),
null_ptr - (chunk.data() + 4));
else
lv.name = "Unknown";
const pi_char_t* p = chunk.data() + 2 + 2 + 32;
for (int i = 0; i < num_cols; ++i) {
pi_uint16_t field = PalmLib::get_short(p);
pi_uint16_t width = PalmLib::get_short(p + 2);
p += 2 * sizeof(pi_uint16_t);
if (field >= getNumOfFields()) {
// throw PalmLib::error("list view is corrupt");
kdDebug() << "list view is corrupt" << endl;
}
PalmLib::FlatFile::ListViewColumn col(field, width);
lv.push_back(col);
}
appendListView(lv);
}
}
std::string PalmLib::FlatFile::DB::extract_fieldsdata(pi_uint16_t field_search, PalmLib::FlatFile::Field::FieldType type)
{
std::ostringstream theReturn;
if (!has_key(m_chunks, CHUNK_FIELD_DATA))
return std::string(theReturn.str());
std::vector<Chunk>& chunks = m_chunks[CHUNK_FIELD_DATA];
pi_uint16_t field_num = 0;
bool find = false;
std::vector<Chunk>::const_iterator iter = chunks.begin();
for ( ; iter != chunks.end(); ++iter) {
const Chunk& chunk = (*iter);
field_num = PalmLib::get_short(chunk.data());
if (field_num == field_search) {
find = true;
break;
}
}
if (find) {
const Chunk& chunk = (*iter);
switch (type) {
case PalmLib::FlatFile::Field::STRING:
theReturn << std::string((const char *)chunk.data()+2, chunk.size() - 2);
break;
case PalmLib::FlatFile::Field::BOOLEAN:
break;
case PalmLib::FlatFile::Field::INTEGER:
theReturn << PalmLib::get_long(chunk.data() + sizeof(pi_uint16_t));
theReturn << charSeperator;
theReturn << PalmLib::get_short(chunk.data() + sizeof(pi_uint16_t) + sizeof(pi_uint32_t));
break;
case PalmLib::FlatFile::Field::FLOAT: {
pi_double_t value;
value.words.hi = PalmLib::get_long(chunk.data() + 2);
value.words.lo = PalmLib::get_long(chunk.data() + 6);
theReturn << value.number;
}
break;
case PalmLib::FlatFile::Field::DATE:
if (*(chunk.data() + sizeof(pi_uint16_t)) == NOW_DEFAULT)
theReturn << "now";
else if (*(chunk.data() + sizeof(pi_uint16_t)) == CONSTANT_DEFAULT) {
const pi_char_t * ptr = chunk.data() + sizeof(pi_uint16_t) + 1;
struct tm date;
date.tm_year = PalmLib::get_short(ptr) - 1900;
date.tm_mon = (static_cast<int> (*(ptr + 2))) - 1;
date.tm_mday = static_cast<int> (*(ptr + 3));
(void) mktime(&date);
char buf[1024];
// Clear out the output buffer.
memset(buf, 0, sizeof(buf));
// Convert and output the date using the format.
strftime(buf, sizeof(buf), "%Y/%m/%d", &date);
theReturn << buf;
}
break;
case PalmLib::FlatFile::Field::TIME:
if (*(chunk.data() + sizeof(pi_uint16_t)) == NOW_DEFAULT)
theReturn << "now";
else if (*(chunk.data() + sizeof(pi_uint16_t)) == CONSTANT_DEFAULT) {
const pi_char_t * ptr = chunk.data() + sizeof(pi_uint16_t) + 1;
struct tm t;
const struct tm * tm_ptr;
time_t now;
time(&now);
tm_ptr = localtime(&now);
memcpy(&t, tm_ptr, sizeof(tm));
t.tm_hour = static_cast<int> (*(ptr));
t.tm_min = static_cast<int> (*(ptr + 1));
t.tm_sec = 0;
char buf[1024];
// Clear out the output buffer.
memset(buf, 0, sizeof(buf));
// Convert and output the date using the format.
strftime(buf, sizeof(buf), "%H:%M", &t);
theReturn << buf;
}
break;
case PalmLib::FlatFile::Field::NOTE:
break;
case PalmLib::FlatFile::Field::LIST: {
unsigned short numItems = PalmLib::get_short(chunk.data() + sizeof(pi_uint16_t));
int prevLength = 0;
std::string item;
if (numItems > 0) {
for (unsigned short i = 0; i < numItems - 1; i++) {
item = std::string((const char *)chunk.data() + 3 * sizeof(pi_uint16_t) + prevLength);
theReturn << item << charSeperator;
prevLength += item.length() + 1;
}
item = std::string((const char *)chunk.data() + 3 * sizeof(pi_uint16_t) + prevLength);
theReturn << item;
}
}
break;
case PalmLib::FlatFile::Field::LINK:
theReturn << std::string((const char *)chunk.data()+sizeof(pi_uint16_t));
// theReturn << std::string((const char *)chunk.data()+sizeof(pi_uint16_t), chunk.size() - 2);
theReturn << charSeperator;
theReturn << PalmLib::get_short(chunk.data() + sizeof(pi_uint16_t) + 32 * sizeof(pi_char_t));
break;
case PalmLib::FlatFile::Field::LINKED:
theReturn << PalmLib::get_short(chunk.data() + sizeof(pi_uint16_t));
theReturn << charSeperator;
theReturn << PalmLib::get_short(chunk.data() + 2 * sizeof(pi_uint16_t));
break;
case PalmLib::FlatFile::Field::CALCULATED:
break;
default:
kdDebug() << "unknown field type" << endl;
break;
}
}
return std::string(theReturn.str());
}
void PalmLib::FlatFile::DB::extract_aboutinfo()
{
if (!has_key(m_chunks, CHUNK_ABOUT))
return;
Chunk chunk = m_chunks[CHUNK_ABOUT][0];
pi_char_t* header = chunk.data();
pi_char_t* q = chunk.data() + PalmLib::get_short(header);
setAboutInformation( (char*)q);
}
void PalmLib::FlatFile::DB::parse_record(PalmLib::Record& record,
std::vector<pi_char_t *>& ptrs,
std::vector<size_t>& sizes)
{
unsigned i;
// Ensure that enough space for the offset table exists.
if (record.size() < getNumOfFields() * sizeof(pi_uint16_t)) {
// throw PalmLib::error("record is corrupt");
kdDebug() << "record is corrupt" << endl;
}
// Extract the offsets from the record. Determine field pointers.
std::vector<pi_uint16_t> offsets(getNumOfFields());
for (i = 0; i < getNumOfFields(); ++i) {
offsets[i] = get_short(record.data() + i * sizeof(pi_uint16_t));
if (offsets[i] >= record.size()) {
// throw PalmLib::error("record is corrupt");
kdDebug() << "record is corrupt" << endl;
}
ptrs.push_back(record.data() + offsets[i]);
}
// Determine the field sizes.
for (i = 0; i < getNumOfFields() - 1; ++i) {
sizes.push_back(offsets[i + 1] - offsets[i]);
}
sizes.push_back(record.size() - offsets[getNumOfFields() - 1]);
}
PalmLib::FlatFile::DB::DB(PalmLib::Database& pdb)
: Database("db", pdb), m_flags(0)
{
// Split the application information block into its component chunks.
extract_chunks(pdb.getAppInfoBlock());
// Pull the header fields and schema out of the databasse.
m_flags = get_short(pdb.getAppInfoBlock().data());
unsigned numFields = get_short(pdb.getAppInfoBlock().data() + 2);
extract_schema(numFields);
// Extract all of the list views.
extract_listviews();
extract_aboutinfo();
for (unsigned i = 0; i < pdb.getNumRecords(); ++i) {
PalmLib::Record record = pdb.getRecord(i);
Record rec;
std::vector<pi_char_t *> ptrs;
std::vector<size_t> sizes;
parse_record(record, ptrs, sizes);
for (unsigned j = 0; j < getNumOfFields(); ++j) {
PalmLib::FlatFile::Field f;
f.type = field_type(j);
switch (field_type(j)) {
case PalmLib::FlatFile::Field::STRING:
f.type = PalmLib::FlatFile::Field::STRING;
f.v_string = std::string((char *) ptrs[j], sizes[j] - 1);
break;
case PalmLib::FlatFile::Field::BOOLEAN:
f.type = PalmLib::FlatFile::Field::BOOLEAN;
if (*(ptrs[j]))
f.v_boolean = true;
else
f.v_boolean = false;
break;
case PalmLib::FlatFile::Field::INTEGER:
f.type = PalmLib::FlatFile::Field::INTEGER;
f.v_integer = PalmLib::get_long(ptrs[j]);
break;
case PalmLib::FlatFile::Field::FLOAT: {
// Place data from database in a union for conversion.
pi_double_t value;
value.words.hi = PalmLib::get_long(ptrs[j]);
value.words.lo = PalmLib::get_long(ptrs[j] + 4);
// Fill out the information for this field.
f.type = PalmLib::FlatFile::Field::FLOAT;
f.v_float = value.number;
}
break;
case PalmLib::FlatFile::Field::DATE:
f.type = PalmLib::FlatFile::Field::DATE;
f.v_date.year = PalmLib::get_short(ptrs[j]);
f.v_date.month = static_cast<int> (*(ptrs[j] + 2));
f.v_date.day = static_cast<int> (*(ptrs[j] + 3));
break;
case PalmLib::FlatFile::Field::TIME:
f.type = PalmLib::FlatFile::Field::TIME;
f.v_time.hour = static_cast<int> (*(ptrs[j]));
f.v_time.minute = static_cast<int> (*(ptrs[j] + 1));
break;
case PalmLib::FlatFile::Field::NOTE:
f.type = PalmLib::FlatFile::Field::NOTE;
f.v_string = std::string((char *) ptrs[j], sizes[j] - 3);
f.v_note = std::string((char *) (record.data() + get_short(ptrs[j] + strlen(f.v_string.c_str()) + 1)));
break;
case PalmLib::FlatFile::Field::LIST:
f.type = PalmLib::FlatFile::Field::LIST;
if (!field(j).argument().empty()) {
std::string data = field(j).argument();
unsigned int k;
std::string::size_type pos = 0;
pi_uint16_t itemID = *ptrs[j]; // TR: a list value is stored on 1 byte
for (k = 0; k < itemID; k++) {
if ((pos = data.find(charSeperator, pos)) == std::string::npos) {
break;
}
pos++;
}
if (pos == std::string::npos) {
f.v_string = "N/A";
} else {
if (data.find(charSeperator, pos) == std::string::npos) {
f.v_string = data.substr( pos, std::string::npos);
} else {
f.v_string = data.substr( pos, data.find(charSeperator, pos) - pos);
}
}
}
break;
case PalmLib::FlatFile::Field::LINK:
f.type = PalmLib::FlatFile::Field::LINK;
f.v_integer = PalmLib::get_long(ptrs[j]);
f.v_string = std::string((char *) (ptrs[j] + 4), sizes[j] - 5);
break;
case PalmLib::FlatFile::Field::LINKED:
f.type = PalmLib::FlatFile::Field::LINKED;
f.v_string = std::string((char *) ptrs[j], sizes[j] - 1);
break;
case PalmLib::FlatFile::Field::CALCULATED: {
std::ostringstream value;
f.type = PalmLib::FlatFile::Field::CALCULATED;
switch (ptrs[j][0]) {
case 1: //string
value << std::string((char *) ptrs[j] + 1, sizes[j] - 2);
break;
case 2: //integer
value << PalmLib::get_long(ptrs[j] + 1);
break;
case 9: //float
{
pi_double_t fvalue;
fvalue.words.hi = PalmLib::get_long(ptrs[j] + 1);
fvalue.words.lo = PalmLib::get_long(ptrs[j] + 5);
value << fvalue.number;
}
default:
value << "N/A";
}
f.v_string = value.str();
} break;
default:
kdDebug() << "unknown field type" << endl;
break;
}
// Append this field to the record.
rec.appendField(f);
}
rec.unique_id(record.unique_id());
// Append this record to the database.
appendRecord(rec);
}
}
void PalmLib::FlatFile::DB::make_record(PalmLib::Record& pdb_record,
const Record& record) const
{
unsigned int i;
// Determine the packed size of this record.
size_t size = getNumOfFields() * sizeof(pi_uint16_t);
for (i = 0; i < getNumOfFields(); i++) {
#ifdef HAVE_VECTOR_AT
const Field field = record.fields().at(i);
#else
const Field field = record.fields()[i];
#endif
switch (field.type) {
case PalmLib::FlatFile::Field::STRING:
size += field.v_string.length() + 1;
break;
case PalmLib::FlatFile::Field::NOTE:
size += field.v_string.length() + 3;
size += field.v_note.length() + 1;
break;
case PalmLib::FlatFile::Field::BOOLEAN:
size += 1;
break;
case PalmLib::FlatFile::Field::INTEGER:
size += 4;
break;
case PalmLib::FlatFile::Field::FLOAT:
size += 8;
break;
case PalmLib::FlatFile::Field::DATE:
size += sizeof(pi_uint16_t) + 2 * sizeof(pi_char_t);
break;
case PalmLib::FlatFile::Field::TIME:
size += 2 * sizeof(pi_char_t);
break;
case PalmLib::FlatFile::Field::LIST:
size += sizeof(pi_char_t);
break;
case PalmLib::FlatFile::Field::LINK:
size += sizeof(pi_int32_t);
size += field.v_string.length() + 1;
break;
case PalmLib::FlatFile::Field::LINKED:
size += field.v_string.length() + 1;
break;
case PalmLib::FlatFile::Field::CALCULATED:
size += 1;
break;
default:
kdDebug() << "unsupported field type" << endl;
break;
}
}
// Allocate a block for the packed record and setup the pointers.
pi_char_t* buf = new pi_char_t[size];
pi_char_t* p = buf + getNumOfFields() * sizeof(pi_uint16_t);
pi_char_t* offsets = buf;
// Pack the fields into the buffer.
for (i = 0; i < getNumOfFields(); i++) {
pi_char_t* noteOffsetOffset = 0;
bool setNote = false;
#ifdef HAVE_VECTOR_AT
const Field fieldData = record.fields().at(i);
#else
const Field fieldData = record.fields()[i];
#endif
// Mark the offset to the start of this field in the offests table.
PalmLib::set_short(offsets, static_cast<pi_uint16_t> (p - buf));
offsets += sizeof(pi_uint16_t);
// Pack the field.
switch (fieldData.type) {
case PalmLib::FlatFile::Field::STRING:
memcpy(p, fieldData.v_string.c_str(), fieldData.v_string.length() + 1);
p += fieldData.v_string.length() + 1;
break;
case PalmLib::FlatFile::Field::NOTE:
if (setNote)
kdDebug() << "unsupported field type";
memcpy(p, fieldData.v_string.c_str(), fieldData.v_string.length() + 1);
p += fieldData.v_string.length() + 1;
noteOffsetOffset = p;
p += 2;
setNote = true;
break;
case PalmLib::FlatFile::Field::BOOLEAN:
*p++ = ((fieldData.v_boolean) ? 1 : 0);
break;
case PalmLib::FlatFile::Field::INTEGER:
PalmLib::set_long(p, fieldData.v_integer);
p += sizeof(pi_int32_t);
break;
case PalmLib::FlatFile::Field::FLOAT: {
// Place data the data in a union for easy conversion.
pi_double_t value;
value.number = fieldData.v_float;
PalmLib::set_long(p, value.words.hi);
p += sizeof(pi_uint32_t);
PalmLib::set_long(p, value.words.lo);
p += sizeof(pi_uint32_t);
break;
}
case PalmLib::FlatFile::Field::DATE:
PalmLib::set_short(p, fieldData.v_date.year);
p += sizeof(pi_uint16_t);
*p++ = static_cast<pi_char_t> (fieldData.v_date.month & 0xFF);
*p++ = static_cast<pi_char_t> (fieldData.v_date.day & 0xFF);
break;
case PalmLib::FlatFile::Field::TIME:
*p++ = static_cast<pi_char_t> (fieldData.v_time.hour & 0xFF);
*p++ = static_cast<pi_char_t> (fieldData.v_time.minute & 0xFF);
break;
case PalmLib::FlatFile::Field::LIST:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
std::string::size_type pos = 0, next;
unsigned int j = 0;
pi_int16_t itemID = -1;
while ( (next = data.find(charSeperator, pos)) != std::string::npos) {
if (fieldData.v_string == data.substr( pos, next - pos)) {
itemID = j;
break;
}
j++;
pos = next + 1;
}
// TR: the following test handles the case where the field value
// equals the last item in list (bugfix)
if (itemID == -1 && fieldData.v_string == data.substr( pos, std::string::npos)) {
itemID = j;
}
p[0] = itemID; // TR: a list value is stored on 1 byte
p += sizeof(pi_char_t);
}
break;
case PalmLib::FlatFile::Field::LINK:
PalmLib::set_long(p, fieldData.v_integer);
p += sizeof(pi_int32_t);
memcpy(p, fieldData.v_string.c_str(), fieldData.v_string.length() + 1);
p += fieldData.v_string.length() + 1;
break;
case PalmLib::FlatFile::Field::LINKED:
memcpy(p, fieldData.v_string.c_str(), fieldData.v_string.length() + 1);
p += fieldData.v_string.length() + 1;
break;
case PalmLib::FlatFile::Field::CALCULATED:
*p = 13;
p++;
break;
default:
kdDebug() << "unsupported field type";
break;
}
if (setNote) {
if (fieldData.v_note.length()) {
memcpy(p, fieldData.v_note.c_str(), fieldData.v_note.length() + 1);
PalmLib::set_short(noteOffsetOffset, (pi_uint16_t)(p - buf));
p += fieldData.v_note.length() + 1;
} else {
PalmLib::set_short(noteOffsetOffset, 0);
}
}
}
// Place the packed data into the PalmOS record.
pdb_record.set_raw(buf, size);
delete [] buf;
}
void PalmLib::FlatFile::DB::build_fieldsdata_chunks(std::vector<DB::Chunk>& chunks) const
{
pi_char_t * buf = 0, * p;
unsigned int size, i;
for (i = 0; i < getNumOfFields(); ++i) {
size = 0;
switch (field_type(i)) {
case PalmLib::FlatFile::Field::STRING:
if (!field(i).argument().empty()) {
size = (field(i).argument().length() + 1) + 2;
buf = new pi_char_t[size];
PalmLib::set_short(buf, i);
strcpy((char *) (buf + 2), field(i).argument().c_str());
}
break;
case PalmLib::FlatFile::Field::BOOLEAN:
break;
case PalmLib::FlatFile::Field::INTEGER:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
std::pair< PalmLib::pi_int32_t, PalmLib::pi_int16_t> values(0, 0);
if ( data.find(charSeperator) != std::string::npos) {
StrOps::convert_string(data.substr( 0, data.find(charSeperator)), values.first);
StrOps::convert_string(data.substr( data.find(charSeperator) + 1, std::string::npos), values.second);
} else
StrOps::convert_string(data, values.first);
size = 2 + sizeof(pi_uint32_t) + sizeof(pi_uint16_t);
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
PalmLib::set_long(p, values.first);
p += sizeof(pi_uint32_t);
PalmLib::set_short(p, values.second);
p += sizeof(pi_uint16_t);
}
break;
case PalmLib::FlatFile::Field::FLOAT:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
pi_double_t value;
StrOps::convert_string(data, value.number);
size = 2 + 2 * sizeof(pi_uint32_t);
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
PalmLib::set_long(p, value.words.hi);
p += sizeof(pi_uint32_t);
PalmLib::set_long(p, value.words.lo);
p += sizeof(pi_uint32_t);
}
break;
case PalmLib::FlatFile::Field::DATE:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
struct tm date;
pi_char_t type;
if (data.substr(0, 3) == "now") {
type = NOW_DEFAULT;
const struct tm * tm_ptr;
time_t now;
time(&now);
tm_ptr = localtime(&now);
memcpy(&date, tm_ptr, sizeof(tm));
} else
#ifdef strptime
if (strptime(data.c_str(), "%Y/%m/%d", &date))
#else
if (StrOps::strptime(data.c_str(), "%Y/%m/%d", &date))
#endif
type = CONSTANT_DEFAULT;
else
type = INVALID_DEFAULT;
if (type != INVALID_DEFAULT) {
size = sizeof(pi_uint16_t) + 1 + sizeof(pi_uint16_t) + 2;
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
*p++ = static_cast<pi_char_t> (type & 0xFF);
PalmLib::set_short(p, date.tm_year + 1900);
p += sizeof(pi_uint16_t);
*p++ = static_cast<pi_char_t> ((date.tm_mon + 1) & 0xFF);
*p++ = static_cast<pi_char_t> (date.tm_mday & 0xFF);
}
}
break;
case PalmLib::FlatFile::Field::TIME:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
struct tm t;
pi_char_t type;
if (data == "now") {
type = NOW_DEFAULT;
const struct tm * tm_ptr;
time_t now;
time(&now);
tm_ptr = localtime(&now);
memcpy(&t, tm_ptr, sizeof(tm));
} else
#ifdef strptime
if (!strptime(data.c_str(), "%H/%M", &t))
#else
if (!StrOps::strptime(data.c_str(), "%H/%M", &t))
#endif
type = CONSTANT_DEFAULT;
else
type = INVALID_DEFAULT;
if (type != INVALID_DEFAULT) {
size = sizeof(pi_uint16_t) + 1 + sizeof(pi_uint16_t) + 2;
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
*p++ = static_cast<pi_char_t> (type & 0xFF);
*p++ = static_cast<pi_char_t> (t.tm_hour & 0xFF);
*p++ = static_cast<pi_char_t> (t.tm_min & 0xFF);
}
}
break;
case PalmLib::FlatFile::Field::NOTE:
break;
case PalmLib::FlatFile::Field::LIST:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
std::vector<std::string> items;
std::string::size_type pos = 0, next;
std::vector<std::string>::iterator iter;
size = 2 + 2 * sizeof(pi_uint16_t);
while ( (next = data.find(charSeperator, pos)) != std::string::npos) {
std::string item = data.substr( pos, next - pos);
items.push_back(item);
size += item.length() + 1;
pos = next + 1;
}
if (pos != std::string::npos) {
std::string item = data.substr( pos, std::string::npos);
items.push_back(item);
size += item.length() + 1;
}
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
PalmLib::set_short(p, items.size());
p += sizeof(pi_uint16_t);
p += sizeof(pi_uint16_t);
for (iter = items.begin(); iter != items.end(); ++iter) {
std::string& item = (*iter);
strcpy((char *) p, item.c_str());
p[item.length()] = 0;
p += item.length() + 1;
}
}
break;
case PalmLib::FlatFile::Field::LINK:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
std::string databasename;
pi_uint16_t fieldnum;
if ( data.find(charSeperator) != std::string::npos) {
databasename = data.substr( 0, data.find(charSeperator));
StrOps::convert_string(data.substr( data.find(charSeperator) + 1, std::string::npos), fieldnum);
} else {
databasename = data;
fieldnum = 0;
}
size = 2 + 32 * sizeof(pi_char_t) + sizeof(pi_uint16_t);
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
strcpy((char *) p, databasename.c_str());
p += 32 * sizeof(pi_char_t);
PalmLib::set_short(p, fieldnum);
p += sizeof(pi_uint16_t);
}
break;
case PalmLib::FlatFile::Field::LINKED:
if (!field(i).argument().empty()) {
std::string data = field(i).argument();
pi_uint16_t linknum;
pi_uint16_t fieldnum;
if ( data.find(charSeperator) != std::string::npos) {
StrOps::convert_string(data.substr( 0, data.find(charSeperator)), linknum);
StrOps::convert_string(data.substr( data.find(charSeperator) + 1, std::string::npos), fieldnum);
if (field_type(linknum) != PalmLib::FlatFile::Field::LINK) {
unsigned int j = 0;
while (field_type(j) != PalmLib::FlatFile::Field::LINK && j < i) j++;
linknum = j;
}
} else {
unsigned int j = 0;
while (field_type(j) != PalmLib::FlatFile::Field::LINK && j < i) j++;
linknum = j;
fieldnum = 0;
}
size = 2 + 2 * sizeof(pi_uint16_t);
buf = new pi_char_t[size];
p = buf;
PalmLib::set_short(p, i);
p += sizeof(pi_uint16_t);
PalmLib::set_short(p, linknum);
p += sizeof(pi_uint16_t);
PalmLib::set_short(p, fieldnum);
p += sizeof(pi_uint16_t);
}
break;
case PalmLib::FlatFile::Field::CALCULATED:
break;
default:
kdDebug() << "unknown field type" << endl;
break;
}
if (size) {
Chunk data_chunk(buf, size);
data_chunk.chunk_type = CHUNK_FIELD_DATA;
delete [] buf;
chunks.push_back(data_chunk);
}
}
}
void PalmLib::FlatFile::DB::build_about_chunk(std::vector<DB::Chunk>& chunks) const
{
pi_char_t* buf;
pi_char_t* p;
int headersize = 2*sizeof(pi_uint16_t);
std::string information = getAboutInformation();
if (!information.length())
return;
// Build the names chunk.
buf = new pi_char_t[headersize + information.length() + 1];
p = buf;
PalmLib::set_short(p, headersize);
p += 2;
PalmLib::set_short(p, 1); //about type version
p += 2;
memcpy(p, information.c_str(), information.length() + 1);
p += information.length() + 1;
Chunk chunk(buf, headersize + information.length() + 1);
chunk.chunk_type = CHUNK_ABOUT;
delete [] buf;
chunks.push_back(chunk);
}
void PalmLib::FlatFile::DB::build_standard_chunks(std::vector<DB::Chunk>& chunks) const
{
pi_char_t* buf;
pi_char_t* p;
unsigned i;
// Determine the size needed for the names chunk.
size_t names_chunk_size = 0;
for (i = 0; i < getNumOfFields(); ++i) {
names_chunk_size += field_name(i).length() + 1;
}
// Build the names chunk.
buf = new pi_char_t[names_chunk_size];
p = buf;
for (i = 0; i < getNumOfFields(); ++i) {
const std::string name = field_name(i);
memcpy(p, name.c_str(), name.length() + 1);
p += name.length() + 1;
}
Chunk names_chunk(buf, names_chunk_size);
names_chunk.chunk_type = CHUNK_FIELD_NAMES;
delete [] buf;
// Build the types chunk.
buf = new pi_char_t[getNumOfFields() * sizeof(pi_uint16_t)];
p = buf;
for (i = 0; i < getNumOfFields(); ++i) {
// Pack the type of the current field.
switch (field_type(i)) {
case PalmLib::FlatFile::Field::STRING:
PalmLib::set_short(p, 0);
break;
case PalmLib::FlatFile::Field::BOOLEAN:
PalmLib::set_short(p, 1);
break;
case PalmLib::FlatFile::Field::INTEGER:
PalmLib::set_short(p, 2);
break;
case PalmLib::FlatFile::Field::DATE:
PalmLib::set_short(p, 3);
break;
case PalmLib::FlatFile::Field::TIME:
PalmLib::set_short(p, 4);
break;
case PalmLib::FlatFile::Field::NOTE:
PalmLib::set_short(p, 5);
break;
case PalmLib::FlatFile::Field::LIST:
PalmLib::set_short(p, 6);
break;
case PalmLib::FlatFile::Field::LINK:
PalmLib::set_short(p, 7);
break;
case PalmLib::FlatFile::Field::FLOAT:
PalmLib::set_short(p, 8);
break;
case PalmLib::FlatFile::Field::CALCULATED:
PalmLib::set_short(p, 9);
break;
case PalmLib::FlatFile::Field::LINKED:
PalmLib::set_short(p, 10);
break;
default:
kdDebug() << "unsupported field type" << endl;
break;
}
// Advance to the next position.
p += sizeof(pi_uint16_t);
}
Chunk types_chunk(buf, getNumOfFields() * sizeof(pi_uint16_t));
types_chunk.chunk_type = CHUNK_FIELD_TYPES;
delete [] buf;
// Build the list view options chunk.
buf = new pi_char_t[2 * sizeof(pi_uint16_t)];
PalmLib::set_short(buf, 0);
PalmLib::set_short(buf + sizeof(pi_uint16_t), 0);
Chunk listview_options_chunk(buf, 2 * sizeof(pi_uint16_t));
listview_options_chunk.chunk_type = CHUNK_LISTVIEW_OPTIONS;
delete [] buf;
// Build the local find options chunk.
buf = new pi_char_t[sizeof(pi_uint16_t)];
PalmLib::set_short(buf, 0);
Chunk lfind_options_chunk(buf, 1 * sizeof(pi_uint16_t));
lfind_options_chunk.chunk_type = CHUNK_LFIND_OPTIONS;
delete [] buf;
// Add all the chunks to the chunk list.
chunks.push_back(names_chunk);
chunks.push_back(types_chunk);
chunks.push_back(listview_options_chunk);
chunks.push_back(lfind_options_chunk);
}
void PalmLib::FlatFile::DB::build_listview_chunk(std::vector<DB::Chunk>& chunks,
const ListView& lv) const
{
// Calculate size and allocate space for the temporary buffer.
size_t size = 2 * sizeof(pi_uint16_t) + 32
+ lv.size() * (2 * sizeof(pi_uint16_t));
pi_char_t* buf = new pi_char_t[size];
// Fill in the header details.
pi_uint16_t flags = 0;
if (lv.editoruse) {
std::cout << "editoruse\n";
flags |= VIEWFLAG_USE_IN_EDITVIEW;
}
PalmLib::set_short(buf, flags);
PalmLib::set_short(buf + sizeof(pi_uint16_t), lv.size());
memset((char *) (buf + 4), 0, 32);
strncpy((char *) (buf + 4), lv.name.c_str(), 32);
// Fill in the column details.
pi_char_t* p = buf + 4 + 32;
for (ListView::const_iterator i = lv.begin(); i != lv.end(); ++i) {
const ListViewColumn& col = (*i);
PalmLib::set_short(p, col.field);
PalmLib::set_short(p + sizeof(pi_uint16_t), col.width);
p += 2 * sizeof(pi_uint16_t);
}
// Create the chunk and place it in the chunks list.
Chunk chunk(buf, size);
chunk.chunk_type = CHUNK_LISTVIEW_DEFINITION;
delete [] buf;
chunks.push_back(chunk);
}
void PalmLib::FlatFile::DB::build_appinfo_block(const std::vector<DB::Chunk>& chunks, PalmLib::Block& appinfo) const
{
std::vector<Chunk>::const_iterator iter;
// Determine the size of the final app info block.
size_t size = 2 * sizeof(pi_uint16_t);
for (iter = chunks.begin(); iter != chunks.end(); ++iter) {
const Chunk& chunk = (*iter);
size += 2 * sizeof(pi_uint16_t) + chunk.size();
}
// Allocate the temporary buffer. Fill in the header.
pi_char_t* buf = new pi_char_t[size];
PalmLib::set_short(buf, m_flags);
PalmLib::set_short(buf + sizeof(pi_uint16_t), getNumOfFields());
// Pack the chunks into the buffer.
size_t i = 4;
for (iter = chunks.begin(); iter != chunks.end(); ++iter) {
const Chunk& chunk = (*iter);
// Set the chunk type and size.
PalmLib::set_short(buf + i, chunk.chunk_type);
PalmLib::set_short(buf + i + 2, chunk.size());
i += 4;
// Copy the chunk data into the buffer.
memcpy(buf + i, chunk.data(), chunk.size());
i += chunk.size();
}
// Finally, move the buffer into the provided appinfo block.
appinfo.set_raw(buf, size);
delete [] buf;
}
void PalmLib::FlatFile::DB::outputPDB(PalmLib::Database& pdb) const
{
unsigned i;
// Let the superclass have a chance.
SUPERCLASS(PalmLib::FlatFile, Database, outputPDB, (pdb));
// Set the database's type and creator.
pdb.type(PalmLib::mktag('D','B','0','0'));
pdb.creator(PalmLib::mktag('D','B','O','S'));
// Create the app info block.
std::vector<Chunk> chunks;
build_standard_chunks(chunks);
for (i = 0; i < getNumOfListViews(); ++i) {
build_listview_chunk(chunks, getListView(i));
}
build_fieldsdata_chunks(chunks);
build_about_chunk(chunks);
PalmLib::Block appinfo;
build_appinfo_block(chunks, appinfo);
pdb.setAppInfoBlock(appinfo);
// Output each record to the PalmOS database.
for (i = 0; i < getNumRecords(); ++i) {
Record record = getRecord(i);
PalmLib::Record pdb_record;
make_record(pdb_record, record);
pdb.appendRecord(pdb_record);
}
}
unsigned PalmLib::FlatFile::DB::getMaxNumOfFields() const
{
return 0;
}
bool
PalmLib::FlatFile::DB::supportsFieldType(const Field::FieldType& type) const
{
switch (type) {
case PalmLib::FlatFile::Field::STRING:
case PalmLib::FlatFile::Field::BOOLEAN:
case PalmLib::FlatFile::Field::INTEGER:
case PalmLib::FlatFile::Field::FLOAT:
case PalmLib::FlatFile::Field::DATE:
case PalmLib::FlatFile::Field::TIME:
case PalmLib::FlatFile::Field::NOTE:
case PalmLib::FlatFile::Field::LIST:
case PalmLib::FlatFile::Field::LINK:
case PalmLib::FlatFile::Field::LINKED:
case PalmLib::FlatFile::Field::CALCULATED:
return true;
default:
return false;
}
}
std::vector<std::string>
PalmLib::FlatFile::DB::field_argumentf(int i, std::string& format)
{
std::vector<std::string> vtitles(0, std::string(""));
int j;
switch (field_type(i)) {
case PalmLib::FlatFile::Field::STRING:
format = std::string("%s");
vtitles.push_back(std::string("default value"));
break;
case PalmLib::FlatFile::Field::INTEGER:
format = std::string("%ld/%d");
vtitles.push_back(std::string("default value"));
vtitles.push_back(std::string("increment"));
break;
case PalmLib::FlatFile::Field::FLOAT:
format = std::string("%f");
vtitles.push_back(std::string("default value"));
break;
case PalmLib::FlatFile::Field::DATE:
format = std::string("%d/%d/%d");
vtitles.push_back(std::string("Year (or now)"));
vtitles.push_back(std::string("Month"));
vtitles.push_back(std::string("Day in the month"));
break;
case PalmLib::FlatFile::Field::TIME:
format = std::string("%d/%d");
vtitles.push_back(std::string("Hour (or now)"));
vtitles.push_back(std::string("Minute"));
break;
case PalmLib::FlatFile::Field::LIST:
format = std::string("");
for (j = 0; j < 31; i++) {
format += std::string("%s/");
std::ostringstream title;
title << "item " << j;
vtitles.push_back(title.str());
}
format += std::string("%s");
vtitles.push_back(std::string("item 32"));
break;
case PalmLib::FlatFile::Field::LINK:
format = std::string("%s/%d");
vtitles.push_back(std::string("database"));
vtitles.push_back(std::string("field number"));
break;
case PalmLib::FlatFile::Field::LINKED:
format = std::string("%d/%d");
vtitles.push_back(std::string("link field number"));
vtitles.push_back(std::string("field number"));
break;
case PalmLib::FlatFile::Field::CALCULATED:
case PalmLib::FlatFile::Field::BOOLEAN:
case PalmLib::FlatFile::Field::NOTE:
default:
format = std::string("");
break;
}
return vtitles;
}
unsigned PalmLib::FlatFile::DB::getMaxNumOfListViews() const
{
return 0;
}
void PalmLib::FlatFile::DB::doneWithSchema()
{
// Let the superclass have a chance.
SUPERCLASS(PalmLib::FlatFile, Database, doneWithSchema, ());
/* false from the 0.3.3 version
if (getNumOfListViews() < 1)
throw PalmLib::error("at least one list view must be specified");
*/
}
void PalmLib::FlatFile::DB::setOption(const std::string& name,
const std::string& value)
{
if (name == "find") {
if (!StrOps::string2boolean(value))
m_flags &= ~(1);
else
m_flags |= 1;
} else if (name == "read-only"
|| name == "readonly") {
if (!StrOps::string2boolean(value))
m_flags &= ~(0x8000);
else
m_flags |= 0x8000;
} else {
SUPERCLASS(PalmLib::FlatFile, Database, setOption, (name, value));
}
}
PalmLib::FlatFile::Database::options_list_t
PalmLib::FlatFile::DB::getOptions(void) const
{
typedef PalmLib::FlatFile::Database::options_list_t::value_type value;
PalmLib::FlatFile::Database::options_list_t result;
result = SUPERCLASS(PalmLib::FlatFile, Database, getOptions, ());
if (m_flags & 1)
result.push_back(value("find", "true"));
if (m_flags & 0x8000)
result.push_back(value("read-only", "true"));
return result;
}
|