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
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* libvisio
* Version: MPL 1.1 / GPLv2+ / LGPLv2+
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License or as specified alternatively below. You may obtain a copy of
* the License at http://www.mozilla.org/MPL/
*
* 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.
*
* Major Contributor(s):
* Copyright (C) 2011 Fridrich Strba <fridrich.strba@bluewin.ch>
* Copyright (C) 2011 Eilidh McAdam <tibbylickle@gmail.com>
*
*
* All Rights Reserved.
*
* For minor contributions see the git repository.
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPLv2+"), or
* the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
* in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
* instead of those above.
*/
#include <libwpd-stream/libwpd-stream.h>
#include <locale.h>
#include <sstream>
#include <string>
#include <cmath>
#include <set>
#include "libvisio_utils.h"
#include "VSDXParser.h"
#include "VSDInternalStream.h"
#include "VSDXDocumentStructure.h"
#include "VSDXContentCollector.h"
#include "VSDXStylesCollector.h"
libvisio::VSDXParser::VSDXParser(WPXInputStream *input, libwpg::WPGPaintInterface *painter)
: m_input(input), m_painter(painter), m_header(), m_collector(0), m_geomList(new VSDXGeometryList()),
m_geomListVector(), m_fieldList(), m_charList(new VSDXCharacterList()),
m_paraList(new VSDXParagraphList()), m_charListVector(), m_paraListVector(),
m_shapeList(), m_currentLevel(0), m_stencils(), m_currentStencil(0),
m_stencilShape(), m_isStencilStarted(false), m_isInStyles(false), m_currentPageID(0)
{}
libvisio::VSDXParser::~VSDXParser()
{
if (m_geomList)
{
m_geomList->clear();
delete m_geomList;
}
if (m_charList)
{
m_charList->clear();
delete m_charList;
}
if (m_paraList)
{
m_paraList->clear();
delete m_paraList;
}
if (m_currentStencil)
delete m_currentStencil;
}
bool libvisio::VSDXParser::parseMain()
{
if (!m_input)
{
return false;
}
// Seek to trailer stream pointer
m_input->seek(0x24, WPX_SEEK_SET);
m_input->seek(8, WPX_SEEK_CUR);
unsigned offset = readU32(m_input);
unsigned length = readU32(m_input);
unsigned short format = readU16(m_input);
bool compressed = ((format & 2) == 2);
m_input->seek(offset, WPX_SEEK_SET);
VSDInternalStream trailerStream(m_input, length, compressed);
std::vector<std::map<unsigned, XForm> > groupXFormsSequence;
std::vector<std::map<unsigned, unsigned> > groupMembershipsSequence;
std::vector<std::list<unsigned> > documentPageShapeOrders;
VSDXStylesCollector stylesCollector(groupXFormsSequence, groupMembershipsSequence, documentPageShapeOrders);
m_collector = &stylesCollector;
if (!parseDocument(&trailerStream))
return false;
VSDXStyles styles = stylesCollector.getStyleSheets();
VSDXContentCollector contentCollector(m_painter, groupXFormsSequence, groupMembershipsSequence, documentPageShapeOrders, styles, m_stencils);
m_collector = &contentCollector;
if (!parseDocument(&trailerStream))
return false;
return true;
}
bool libvisio::VSDXParser::parseDocument(WPXInputStream *input)
{
try
{
handleStreams(input, 4, 0);
return true;
}
catch (...)
{
return false;
}
}
void libvisio::VSDXParser::handleStreams(WPXInputStream *input, unsigned shift, unsigned level)
{
// Parse out pointers to streams
input->seek(shift, WPX_SEEK_SET);
unsigned offset = readU32(input);
input->seek(offset+shift-4, WPX_SEEK_SET);
/* unsigned listSize = */ readU32(input);
unsigned pointerCount = readU32(input);
input->seek(4, WPX_SEEK_CUR);
std::vector<libvisio::Pointer> PtrList;
for (unsigned i = 0; i < pointerCount; i++)
{
Pointer ptr;
ptr.Type = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Skip dword
ptr.Offset = readU32(input);
ptr.Length = readU32(input);
ptr.Format = readU16(input);
if (ptr.Type == VSD_FONTFACES)
PtrList.insert(PtrList.begin(),ptr);
else if (ptr.Type != 0)
PtrList.push_back(ptr);
}
for (unsigned j = 0; j < PtrList.size(); j++)
handleStream(PtrList[j], j, level+1);
}
void libvisio::VSDXParser::handleStream(const Pointer &ptr, unsigned idx, unsigned level)
{
bool compressed = ((ptr.Format & 2) == 2);
m_input->seek(ptr.Offset, WPX_SEEK_SET);
VSDInternalStream tmpInput(m_input, ptr.Length, compressed);
unsigned shift = compressed ? 4 : 0;
VSD_DEBUG_MSG(("VSDXParser::handleStream: level %i, ptr.Type 0x%.8x, ptr.Offset 0x%.8x, ptr.Length 0x%.8x, ptr.Format 0x%.4x\n",
level, ptr.Type, ptr.Offset, ptr.Length, ptr.Format));
switch (ptr.Type)
{
case VSD_COLORS:
readColours(&tmpInput);
return;
case VSD_FONTFACE: // substreams of FONTAFACES stream, ver 11 only
readFont(&tmpInput, idx);
return;
case VSD_STYLES:
m_isInStyles = true;
return;
case VSD_PAGE:
m_currentPageID = idx;
m_collector->startPage();
break;
default:
break;
}
if ((ptr.Format >> 4) == 0xd)
handleChunks(&tmpInput);
else if ((ptr.Format >> 4) == 0x5)
handleStreams(&tmpInput, shift, level+1);
switch (ptr.Type)
{
case VSD_STYLES:
m_isInStyles = false;
return;
case VSD_PAGE:
m_collector->endPage();
break;
case VSD_PAGES:
{
std::vector<unsigned> pageOrder;
m_collector->endPages(pageOrder);
break;
}
default:
break;
}
}
void libvisio::VSDXParser::handleChunks(WPXInputStream *input)
{
long endPos = 0;
while (!input->atEOS())
{
getChunkHeader(input);
endPos = m_header.dataLength+m_header.trailer+input->tell();
_handleLevelChange(m_header.level);
VSD_DEBUG_MSG(("Shape: parsing chunk type %x\n", m_header.chunkType));
switch (m_header.chunkType)
{
case VSD_SHAPE_GROUP:
case VSD_SHAPE_GUIDE:
case VSD_SHAPE_SHAPE:
case VSD_SHAPE_FOREIGN:
readShape(input);
break;
case VSD_XFORM_DATA:
readXFormData(input);
break;
case VSD_TEXT_XFORM:
readTxtXForm(input);
break;
case VSD_SHAPE_LIST:
readShapeList(input);
break;
case VSD_SHAPE_ID:
readShapeId(input);
break;
case VSD_LINE:
readLine(input);
break;
case VSD_FILL_AND_SHADOW:
readFillAndShadow(input);
break;
case VSD_GEOM_LIST:
readGeomList(input);
break;
case VSD_GEOMETRY:
readGeometry(input);
break;
case VSD_MOVE_TO:
readMoveTo(input);
break;
case VSD_LINE_TO:
readLineTo(input);
break;
case VSD_ARC_TO:
readArcTo(input);
break;
case VSD_ELLIPSE:
readEllipse(input);
break;
case VSD_ELLIPTICAL_ARC_TO:
readEllipticalArcTo(input);
break;
case VSD_NURBS_TO:
readNURBSTo(input);
break;
case VSD_POLYLINE_TO:
readPolylineTo(input);
break;
case VSD_INFINITE_LINE:
readInfiniteLine(input);
break;
case VSD_SHAPE_DATA:
readShapeData(input);
break;
case VSD_FOREIGN_DATA_TYPE:
readForeignDataType(input);
break;
case VSD_FOREIGN_DATA:
readForeignData(input);
break;
case VSD_OLE_LIST:
readOLEList(input);
break;
case VSD_OLE_DATA:
readOLEData(input);
break;
case VSD_PAGE_PROPS:
readPageProps(input);
break;
case VSD_CHAR_LIST:
readCharList(input);
break;
case VSD_PARA_LIST:
readParaList(input);
break;
case VSD_TEXT:
readText(input);
break;
case VSD_CHAR_IX:
readCharIX(input);
break;
case VSD_PARA_IX:
readParaIX(input);
break;
case VSD_TEXT_BLOCK:
readTextBlock(input);
break;
// case VSD_FONT_LIST: // ver 6 only, don't need to handle that
case VSD_FONT_IX: // ver 6 only
readFontIX(input);
break;
case VSD_PAGE:
readPage(input);
break;
case VSD_SPLINE_START:
readSplineStart(input);
break;
case VSD_SPLINE_KNOT:
readSplineKnot(input);
break;
case VSD_NAME_LIST:
readNameList(input);
break;
case VSD_NAME:
readName(input);
break;
case VSD_FIELD_LIST:
readFieldList(input);
break;
case VSD_TEXT_FIELD:
readTextField(input);
break;
case VSD_STYLE_SHEET:
readStyleSheet(input);
break;
default:
m_collector->collectUnhandledChunk(m_header.id, m_header.level);
}
input->seek(endPos, WPX_SEEK_SET);
}
}
void libvisio::VSDXParser::handleStencils(WPXInputStream *input, unsigned shift)
{
if (m_stencils.count() > 0) return;
m_isStencilStarted = true;
unsigned ptrType;
unsigned ptrOffset;
unsigned ptrLength;
unsigned ptrFormat;
input->seek(shift, WPX_SEEK_CUR);
unsigned offset = readU32(input);
input->seek(offset+shift, WPX_SEEK_SET);
unsigned pointerCount = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Ignore 0x0 dword
for (unsigned i = 0; i < pointerCount; i++)
{
ptrType = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Skip dword
ptrOffset = readU32(input);
ptrLength = readU32(input);
ptrFormat = readU16(input);
bool compressed = ((ptrFormat & 2) == 2);
m_input->seek(ptrOffset, WPX_SEEK_SET);
VSDInternalStream tmpInput(m_input, ptrLength, compressed);
unsigned shift2 = compressed ? 4 : 0;
switch (ptrType)
{
case VSD_STENCIL_PAGE:
{
VSDXStencil tmpStencil;
m_currentStencil = &tmpStencil;
handleStencilPage(&tmpInput, shift2);
m_stencils.addStencil(i, *m_currentStencil);
m_currentStencil = 0;
}
break;
default:
break;
}
}
m_isStencilStarted = false;
}
void libvisio::VSDXParser::handleStencilPage(WPXInputStream *input, unsigned shift)
{
unsigned ptrType;
unsigned ptrOffset;
unsigned ptrLength;
unsigned ptrFormat;
input->seek(shift, WPX_SEEK_CUR);
unsigned offset = readU32(input);
input->seek(offset+shift, WPX_SEEK_SET);
unsigned pointerCount = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Ignore 0x0 dword
for (unsigned i = 0; i < pointerCount; i++)
{
ptrType = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Skip dword
ptrOffset = readU32(input);
ptrLength = readU32(input);
ptrFormat = readU16(input);
bool compressed = ((ptrFormat & 2) == 2);
m_input->seek(ptrOffset, WPX_SEEK_SET);
VSDInternalStream tmpInput(m_input, ptrLength, compressed);
shift = compressed ? 4 : 0;
switch (ptrType)
{
case VSD_SHAPE_FOREIGN:
m_stencilShape = VSDXStencilShape();
m_stencilShape.m_foreign = new ForeignData();
handleStencilForeign(&tmpInput, shift);
m_currentStencil->addStencilShape(i, m_stencilShape);
break;
case VSD_SHAPE_GROUP:
case VSD_SHAPE_GUIDE:
case VSD_SHAPE_SHAPE:
m_stencilShape = VSDXStencilShape();
try
{
handleChunks(&tmpInput);
}
catch (EndOfStreamException &)
{
}
_handleLevelChange(0);
m_currentStencil->addStencilShape(i, m_stencilShape);
break;
default:
break;
}
}
}
void libvisio::VSDXParser::handleStencilForeign(WPXInputStream *input, unsigned shift)
{
unsigned ptrType;
unsigned ptrOffset;
unsigned ptrLength;
unsigned ptrFormat;
input->seek(shift, WPX_SEEK_CUR);
unsigned offset = readU32(input);
input->seek(offset+shift, WPX_SEEK_SET);
unsigned pointerCount = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Ignore 0x0 dword
for (unsigned i = 0; i < pointerCount; i++)
{
ptrType = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Skip dword
ptrOffset = readU32(input);
ptrLength = readU32(input);
ptrFormat = readU16(input);
bool compressed = ((ptrFormat & 2) == 2);
m_input->seek(ptrOffset, WPX_SEEK_SET);
VSDInternalStream tmpInput(m_input, ptrLength, compressed);
shift = compressed ? 4 : 0;
if (ptrType == VSD_PROP_LIST)
{
shift = compressed ? 4 : 0;
tmpInput.seek(shift, WPX_SEEK_CUR);
offset = readU32(&tmpInput);
tmpInput.seek(offset+shift, WPX_SEEK_SET);
unsigned pointerCount2 = readU32(&tmpInput);
tmpInput.seek(4, WPX_SEEK_CUR); // Ignore 0x0 dword
for (unsigned j = 0; j < pointerCount2; j++)
{
ptrType = readU32(&tmpInput);
tmpInput.seek(4, WPX_SEEK_CUR); // Skip dword
ptrOffset = readU32(&tmpInput);
ptrLength = readU32(&tmpInput);
ptrFormat = readU16(&tmpInput);
compressed = ((ptrFormat & 2) == 2);
m_input->seek(ptrOffset, WPX_SEEK_SET);
VSDInternalStream tmpInput2(m_input, ptrLength, compressed);
if (ptrType == VSD_FOREIGN_DATA_TYPE)
{
tmpInput2.seek(0x4, WPX_SEEK_CUR);
readForeignDataType(&tmpInput2);
}
}
}
else if (ptrType == VSD_FOREIGN_DATA)
{
unsigned foreignLength = ptrLength - 4;
if (compressed)
foreignLength = readU32(&tmpInput);
else
tmpInput.seek(0x4, WPX_SEEK_CUR);
unsigned long tmpBytesRead = 0;
const unsigned char *buffer = tmpInput.read(foreignLength, tmpBytesRead);
if (foreignLength == tmpBytesRead)
{
WPXBinaryData binaryData(buffer, tmpBytesRead);
m_stencilShape.m_foreign->dataId = m_header.id;
m_stencilShape.m_foreign->dataLevel = m_header.level;
m_stencilShape.m_foreign->data = binaryData;
}
}
else if (ptrType == VSD_OLE_LIST)
{
m_stencilShape.m_foreign->dataId = m_header.id;
handleStencilOle(&tmpInput, shift);
}
}
}
void libvisio::VSDXParser::handleStencilOle(WPXInputStream *input, unsigned shift)
{
unsigned ptrType;
unsigned ptrOffset;
unsigned ptrLength;
unsigned ptrFormat;
input->seek(shift, WPX_SEEK_CUR);
unsigned offset = readU32(input);
input->seek(offset+shift, WPX_SEEK_SET);
unsigned pointerCount = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Ignore 0x0 dword
for (unsigned i = 0; i < pointerCount; i++)
{
ptrType = readU32(input);
input->seek(4, WPX_SEEK_CUR); // Skip dword
ptrOffset = readU32(input);
ptrLength = readU32(input);
ptrFormat = readU16(input);
bool compressed = ((ptrFormat & 2) == 2);
m_input->seek(ptrOffset, WPX_SEEK_SET);
VSDInternalStream tmpInput(m_input, ptrLength, compressed);
shift = compressed ? 4 : 0;
tmpInput.seek(shift, WPX_SEEK_CUR);
if (ptrType == VSD_OLE_DATA)
{
// Be sure to use internal stream size to get decompressed size
unsigned foreignLength = tmpInput.getSize() - shift;
unsigned long tmpBytesRead = 0;
const unsigned char *buffer = tmpInput.read(foreignLength, tmpBytesRead);
if (foreignLength == tmpBytesRead)
{
// Append data instead of setting it - allows multi-stream OLE objects
m_stencilShape.m_foreign->data.append(buffer, tmpBytesRead);
m_stencilShape.m_foreign->dataLevel = m_header.level;
}
}
}
}
void libvisio::VSDXParser::_handleLevelChange(unsigned level)
{
if (level == m_currentLevel)
return;
if (level < 3)
{
m_geomListVector.push_back(m_geomList);
m_charListVector.push_back(m_charList);
m_paraListVector.push_back(m_paraList);
// reinitialize, but don't clear, because we want those pointers to be valid until we handle the whole vector
m_geomList = new VSDXGeometryList();
m_charList = new VSDXCharacterList();
m_paraList = new VSDXParagraphList();
m_shapeList.handle(m_collector);
m_shapeList.clear();
}
if (level < 2)
{
for (std::vector<VSDXGeometryList *>::iterator iter = m_geomListVector.begin(); iter != m_geomListVector.end(); ++iter)
{
(*iter)->handle(m_collector);
(*iter)->clear();
delete *iter;
}
m_geomListVector.clear();
for (std::vector<VSDXCharacterList *>::iterator iter2 = m_charListVector.begin(); iter2 != m_charListVector.end(); ++iter2)
{
(*iter2)->handle(m_collector);
(*iter2)->clear();
delete *iter2;
}
m_charListVector.clear();
for (std::vector<VSDXParagraphList *>::iterator iter3 = m_paraListVector.begin(); iter3 != m_paraListVector.end(); ++iter3)
{
(*iter3)->handle(m_collector);
(*iter3)->clear();
delete *iter3;
}
m_paraListVector.clear();
if (!m_fieldList.empty())
{
m_fieldList.handle(m_collector);
m_fieldList.clear();
}
}
m_currentLevel = level;
}
// --- READERS ---
void libvisio::VSDXParser::readEllipticalArcTo(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x3 = readDouble(input); // End x
input->seek(1, WPX_SEEK_CUR);
double y3 = readDouble(input); // End y
input->seek(1, WPX_SEEK_CUR);
double x2 = readDouble(input); // Mid x
input->seek(1, WPX_SEEK_CUR);
double y2 = readDouble(input); // Mid y
input->seek(1, WPX_SEEK_CUR);
double angle = readDouble(input); // Angle
input->seek(1, WPX_SEEK_CUR);
double ecc = readDouble(input); // Eccentricity
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addEllipticalArcTo(m_header.id, m_header.level, x3, y3, x2, y2, angle, ecc);
else
m_geomList->addEllipticalArcTo(m_header.id, m_header.level, x3, y3, x2, y2, angle, ecc);
}
void libvisio::VSDXParser::readForeignData(WPXInputStream *input)
{
unsigned long tmpBytesRead = 0;
const unsigned char *buffer = input->read(m_header.dataLength, tmpBytesRead);
if (m_header.dataLength != tmpBytesRead)
return;
WPXBinaryData binaryData(buffer, tmpBytesRead);
m_collector->collectForeignData(m_header.id, m_header.level, binaryData);
}
void libvisio::VSDXParser::readOLEList(WPXInputStream * /* input */)
{
m_collector->collectOLEList(m_header.id, m_header.level);
}
void libvisio::VSDXParser::readOLEData(WPXInputStream *input)
{
unsigned long tmpBytesRead = 0;
const unsigned char *buffer = input->read(m_header.dataLength, tmpBytesRead);
if (m_header.dataLength != tmpBytesRead)
return;
WPXBinaryData oleData(buffer, tmpBytesRead);
m_collector->collectOLEData(m_header.id, m_header.level, oleData);
}
void libvisio::VSDXParser::readEllipse(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double cx = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double cy = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double xleft = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double yleft = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double xtop = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double ytop = readDouble(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addEllipse(m_header.id, m_header.level, cx, cy, xleft, yleft, xtop, ytop);
else
m_geomList->addEllipse(m_header.id, m_header.level, cx, cy, xleft, yleft, xtop, ytop);
}
void libvisio::VSDXParser::readLine(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double strokeWidth = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
Colour c;
c.r = readU8(input);
c.g = readU8(input);
c.b = readU8(input);
c.a = readU8(input);
unsigned char linePattern = readU8(input);
input->seek(10, WPX_SEEK_CUR);
unsigned char startMarker = readU8(input);
unsigned char endMarker = readU8(input);
unsigned char lineCap = readU8(input);
if (m_isInStyles)
m_collector->collectLineStyle(m_header.id, m_header.level, strokeWidth, c, linePattern, startMarker, endMarker, lineCap);
else if (m_isStencilStarted)
{
if (!m_stencilShape.m_lineStyle)
m_stencilShape.m_lineStyle = new VSDXLineStyle(strokeWidth, c, linePattern, startMarker, endMarker, lineCap);
}
else
m_collector->collectLine(m_header.id, m_header.level, strokeWidth, c, linePattern, startMarker, endMarker, lineCap);
}
void libvisio::VSDXParser::readTextBlock(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double leftMargin = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double rightMargin = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double topMargin = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double bottomMargin = readDouble(input);
unsigned char verticalAlign = readU8(input);
unsigned char bgClrId = readU8(input);
Colour c;
c.r = readU8(input);
c.g = readU8(input);
c.b = readU8(input);
c.a = readU8(input);
input->seek(1, WPX_SEEK_CUR);
double defaultTabStop = readDouble(input);
input->seek(12, WPX_SEEK_CUR);
unsigned char textDirection = readU8(input);
if (m_isInStyles)
m_collector->collectTextBlockStyle(m_header.id, m_header.level, leftMargin, rightMargin, topMargin, bottomMargin,
verticalAlign, bgClrId, c, defaultTabStop, textDirection);
else if (m_isStencilStarted)
{
if (!m_stencilShape.m_textBlockStyle)
m_stencilShape.m_textBlockStyle = new VSDXTextBlockStyle(leftMargin, rightMargin, topMargin, bottomMargin,
verticalAlign, bgClrId, c, defaultTabStop, textDirection);
}
else
m_collector->collectTextBlock(m_header.id, m_header.level, leftMargin, rightMargin, topMargin, bottomMargin,
verticalAlign, bgClrId, c, defaultTabStop, textDirection);
}
void libvisio::VSDXParser::readGeomList(WPXInputStream *input)
{
if (m_isStencilStarted)
m_stencilShape.m_geometries.push_back(VSDXGeometryList());
uint32_t subHeaderLength = readU32(input);
uint32_t childrenListLength = readU32(input);
input->seek(subHeaderLength, WPX_SEEK_CUR);
std::vector<unsigned> geometryOrder;
geometryOrder.reserve(childrenListLength / sizeof(uint32_t));
for (unsigned i = 0; i < (childrenListLength / sizeof(uint32_t)); i++)
geometryOrder.push_back(readU32(input));
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().setElementsOrder(geometryOrder);
else
{
m_geomList->setElementsOrder(geometryOrder);
// We want the collectors to still get the level information
m_collector->collectUnhandledChunk(m_header.id, m_header.level);
}
}
void libvisio::VSDXParser::readCharList(WPXInputStream *input)
{
uint32_t subHeaderLength = readU32(input);
uint32_t childrenListLength = readU32(input);
input->seek(subHeaderLength, WPX_SEEK_CUR);
std::vector<unsigned> characterOrder;
characterOrder.reserve(childrenListLength / sizeof(uint32_t));
for (unsigned i = 0; i < (childrenListLength / sizeof(uint32_t)); i++)
characterOrder.push_back(readU32(input));
m_charList->setElementsOrder(characterOrder);
// We want the collectors to still get the level information
m_collector->collectUnhandledChunk(m_header.id, m_header.level);
}
void libvisio::VSDXParser::readParaList(WPXInputStream *input)
{
uint32_t subHeaderLength = readU32(input);
uint32_t childrenListLength = readU32(input);
input->seek(subHeaderLength, WPX_SEEK_CUR);
std::vector<unsigned> paragraphOrder;
paragraphOrder.reserve(childrenListLength / sizeof(uint32_t));
for (unsigned i = 0; i < (childrenListLength / sizeof(uint32_t)); i++)
paragraphOrder.push_back(readU32(input));
m_paraList->setElementsOrder(paragraphOrder);
// We want the collectors to still get the level information
m_collector->collectUnhandledChunk(m_header.id, m_header.level);
}
void libvisio::VSDXParser::readPage(WPXInputStream *input)
{
input->seek(8, WPX_SEEK_CUR); //sub header length and children list length
uint32_t backgroundPageID = readU32(input);
m_collector->collectPage(m_header.id, m_header.level, backgroundPageID, m_currentPageID);
}
void libvisio::VSDXParser::readGeometry(WPXInputStream *input)
{
unsigned char geomFlags = readU8(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addGeometry(m_header.id, m_header.level, geomFlags);
else
m_geomList->addGeometry(m_header.id, m_header.level, geomFlags);
}
void libvisio::VSDXParser::readMoveTo(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y = readDouble(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addMoveTo(m_header.id, m_header.level, x, y);
else
m_geomList->addMoveTo(m_header.id, m_header.level, x, y);
}
void libvisio::VSDXParser::readLineTo(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y = readDouble(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addLineTo(m_header.id, m_header.level, x, y);
else
m_geomList->addLineTo(m_header.id, m_header.level, x, y);
}
void libvisio::VSDXParser::readArcTo(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x2 = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y2 = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double bow = readDouble(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addArcTo(m_header.id, m_header.level, x2, y2, bow);
else
m_geomList->addArcTo(m_header.id, m_header.level, x2, y2, bow);
}
void libvisio::VSDXParser::readXFormData(WPXInputStream *input)
{
XForm xform;
input->seek(1, WPX_SEEK_CUR);
xform.pinX = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
xform.pinY = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
xform.width = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
xform.height = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
xform.pinLocX = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
xform.pinLocY = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
xform.angle = readDouble(input);
xform.flipX = (readU8(input) != 0);
xform.flipY = (readU8(input) != 0);
m_collector->collectXFormData(m_header.id, m_header.level, xform);
}
void libvisio::VSDXParser::readTxtXForm(WPXInputStream *input)
{
XForm txtxform;
input->seek(1, WPX_SEEK_CUR);
txtxform.pinX = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
txtxform.pinY = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
txtxform.width = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
txtxform.height = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
txtxform.pinLocX = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
txtxform.pinLocY = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
txtxform.angle = readDouble(input);
m_collector->collectTxtXForm(m_header.id, m_header.level, txtxform);
}
void libvisio::VSDXParser::readShapeId(WPXInputStream *input)
{
unsigned shapeId = readU32(input);
m_shapeList.addShapeId(m_header.id, m_header.level, shapeId);
}
void libvisio::VSDXParser::readShapeList(WPXInputStream *input)
{
uint32_t subHeaderLength = readU32(input);
uint32_t childrenListLength = readU32(input);
input->seek(subHeaderLength, WPX_SEEK_CUR);
std::vector<unsigned> shapeOrder;
shapeOrder.reserve(childrenListLength / sizeof(uint32_t));
for (unsigned i = 0; i < (childrenListLength / sizeof(uint32_t)); i++)
shapeOrder.push_back(readU32(input));
m_shapeList.setElementsOrder(shapeOrder);
// We want the collectors to still get the level information
m_collector->collectUnhandledChunk(m_header.id, m_header.level);
}
void libvisio::VSDXParser::readForeignDataType(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double imgOffsetX = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double imgOffsetY = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double imgWidth = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double imgHeight = readDouble(input);
unsigned foreignType = readU16(input);
input->seek(0xb, WPX_SEEK_CUR);
unsigned foreignFormat = readU32(input);
if (m_isStencilStarted)
{
m_stencilShape.m_foreign->typeId = m_header.id;
m_stencilShape.m_foreign->typeLevel = m_header.level;
m_stencilShape.m_foreign->type = foreignType;
m_stencilShape.m_foreign->format = foreignFormat;
m_stencilShape.m_foreign->offsetX = imgOffsetX;
m_stencilShape.m_foreign->offsetY = imgOffsetY;
m_stencilShape.m_foreign->width = imgWidth;
m_stencilShape.m_foreign->height = imgHeight;
}
else
m_collector->collectForeignDataType(m_header.id, m_header.level, foreignType, foreignFormat, imgOffsetX, imgOffsetY, imgWidth, imgHeight);
}
void libvisio::VSDXParser::readPageProps(WPXInputStream *input)
{
// Skip bytes representing unit to *display* (value is always inches)
input->seek(1, WPX_SEEK_CUR);
double pageWidth = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double pageHeight = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double shadowOffsetX = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double shadowOffsetY = -readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double scale = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
scale /= readDouble(input);
if (m_isStencilStarted)
{
m_currentStencil->m_shadowOffsetX = shadowOffsetX;
m_currentStencil->m_shadowOffsetY = shadowOffsetY;
}
else
m_collector->collectPageProps(m_header.id, m_header.level, pageWidth, pageHeight, shadowOffsetX, shadowOffsetY, scale);
}
void libvisio::VSDXParser::readShape(WPXInputStream *input)
{
input->seek(0x12, WPX_SEEK_CUR);
unsigned masterPage = readU32(input);
input->seek(4, WPX_SEEK_CUR);
unsigned masterShape = readU32(input);
input->seek(0x4, WPX_SEEK_CUR);
unsigned fillStyle = readU32(input);
input->seek(4, WPX_SEEK_CUR);
unsigned lineStyle = readU32(input);
input->seek(4, WPX_SEEK_CUR);
unsigned textStyle = readU32(input);
if (m_isStencilStarted)
{
m_stencilShape.m_lineStyleId = lineStyle;
m_stencilShape.m_fillStyleId = fillStyle;
m_stencilShape.m_textStyleId = textStyle;
}
else
m_collector->collectShape(m_header.id, m_header.level, masterPage, masterShape, lineStyle, fillStyle, textStyle);
}
void libvisio::VSDXParser::readNURBSTo(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y = readDouble(input);
double knot = readDouble(input); // Second last knot
double weight = readDouble(input); // Last weight
double knotPrev = readDouble(input); // First knot
double weightPrev = readDouble(input); // First weight
// Detect whether to use Shape Data block
input->seek(1, WPX_SEEK_CUR);
unsigned char useData = readU8(input);
if (useData == 0x8a)
{
input->seek(3, WPX_SEEK_CUR);
unsigned dataId = readU32(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addNURBSTo(m_header.id, m_header.level, x, y, knot, knotPrev, weight, weightPrev, dataId);
else
m_geomList->addNURBSTo(m_header.id, m_header.level, x, y, knot, knotPrev, weight, weightPrev, dataId);
return;
}
std::vector<double> knotVector;
knotVector.push_back(knotPrev);
std::vector<std::pair<double, double> > controlPoints;
std::vector<double> weights;
weights.push_back(weightPrev);
input->seek(9, WPX_SEEK_CUR); // Seek to blocks at offset 0x50 (80)
unsigned long chunkBytesRead = 0x50;
// Find formula block referring to cell E (cell 6)
unsigned cellRef = 0;
unsigned length = 0;
unsigned long inputPos = input->tell();
while (cellRef != 6 && !input->atEOS() &&
m_header.dataLength - chunkBytesRead > 4)
{
length = readU32(input);
input->seek(1, WPX_SEEK_CUR);
cellRef = readU8(input);
if (cellRef < 6)
input->seek(length - 6, WPX_SEEK_CUR);
chunkBytesRead += input->tell() - inputPos;
inputPos = input->tell();
}
if (input->atEOS())
return;
// Only read formula if block is found
if (cellRef == 6)
{
unsigned char xType = 1;
unsigned char yType = 1;
unsigned degree = 3;
// Indicates whether it's a "simple" NURBS block with a static format
// or a complex block where parameters each have a type
unsigned char paramType = readU8(input);
unsigned char valueType = 0;
double lastKnot = 0;
unsigned repetitions = 0;
// Read formula's static first four parameters
if (paramType == 0x8a)
{
lastKnot = readDouble(input);
degree = readU16(input);
xType = readU8(input);
yType = readU8(input);
repetitions = readU32(input);
}
else
{
valueType = paramType;
if (valueType == 0x20)
lastKnot = readDouble(input);
else
lastKnot = readU16(input);
input->seek(1, WPX_SEEK_CUR);
degree = readU16(input);
input->seek(1, WPX_SEEK_CUR);
xType = readU16(input);
input->seek(1, WPX_SEEK_CUR);
yType = readU16(input);
}
// Read sequences of (x, y, knot, weight) until finished
unsigned long bytesRead = input->tell() - inputPos;
unsigned char flag = 0;
if (paramType != 0x8a) flag = readU8(input);
while ((flag != 0x81 || (paramType == 0x8a && repetitions > 0)) && bytesRead < length)
{
inputPos = input->tell();
double knot_ = 0;
double weight_ = 0;
double controlX = 0;
double controlY = 0;
if (paramType == 0x8a) // Parameters have static format
{
controlX = readDouble(input);
controlY = readDouble(input);
knot_ = readDouble(input);
weight_ = readDouble(input);
}
else // Parameters have types
{
valueType = flag;
if (valueType == 0x20)
controlX = readDouble(input);
else
controlX = readU16(input);
valueType = readU8(input);
if (valueType == 0x20)
controlY = readDouble(input);
else
controlY = readU16(input);
valueType = readU8(input);
if (valueType == 0x20)
knot_ = readDouble(input);
else if (valueType == 0x62)
knot_ = readU16(input);
valueType = readU8(input);
if (valueType == 0x20)
weight_ = readDouble(input);
else if (valueType == 0x62)
weight_ = readU16(input);
}
controlPoints.push_back(std::pair<double, double>(controlX, controlY));
knotVector.push_back(knot_);
weights.push_back(weight_);
if (paramType != 0x8a) flag = readU8(input);
else repetitions--;
bytesRead += input->tell() - inputPos;
}
knotVector.push_back(knot);
knotVector.push_back(lastKnot);
weights.push_back(weight);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addNURBSTo(m_header.id, m_header.level, x, y, xType, yType, degree, controlPoints, knotVector, weights);
else
m_geomList->addNURBSTo(m_header.id, m_header.level, x, y, xType,
yType, degree, controlPoints, knotVector, weights);
}
else // No formula found, use line
{
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addLineTo(m_header.id, m_header.level, x, y);
else
m_geomList->addLineTo(m_header.id, m_header.level, x, y);
}
}
void libvisio::VSDXParser::readPolylineTo(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y = readDouble(input);
// Detect whether to use Shape Data block
input->seek(1, WPX_SEEK_CUR);
unsigned useData = readU8(input);
if (useData == 0x8b)
{
input->seek(3, WPX_SEEK_CUR);
unsigned dataId = readU32(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addPolylineTo(m_header.id, m_header.level, x, y, dataId);
else
m_geomList->addPolylineTo(m_header.id, m_header.level, x, y, dataId);
return;
}
// Blocks start at 0x30
input->seek(0x9, WPX_SEEK_CUR);
unsigned long chunkBytesRead = 0x30;
// Find formula block referring to cell A (cell 2)
unsigned cellRef = 0;
unsigned length = 0;
unsigned long inputPos = input->tell();
while (cellRef != 2 && !input->atEOS() &&
m_header.dataLength - chunkBytesRead > 4)
{
length = readU32(input);
if (!length)
break;
input->seek(1, WPX_SEEK_CUR);
cellRef = readU8(input);
if (cellRef < 2)
input->seek(length - 6, WPX_SEEK_CUR);
chunkBytesRead += input->tell() - inputPos;
inputPos = input->tell();
}
if (input->atEOS())
return;
// Default to local co-ordinates if unspecified
std::vector<std::pair<double, double> > points;
// Only formula if block is found
if (cellRef == 2)
{
unsigned char xType = 1;
unsigned char yType = 1;
unsigned long blockBytesRead = 0;
inputPos = input->tell();
blockBytesRead += 6;
// Parse static first two parameters to function
input->seek(1, WPX_SEEK_CUR);
xType = readU16(input);
input->seek(1, WPX_SEEK_CUR);
yType = readU16(input);
// Parse pairs of x,y co-ordinates
unsigned flag = readU8(input);
unsigned valueType = 0; // Holds parameter type indicator
blockBytesRead += input->tell() - inputPos;
while (flag != 0x81 && blockBytesRead < length)
{
inputPos = input->tell();
double x2 = 0;
double y2 = 0;
valueType = flag;
if (valueType == 0x20)
x2 = readDouble(input);
else
x2 = readU16(input);
valueType = readU8(input);
if (valueType == 0x20)
y2 = readDouble(input);
else
y2 = readU16(input);
points.push_back(std::pair<double, double>(x2, y2));
flag = readU8(input);
blockBytesRead += input->tell() - inputPos;
}
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addPolylineTo(m_header.id, m_header.level, x, y, xType, yType, points);
else
m_geomList->addPolylineTo(m_header.id, m_header.level, x, y, xType,
yType, points);
}
else
{
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addLineTo(m_header.id, m_header.level, x, y);
else
m_geomList->addLineTo(m_header.id, m_header.level, x, y);
}
}
void libvisio::VSDXParser::readInfiniteLine(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x1 = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y1 = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double x2 = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y2 = readDouble(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addInfiniteLine(m_header.id, m_header.level, x1, y1, x2, y2);
else
m_geomList->addInfiniteLine(m_header.id, m_header.level, x1, y1, x2, y2);
}
void libvisio::VSDXParser::readShapeData(WPXInputStream *input)
{
unsigned char dataType = readU8(input);
input->seek(15, WPX_SEEK_CUR);
// Polyline data
if (dataType == 0x80)
{
unsigned pointCount = 0;
std::vector<std::pair<double, double> > points;
unsigned char xType = readU8(input);
unsigned char yType = readU8(input);
pointCount = readU32(input);
for (unsigned i = 0; i < pointCount; i++)
{
double x = 0;
double y = 0;
x = readDouble(input);
y = readDouble(input);
points.push_back(std::pair<double, double>(x, y));
}
if (m_isStencilStarted)
{
PolylineData data;
data.xType = xType;
data.yType = yType;
data.points = points;
m_stencilShape.m_polylineData[m_header.id] = data;
}
else
m_collector->collectShapeData(m_header.id, m_header.level, xType, yType, points);
}
// NURBS data
else if (dataType == 0x82)
{
double lastKnot = readDouble(input);
unsigned degree = readU16(input);
unsigned char xType = readU8(input);
unsigned char yType = readU8(input);
unsigned pointCount = readU32(input);
std::vector<double> knotVector;
std::vector<std::pair<double, double> > controlPoints;
std::vector<double> weights;
for (unsigned i = 0; i < pointCount; i++)
{
double controlX = readDouble(input);
double controlY = readDouble(input);
double knot = readDouble(input);
double weight = readDouble(input);
knotVector.push_back(knot);
weights.push_back(weight);
controlPoints.push_back(std::pair<double, double>(controlX, controlY));
}
if (m_isStencilStarted)
{
NURBSData data;
data.lastKnot = lastKnot;
data.degree = degree;
data.xType = xType;
data.yType = yType;
data.knots = knotVector;
data.weights = weights;
data.points = controlPoints;
m_stencilShape.m_nurbsData[m_header.id] = data;
}
else
m_collector->collectShapeData(m_header.id, m_header.level, xType, yType, degree, lastKnot, controlPoints, knotVector, weights);
}
}
void libvisio::VSDXParser::readSplineStart(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y = readDouble(input);
double secondKnot = readDouble(input);
double firstKnot = readDouble(input);
double lastKnot = readDouble(input);
unsigned degree = readU8(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addSplineStart(m_header.id, m_header.level, x, y, secondKnot, firstKnot, lastKnot, degree);
else
m_geomList->addSplineStart(m_header.id, m_header.level, x, y, secondKnot, firstKnot, lastKnot, degree);
}
void libvisio::VSDXParser::readSplineKnot(WPXInputStream *input)
{
input->seek(1, WPX_SEEK_CUR);
double x = readDouble(input);
input->seek(1, WPX_SEEK_CUR);
double y = readDouble(input);
double knot = readDouble(input);
if (m_isStencilStarted)
m_stencilShape.m_geometries.back().addSplineKnot(m_header.id, m_header.level, x, y, knot);
else
m_geomList->addSplineKnot(m_header.id, m_header.level, x, y, knot);
}
void libvisio::VSDXParser::readNameList(WPXInputStream * /* input */)
{
if (m_isStencilStarted)
m_stencilShape.m_names.clear();
else
m_collector->collectNameList(m_header.id, m_header.level);
}
void libvisio::VSDXParser::readFieldList(WPXInputStream *input)
{
uint32_t subHeaderLength = readU32(input);
uint32_t childrenListLength = readU32(input);
input->seek(subHeaderLength, WPX_SEEK_CUR);
std::vector<unsigned> fieldOrder;
fieldOrder.reserve(childrenListLength / sizeof(uint32_t));
for (unsigned i = 0; i < (childrenListLength / sizeof(uint32_t)); i++)
fieldOrder.push_back(readU32(input));
if (m_isStencilStarted)
{
m_stencilShape.m_fields.clear();
m_stencilShape.m_fields.setElementsOrder(fieldOrder);
}
else
{
m_fieldList.setElementsOrder(fieldOrder);
m_fieldList.addFieldList(m_header.id, m_header.level);
// We want the collectors to still get the level information
m_collector->collectUnhandledChunk(m_header.id, m_header.level);
}
}
void libvisio::VSDXParser::readColours(WPXInputStream *input)
{
input->seek(6, WPX_SEEK_SET);
unsigned numColours = readU8(input);
Colour tmpColour;
input->seek(1, WPX_SEEK_CUR);
std::vector<Colour> colours;
for (unsigned i = 0; i < numColours; i++)
{
tmpColour.r = readU8(input);
tmpColour.g = readU8(input);
tmpColour.b = readU8(input);
tmpColour.a = readU8(input);
colours.push_back(tmpColour);
}
m_collector->collectColours(colours);
}
void libvisio::VSDXParser::readFont(WPXInputStream *input, unsigned fontID)
{
input->seek(8, WPX_SEEK_CUR);
::WPXBinaryData textStream;
for (unsigned i = 0; i < 32; i++)
{
unsigned char curchar = readU8(input);
unsigned char nextchar = readU8(input);
if (curchar == 0 && nextchar == 0)
break;
textStream.append(curchar);
textStream.append(nextchar);
}
m_collector->collectFont((unsigned short) fontID, textStream, libvisio::VSD_TEXT_UTF16);
}
void libvisio::VSDXParser::readFontIX(WPXInputStream *input)
{
input->seek(2, WPX_SEEK_CUR);
unsigned char codePage = readU8(input);
input->seek(3, WPX_SEEK_CUR);
::WPXBinaryData textStream;
for (unsigned i = 0; i < m_header.dataLength - 6; i++)
{
unsigned char curchar = readU8(input);
if (curchar == 0)
break;
textStream.append(curchar);
}
TextFormat format = libvisio::VSD_TEXT_ANSI;
switch (codePage)
{
case 0: // ANSI
format = libvisio::VSD_TEXT_ANSI;
break;
case 0xa1: // GREEK
format = libvisio::VSD_TEXT_GREEK;
break;
case 0xa2: // TURKISH
format = libvisio::VSD_TEXT_TURKISH;
break;
case 0xa3: // VIETNAMESE
format = libvisio::VSD_TEXT_VIETNAMESE;
break;
case 0xb1: // HEBREW
format = libvisio::VSD_TEXT_HEBREW;
break;
case 0xb2: // ARABIC
format = libvisio::VSD_TEXT_ARABIC;
break;
case 0xba: // BALTIC
format = libvisio::VSD_TEXT_BALTIC;
break;
case 0xcc: // RUSSIAN
format = libvisio::VSD_TEXT_RUSSIAN;
break;
case 0xde: // THAI
format = libvisio::VSD_TEXT_THAI;
break;
case 0xee: // CENTRAL EUROPE
format = libvisio::VSD_TEXT_CENTRAL_EUROPE;
break;
default:
break;
}
m_collector->collectFont((unsigned short) m_header.id, textStream, format);
}
/* StyleSheet readers */
void libvisio::VSDXParser::readStyleSheet(WPXInputStream *input)
{
input->seek(0x22, WPX_SEEK_CUR);
unsigned lineStyle = readU32(input);
input->seek(4, WPX_SEEK_CUR);
unsigned fillStyle = readU32(input);
input->seek(4, WPX_SEEK_CUR);
unsigned textStyle = readU32(input);
m_collector->collectStyleSheet(m_header.id, m_header.level, lineStyle, fillStyle, textStyle);
}
/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
|