KiCad PCB EDA Suite
Loading...
Searching...
No Matches
cadstar_archive_parser.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020-2021 Roberto Fernandez Bautista <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
26#ifndef CADSTAR_ARCHIVE_PARSER_H_
27#define CADSTAR_ARCHIVE_PARSER_H_
28
29#include <richio.h>
30#include <wx/string.h>
31#include <functional>
32#include <map>
33#include <set>
34#include <vector>
35#include <xnode.h>
36
37#include <math/vector2d.h>
39
40// THROW_IO_ERROR definitions to ensure consistent wording is used in the error messages
41
42#define THROW_MISSING_NODE_IO_ERROR( nodename, location ) \
43 THROW_IO_ERROR( wxString::Format( _( "Missing node '%s' in '%s'" ), nodename, location ) )
44
45#define THROW_UNKNOWN_NODE_IO_ERROR( nodename, location ) \
46 THROW_IO_ERROR( wxString::Format( _( "Unknown node '%s' in '%s'" ), nodename, location ) )
47
48#define THROW_MISSING_PARAMETER_IO_ERROR( param, location ) \
49 THROW_IO_ERROR( wxString::Format( _( "Missing Parameter '%s' in '%s'" ), param, location ) )
50
51#define THROW_UNKNOWN_PARAMETER_IO_ERROR( param, location ) \
52 THROW_IO_ERROR( wxString::Format( _( "Unknown Parameter '%s' in '%s'" ), param, location ) )
53
54#define THROW_PARSING_IO_ERROR( param, location ) \
55 THROW_IO_ERROR( wxString::Format( _( "Unable to parse '%s' in '%s'" ), param, location ) )
56
57//=================================
58// MACRO DEFINITIONS
59//=================================
60#define UNDEFINED_LAYER_ID ( LAYER_ID ) wxEmptyString
61
62
66#define COMPONENT_NAME_ATTRID ( ATTRIBUTE_ID ) wxT( "__COMPONENT_NAME__" )
67
72#define COMPONENT_NAME_2_ATTRID ( ATTRIBUTE_ID ) wxT( "__COMPONENT_NAME_2__" )
73
77#define SYMBOL_NAME_ATTRID ( ATTRIBUTE_ID ) wxT( "__SYMBOL_NAME__" )
78#define LINK_ORIGIN_ATTRID ( ATTRIBUTE_ID ) wxT( "__LINK_ORIGIN__" )
79#define SIGNALNAME_ORIGIN_ATTRID ( ATTRIBUTE_ID ) wxT( "__SIGNALNAME_ORIGIN__" )
80#define PART_NAME_ATTRID ( ATTRIBUTE_ID ) wxT( "__PART_NAME__" )
81
82class EDA_TEXT;
83class wxXmlAttribute;
86class SHAPE_POLY_SET;
87class SHAPE_ARC;
88
93{
94public:
96
98
99
100 typedef wxString LINECODE_ID;
101 typedef wxString HATCHCODE_ID;
102 typedef wxString ROUTECODE_ID;
103 typedef wxString NETCLASS_ID;
104 typedef wxString SPACING_CLASS_ID;
105 typedef wxString TEXTCODE_ID;
106 typedef wxString LAYER_ID;
107 typedef wxString VARIANT_ID;
108 typedef wxString ATTRIBUTE_ID;
109 typedef wxString SYMDEF_ID;
110 typedef wxString PART_ID;
111 typedef wxString GATE_ID;
112 typedef long TERMINAL_ID;
114 typedef long PART_PIN_ID;
115 typedef wxString TEXT_ID;
116 typedef wxString FIGURE_ID;
117 typedef wxString GROUP_ID;
118 typedef wxString REUSEBLOCK_ID;
119 typedef wxString NET_ID;
120 typedef wxString NETELEMENT_ID;
121 typedef wxString DOCUMENTATION_SYMBOL_ID;
122 typedef wxString COLOR_ID;
123
124 static const long UNDEFINED_VALUE = -1;
125
137 static const double TXT_HEIGHT_RATIO;
138
144 {
153 REG_USER,
156 DATE,
157 TIME,
159 FROM_FILE,
160 DISTANCE,
164 HYPERLINK,
165 NONE
166 };
167
172 static const std::map<TEXT_FIELD_NAME, wxString> CADSTAR_TO_KICAD_FIELDS;
173
174
176 {
182 std::map<wxString, wxString> FilenamesToTextMap;
183
188 std::map<wxString, wxString> TextToHyperlinksMap;
189
194 std::map<TEXT_FIELD_NAME, wxString> TextFieldToValuesMap;
195
200 std::set<TEXT_FIELD_NAME> InconsistentTextFields;
201
205 std::function<void()> CheckPointCallback = []() {};
206 };
207
216 static wxString ParseTextFields( const wxString& aTextString, PARSER_CONTEXT* aParserContext );
217
218
219 struct PARSER
220 {
221 virtual void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) = 0;
222
223 virtual ~PARSER() {};
224 };
225
226
227 struct FORMAT : PARSER
228 {
229 wxString Type;
230 long SomeInt;
231 long Version;
234 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
235 };
236
237
239 {
240 long Year;
241 long Month;
242 long Day;
243 long Hour;
244 long Minute;
245 long Second;
246
247 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
248 };
249
250 //Note: there are possibly several other resolutions, but HUNDREDTH MICRON is only one known
251 enum class RESOLUTION
252 {
254 };
255
256
257 struct HEADER : PARSER
258 {
260 wxString JobFile;
261 wxString JobTitle;
262 wxString Generator;
265
266 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
267 };
268
269
270 struct VARIANT : PARSER
271 {
272 VARIANT_ID ID = wxEmptyString;
273 VARIANT_ID ParentID = wxEmptyString;
274 wxString Name = wxEmptyString;
275 wxString Description = wxEmptyString;
276
277 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
278 };
279
280
282 {
283 std::map<VARIANT_ID, VARIANT> Variants;
284
285 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
286 };
287
288
289 enum class LINESTYLE
290 {
291 SOLID,
292 DASH,
293 DASHDOT,
295 DOT
296 };
297
298
300 {
302 wxString Name;
303 long Width;
305
306 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
307 };
308
309
310 struct HATCH : PARSER
311 {
312 long Step;
315
316 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
317 };
318
319
321 {
323 wxString Name;
324 std::vector<HATCH> Hatches;
325
326 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
327 };
328
329
330 static const long FONT_NORMAL = 400;
331 static const long FONT_BOLD = 700;
332
333
334 struct FONT : PARSER
335 {
336 wxString Name = wxT( "CADSTAR" );
338 long Modifier2 = 0;
339 bool KerningPairs = false;
343 bool Italic = false;
344
345 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
346 };
347
348
350 {
352 wxString Name;
354 long Height;
355 long Width;
359
360 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
361 };
362
363
365 {
371
372 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
373 };
374
375
377 {
379 wxString Name;
384
385 std::vector<ROUTEREASSIGN> RouteReassigns;
386
387 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
388 };
389
390
394 struct EVALUE : PARSER
395 {
396 long Base = 0;
397 long Exponent = 0;
398
399 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
400 double GetDouble();
401 };
402
407 {
409 POINT( int aX, int aY ) : VECTOR2I( aX, aY ) {}
410
411 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
412 };
413
414
416 {
419
420 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
421 };
422
423
425 {
426 virtual VECTOR2I Apply( POINT aCadstarPoint ) = 0;
427 };
428
429
430 enum class VERTEX_TYPE
431 {
432 POINT,
437 };
438
443 struct VERTEX : PARSER
444 {
446 POINT aCenter = POINT() ) :
447 Type( aType ), End( aEnd ), Center( aCenter )
448 {}
449
453
454 static bool IsVertex( XNODE* aNode );
455 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
456
457 void AppendToChain( SHAPE_LINE_CHAIN* aChainToAppendTo,
458 const std::function<VECTOR2I( const VECTOR2I& )> aCadstarToKicadPointCallback,
459 double aAccuracy ) const;
460
461 SHAPE_ARC BuildArc( const VECTOR2I& aPrevPoint,
462 const std::function<VECTOR2I( const VECTOR2I& )>
463 aCadstarToKicadPointCallback ) const;
464 };
465
469 struct CUTOUT : PARSER
470 {
471 std::vector<VERTEX> Vertices;
472
473 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
474 };
475
476
477 enum class SHAPE_TYPE
478 {
479 OPENSHAPE,
480 OUTLINE,
481 SOLID,
482 HATCHED
483 };
484
485
486 struct SHAPE : PARSER
487 {
489 std::vector<VERTEX> Vertices;
490 std::vector<CUTOUT> Cutouts;
491 wxString HatchCodeID;
492
493 static bool IsShape( XNODE* aNode );
494 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
495
496 SHAPE_LINE_CHAIN OutlineAsChain( const std::function<VECTOR2I( const VECTOR2I& )>
497 aCadstarToKicadPointCallback,
498 double aAccuracy ) const;
499
500 SHAPE_POLY_SET ConvertToPolySet( const std::function<VECTOR2I( const VECTOR2I& )>
501 aCadstarToKicadPointCallback,
502 double aAccuracy ) const;
503 };
504
505
506 enum class UNITS
507 {
508 DESIGN,
509 THOU,
510 INCH,
512 MM,
514 METER
515 };
516
517
518 static UNITS ParseUnits( XNODE* aNode );
519
520
521 enum class ANGUNITS
522 {
523 DEGREES,
524 RADIANS
525 };
526
527
528 static ANGUNITS ParseAngunits( XNODE* aNode );
529
530
531 enum class GRID_TYPE
532 {
535 STEPGRID
536 };
537
538
539 struct GRID : PARSER
540 {
542 wxString Name;
543 long Param1;
545 long Param2;
547
548 static bool IsGrid( XNODE* aNode );
549 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
550 };
551
552
553 struct GRIDS : PARSER
554 {
564 std::vector<GRID> UserGrids;
565
566 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
567 };
568
569
571 {
580 bool AllowBarredText = false;
582
585
587 std::pair<POINT, POINT> DesignArea;
590
591 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
592 virtual void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
593 };
594
595
596
613 enum class ALIGNMENT
614 {
616 TOPLEFT,
617 TOPCENTER,
618 TOPRIGHT,
625 };
626
627
628 static ALIGNMENT ParseAlignment( XNODE* aNode );
629
638 enum class JUSTIFICATION
639 {
640 LEFT,
641 CENTER,
642 RIGHT
643 };
644
645
646 static JUSTIFICATION ParseJustification( XNODE* aNode );
647
656 enum class READABILITY
657 {
660 };
661
662
663 static READABILITY ParseReadability( XNODE* aNode );
664
665
666 enum class ATTROWNER
667 {
668 ALL_ITEMS,
669 AREA,
670 BOARD,
671 COMPONENT,
673 COPPER,
674 DOCSYMBOL,
675 FIGURE,
676 NET,
677 NETCLASS,
678 PART,
680 PIN,
681 SIGNALREF,
682 SYMBOL,
683 SYMDEF,
684 TEMPLATE,
686 };
687
688
689 enum class ATTRUSAGE
690 {
691 BOTH,
693 COMPONENT,
697 SYMBOL,
699 UNDEFINED
702 };
703
704
706 {
710 long OrientAngle = 0;
711 bool Mirror = false;
712 bool Fixed = false;
720
721 void ParseIdentifiers( XNODE* aNode, PARSER_CONTEXT* aContext );
722 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
723 virtual void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
724 };
725
726
732 {
734 {
735 long ID;
736 long Order;
737
738 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
739 };
740
741
743 {
744 long ID;
745 long Width;
746
747 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
748 };
749
751 wxString Name;
757 bool NoTransfer = false;
764 std::vector<COLUMNORDER> ColumnOrders;
765 std::vector<COLUMNWIDTH> ColumnWidths;
766 bool ColumnInvisible = false;
767
768 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
769 };
770
771
773 {
775 wxString Value;
776 bool ReadOnly = false;
777 bool HasLocation = false;
780
781 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
782 };
783
784
791 {
793 {
794 // The default alignment for TEXT_LOCATION (when "NO_ALIGNMENT" is selected) is
795 // Bottom left, matching CADSTAR's default behavior
797 }
799
800 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
801 };
802
803
805 {
807 wxString Name;
808 std::vector<ATTRIBUTE_VALUE> Attributes;
809
810 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
811 };
812
813
815 {
817 wxString Name;
818
819 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
820 };
821
822
824 {
825 std::map<LINECODE_ID, LINECODE> LineCodes;
826 std::map<HATCHCODE_ID, HATCHCODE> HatchCodes;
827 std::map<TEXTCODE_ID, TEXTCODE> TextCodes;
828 std::map<ROUTECODE_ID, ROUTECODE> RouteCodes;
829 std::map<ATTRIBUTE_ID, ATTRNAME> AttributeNames;
830 std::map<NETCLASS_ID, CADSTAR_NETCLASS> NetClasses;
831 std::map<SPACING_CLASS_ID, SPCCLASSNAME> SpacingClassNames;
832
833 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
834 };
835
844 enum class SWAP_RULE
845 {
846 NO_SWAP,
848 BOTH
849 };
850
851
852 static SWAP_RULE ParseSwapRule( XNODE* aNode );
853
854
856 {
858 wxString Name;
859 wxString FileName;
860 bool Mirror = false;
861 long OrientAngle = 0;
862
863 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
864 };
865
866
871 {
873 wxString ItemReference = wxEmptyString;
877
878 bool IsEmpty();
879 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
880 };
881
882
883 struct GROUP : PARSER
884 {
886 wxString Name;
887 bool Fixed = false;
888 bool Transfer = false;
889 GROUP_ID GroupID = wxEmptyString;
892
893 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
894 };
895
896
897 struct FIGURE : PARSER
898 {
902 SHAPE Shape; //< Uses the component's coordinate frame if within a component
903 //< definition, otherwise uses the design's coordinate frame.
904 GROUP_ID GroupID = wxEmptyString;
907 bool Fixed = false;
908 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
909
910 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
911 };
912
913
914 struct TEXT : PARSER
915 {
917 wxString Text; //TODO: Need to lex/parse to identify design fields and hyperlinks
921 long OrientAngle = 0;
922 bool Mirror = false;
923 bool Fixed = false;
932 GROUP_ID GroupID = wxEmptyString;
934
935 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
936 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext, bool aParseFields );
937 };
938
939
940 struct SYMDEF : PARSER
941 {
943 wxString ReferenceName;
945 wxString Alternate;
949 bool Stub = false;
957
958 std::map<FIGURE_ID, FIGURE> Figures;
959 std::map<TEXT_ID, TEXT> Texts;
960 std::map<ATTRIBUTE_ID, TEXT_LOCATION> TextLocations;
963 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
965
966 wxString BuildLibName() const;
967 void ParseIdentifiers( XNODE* aNode, PARSER_CONTEXT* aContext );
968 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
969 };
970
971
972 struct PART : PARSER
973 {
974 static CADSTAR_PIN_TYPE GetPinType( XNODE* aNode );
975
977 {
978 struct GATE : PARSER
979 {
981 wxString Name;
982 wxString Alternate;
983 long PinCount;
984
985 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
986 };
987
988
989 struct PIN : PARSER
990 {
992
993 wxString Identifier = wxEmptyString;
998 wxString Name = wxEmptyString;
1003 wxString Label = wxEmptyString;
1018 wxString Signal = wxEmptyString;
1022
1023 CADSTAR_PIN_TYPE Type = CADSTAR_PIN_TYPE::UNCOMMITTED;
1024
1030 CADSTAR_PIN_POSITION::TOP_RIGHT;
1033
1034 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1035 };
1036
1037
1039 {
1040 std::vector<PART_DEFINITION_PIN_ID> PinIDs;
1043
1044 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1045 };
1046
1047
1049 {
1050 std::vector<PART_DEFINITION_PIN_ID> PinIDs;
1052
1053 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1054 };
1055
1056
1058 {
1059 wxString GateName =
1060 wxEmptyString;
1063
1064 bool External = false;
1071
1072 std::vector<SWAP_GATE> SwapGates;
1077
1078 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1079 };
1080
1081 wxString Name;
1083 false;
1087
1095
1096 std::map<GATE_ID, GATE> GateSymbols;
1097 std::map<PART_DEFINITION_PIN_ID, PIN> Pins;
1098 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
1102 std::vector<PIN_EQUIVALENCE> PinEquivalences;
1103 std::vector<SWAP_GROUP> SwapGroups;
1104
1105 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1106 };
1107
1108
1110 {
1112 wxString Name = wxEmptyString;
1113 CADSTAR_PIN_TYPE Type = CADSTAR_PIN_TYPE::UNCOMMITTED;
1114 wxString Identifier = wxEmptyString;
1115
1116 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1117 };
1118
1119
1121 wxString Name;
1124 std::map<PART_PIN_ID, PART_PIN> PartPins;
1129
1130 bool HidePinNames = false;
1132
1133 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
1137
1138 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1139 };
1140
1141
1142 struct PARTS : PARSER
1143 {
1144 std::map<PART_ID, PART> PartDefinitions;
1145
1146 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1147 };
1148
1149
1150 struct NET : PARSER
1151 {
1153 {
1157 GROUP_ID GroupID = wxEmptyString;
1160 bool Fixed = false;
1161
1162 void ParseIdentifiers( XNODE* aNode, PARSER_CONTEXT* aContext );
1163 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
1164 virtual void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1165 };
1166
1167
1169 {
1173
1174 bool Fixed = false;
1175 bool Hidden = false;
1176 GROUP_ID GroupID = wxEmptyString;
1178
1179 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
1182 void ParseIdentifiers( XNODE* aNode, PARSER_CONTEXT* aContext );
1183 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
1184
1185 virtual ~CONNECTION() {}
1186 };
1187
1189 ROUTECODE_ID RouteCodeID = wxEmptyString;
1192 wxString Name = wxEmptyString;
1194 bool Highlight = false;
1195
1196 std::map<NETELEMENT_ID, JUNCTION> Junctions;
1197 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
1198
1200 wxEmptyString;
1203 wxEmptyString;
1205
1206 void ParseIdentifiers( XNODE* aNode, PARSER_CONTEXT* aContext );
1207 bool ParseSubNode( XNODE* aChildNode, PARSER_CONTEXT* aContext );
1208 };
1209
1210
1212 {
1214
1222
1223 GROUP_ID GroupID = wxEmptyString;
1225 long OrientAngle = 0;
1226 bool Mirror = false;
1227 bool Fixed = false;
1229
1234
1235 std::map<ATTRIBUTE_ID, ATTRIBUTE_VALUE> AttributeValues;
1236
1237 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1238 };
1239
1240
1242 {
1244 bool IsVisible = true;
1245
1246 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1247 };
1248
1249
1251 {
1254 bool IsVisible = true;
1255 bool IsPickable = true;
1256
1257 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1258 };
1259
1260
1262 {
1264 std::map<ATTRIBUTE_ID, ATTRCOL> AttributeColors;
1265
1266 bool IsVisible = true; // unclear what this represents - maybe all attributes are hidden?
1267
1268 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1269 };
1270
1271
1273 {
1275 bool IsVisible = true;
1276 bool IsPickable = true;
1277
1278 void Parse( XNODE* aNode, PARSER_CONTEXT* aContext ) override;
1279 };
1280
1282 // HELPER FUNCTIONS: //
1284
1285
1286 static void InsertAttributeAtEnd( XNODE* aNode, wxString aValue );
1287
1300 static XNODE* LoadArchiveFile( const wxString& aFileName, const wxString& aFileTypeIdentifier,
1301 PROGRESS_REPORTER* aProgressReporter = nullptr );
1302
1307 static bool IsValidAttribute( wxXmlAttribute* aAttribute );
1308
1316 static wxString GetXmlAttributeIDString( XNODE* aNode, unsigned int aID,
1317 bool aIsRequired = true );
1318
1326 static long GetXmlAttributeIDLong( XNODE* aNode, unsigned int aID, bool aIsRequired = true );
1327
1332 static void CheckNoChildNodes( XNODE* aNode );
1333
1338 static void CheckNoNextNodes( XNODE* aNode );
1339
1345 static void ParseChildEValue( XNODE* aNode, PARSER_CONTEXT* aContext, EVALUE& aValueToParse );
1346
1360 static std::vector<POINT> ParseAllChildPoints( XNODE* aNode, PARSER_CONTEXT* aContext,
1361 bool aTestAllChildNodes = false,
1362 int aExpectedNumPoints = UNDEFINED_VALUE );
1363
1375 static std::vector<VERTEX> ParseAllChildVertices( XNODE* aNode, PARSER_CONTEXT* aContext,
1376 bool aTestAllChildNodes = false );
1377
1389 static std::vector<CUTOUT> ParseAllChildCutouts( XNODE* aNode, PARSER_CONTEXT* aContext,
1390 bool aTestAllChildNodes = false );
1391
1392 static long GetNumberOfChildNodes( XNODE* aNode );
1393
1394 static long GetNumberOfStepsForReporting( XNODE* aRootNode,
1395 std::vector<wxString> aSubNodeChildrenToCount );
1396
1397
1398 static wxString EscapeFieldText( const wxString& aFieldText )
1399 {
1400 wxString ret = aFieldText;
1401 ret.Replace( wxT( "\n" ), wxT( "\\n" ) );
1402 ret.Replace( wxT( "\r" ), wxT( "\\r" ) );
1403 ret.Replace( wxT( "\t" ), wxT( "\\t" ) );
1404
1405 return ret;
1406 }
1407
1414 static wxString HandleTextOverbar( wxString aCadstarString );
1415
1423 static void FixTextPositionNoAlignment( EDA_TEXT* aKiCadTextItem );
1424
1425 static wxString generateLibName( const wxString& aRefName, const wxString& aAlternateName );
1426
1427
1428protected:
1429 void checkPoint();
1430
1432 PROGRESS_REPORTER* m_progressReporter; // optional; may be nullptr
1433
1434
1435}; // class CADSTAR_ARCHIVE_PARSER
1436
1437#endif // CADSTAR_ARCHIVE_PARSER_H_
CADSTAR_PIN_POSITION
Positioning of pin names can be in one of four quadrants.
CADSTAR_PIN_TYPE
file: cadstar_archive_objects.h Contains common object definitions
Helper functions and common structures for CADSTAR PCB and Schematic archive files.
READABILITY
Sets the readability direction of text.
@ BOTTOM_TO_TOP
When text is vertical, show it rotated 90 degrees anticlockwise.
@ TOP_TO_BOTTOM
When text is vertical, show it rotated 90 degrees clockwise.
static wxString EscapeFieldText(const wxString &aFieldText)
@ STEPGRID
Param1 = X Step, Param2 = Y Step. A standard x,y grid.
@ FRACTIONALGRID
Param1 = Units, Param2 = Divisor.
SWAP_RULE
Corresponds to "Display when" Item property.
@ USE_SWAP_LAYER
Display when Mirrored.
@ BOTH
Always display (Mirrored and Unmirrored)
@ NO_SWAP
Display when Unmirrored.
static UNITS ParseUnits(XNODE *aNode)
static ALIGNMENT ParseAlignment(XNODE *aNode)
static const std::map< TEXT_FIELD_NAME, wxString > CADSTAR_TO_KICAD_FIELDS
Map between CADSTAR fields and KiCad text variables.
long TERMINAL_ID
Terminal is the pin identifier in the schematic.
TEXT_FIELD_NAME
These are special fields in text objects enclosed between the tokens '<@' and '>' such as <@[FIELD_NA...
static SWAP_RULE ParseSwapRule(XNODE *aNode)
ALIGNMENT
From CADSTAR Help: "Text Alignment enables you to define the position of an alignment origin for all ...
@ NO_ALIGNMENT
NO_ALIGNMENT has different meaning depending on the object type.
static const long UNDEFINED_VALUE
static wxString generateLibName(const wxString &aRefName, const wxString &aAlternateName)
static void CheckNoNextNodes(XNODE *aNode)
static std::vector< CUTOUT > ParseAllChildCutouts(XNODE *aNode, PARSER_CONTEXT *aContext, bool aTestAllChildNodes=false)
If no children are present, it just returns an empty vector (without throwing an exception).
static XNODE * LoadArchiveFile(const wxString &aFileName, const wxString &aFileTypeIdentifier, PROGRESS_REPORTER *aProgressReporter=nullptr)
Reads a CADSTAR Archive file (S-parameter format).
static JUSTIFICATION ParseJustification(XNODE *aNode)
static wxString ParseTextFields(const wxString &aTextString, PARSER_CONTEXT *aParserContext)
Replaces CADSTAR fields for the equivalent in KiCad and stores the field values in aParserContext.
@ UNDEFINED
Note: It seems that some attribute have no "ATTRUSAGE" defined.
@ BOTH
From CADSTAR Help: Assigned to both Schematic symbols and PCB components, and displayed on Schematic ...
@ PART_LIBRARY
From CADSTAR Help: Only used by non-Cadstar applications.
wxString LAYER_ID
ID of a Sheet (if schematic) or board Layer (if PCB)
static std::vector< VERTEX > ParseAllChildVertices(XNODE *aNode, PARSER_CONTEXT *aContext, bool aTestAllChildNodes=false)
If no children are present, it just returns an empty vector (without throwing an exception).
static void FixTextPositionNoAlignment(EDA_TEXT *aKiCadTextItem)
Correct the position of a text element that had NO_ALIGNMENT in CADSTAR.
static ANGUNITS ParseAngunits(XNODE *aNode)
long PART_DEFINITION_PIN_ID
Pin identifier in the part definition.
@ OUTLINE
Unfilled closed shape.
@ OPENSHAPE
Unfilled open shape. Cannot have cutouts.
@ HATCHED
Filled closed shape (hatch fill).
static const double TXT_HEIGHT_RATIO
CADSTAR fonts are drawn on a 24x24 integer matrix, where the each axis goes from 0 to 24.
static wxString GetXmlAttributeIDString(XNODE *aNode, unsigned int aID, bool aIsRequired=true)
void checkPoint()
Updates m_progressReporter or throws if user canceled.
static bool IsValidAttribute(wxXmlAttribute *aAttribute)
static READABILITY ParseReadability(XNODE *aNode)
static std::vector< POINT > ParseAllChildPoints(XNODE *aNode, PARSER_CONTEXT *aContext, bool aTestAllChildNodes=false, int aExpectedNumPoints=UNDEFINED_VALUE)
If no children are present, it just returns an empty vector (without throwing an exception).
@ DESIGN
Inherits from design units (assumed Assignments->Technology->Units)
static wxString HandleTextOverbar(wxString aCadstarString)
Convert a string with CADSTAR overbar characters to equivalent in KiCad.
static void CheckNoChildNodes(XNODE *aNode)
static long GetXmlAttributeIDLong(XNODE *aNode, unsigned int aID, bool aIsRequired=true)
JUSTIFICATION
From CADSTAR Help: "Multi Line Text can also be justified as Left, Centre or Right.
static void ParseChildEValue(XNODE *aNode, PARSER_CONTEXT *aContext, EVALUE &aValueToParse)
static long GetNumberOfStepsForReporting(XNODE *aRootNode, std::vector< wxString > aSubNodeChildrenToCount)
long PART_PIN_ID
Pin identifier in the part.
PROGRESS_REPORTER * m_progressReporter
static long GetNumberOfChildNodes(XNODE *aNode)
static void InsertAttributeAtEnd(XNODE *aNode, wxString aValue)
@ PART_DEFINITION
Only library Attributes.
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition: eda_text.h:80
A progress reporter interface for use in multi-threaded environments.
Represent a polyline containing arcs as well as line segments: A chain of connected line and/or arc s...
Represent a set of closed polygons.
Hold an XML or S-expression element.
Definition: xnode.h:43
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::map< ATTRIBUTE_ID, ATTRCOL > AttributeColors
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void ParseIdentifiers(XNODE *aNode, PARSER_CONTEXT *aContext)
virtual void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
JUSTIFICATION Justification
Note: Justification has no effect on single lines of text.
ALIGNMENT Alignment
In CADSTAR The default alignment for a TEXT object (when "(No Alignment()" is selected) Bottom Left o...
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
bool HasLocation
Flag to know if this ATTRIBUTE_VALUE has a location i.e.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
NOTE from CADSTAR help: To convert a Part Definition Attribute into a hyperlink, prefix the attribute...
std::vector< COLUMNWIDTH > ColumnWidths
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
bool NoTransfer
True="All Design Types", False="Current Design Type" "All Design Types" Description from CADSTAR Help...
std::vector< COLUMNORDER > ColumnOrders
wxString Name
Parenthesis aren't permitted in user attributes in CADSTAR.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::map< SPACING_CLASS_ID, SPCCLASSNAME > SpacingClassNames
std::map< LINECODE_ID, LINECODE > LineCodes
std::map< NETCLASS_ID, CADSTAR_NETCLASS > NetClasses
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
std::map< HATCHCODE_ID, HATCHCODE > HatchCodes
std::map< ATTRIBUTE_ID, ATTRNAME > AttributeNames
std::map< ROUTECODE_ID, ROUTECODE > RouteCodes
std::map< TEXTCODE_ID, TEXTCODE > TextCodes
Represent a cutout in a closed shape (e.g.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
long ScaleRatioNumerator
Documentation symbols can be arbitrarily scaled when added to a design.
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
long ScaleRatioDenominator
Documentation symbols can be arbitrarily scaled when added to a design.
POINT Origin
Origin of the component (this is used as the reference point when placing the component in the design...
GROUP_ID GroupID
If not empty, this component is part of a group.
LAYER_ID LayerID
Move all objects in the Symdef to this layer.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
SYMDEF_ID SymdefID
Normally documentation symbols only have TEXT, FIGURE and TEXT_LOCATION objects which are all drawn o...
Represent a floating value in E notation.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
GROUP_ID GroupID
If not empty, this FIGURE is part of a group.
SWAP_RULE SwapRule
Only applicable to Figures in Components.
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
long Modifier2
It seems this is always 0 regardless of settings.
bool KerningPairs
From CADSTAR Help: "Kerning Pairs is for causing the system to automatically reduce the spacin...
long Modifier1
It seems this is related to weight. 400=Normal, 700=Bold.
long Version
Archive version number (e.g.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
long SomeInt
It is unclear what this parameter is used for.
GRID ScreenGrid
From CADSTAR Help: "There is one Screen Grid, which is visible as dots on the screen.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::vector< GRID > UserGrids
List of predefined grids created by the user.
static bool IsGrid(XNODE *aNode)
long Param1
Either Units or X step, depending on Type (see GRID_TYPE for more details)
long Param2
Either Divisor or Y step, depending on Type (see GRID_TYPE for more details)
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
GROUP_ID GroupID
If not empty, this GROUP is part of another GROUP.
bool Transfer
If true, the group is transferred to PCB.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
It is possible to add attributes solely to a particular connection.
void ParseIdentifiers(XNODE *aNode, PARSER_CONTEXT *aContext)
GROUP_ID GroupID
If not empty, this connection is part of a group.
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
GROUP_ID GroupID
If not empty, this JUNCTION is part of a group.
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
virtual void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void ParseIdentifiers(XNODE *aNode, PARSER_CONTEXT *aContext)
NETELEMENT_ID ID
First character is "J".
ROUTECODE_ID RouteCodeID
"NETCODE" subnode
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
wxString Name
This is undefined (wxEmptyString) if the net is unnamed.
std::map< NETELEMENT_ID, JUNCTION > Junctions
void ParseIdentifiers(XNODE *aNode, PARSER_CONTEXT *aContext)
NETCLASS_ID NetClassID
The net might not have a net class, in which case it will be wxEmptyString ("NETCLASSREF" subnode)
SPACING_CLASS_ID SpacingClassID
The net might not have a spacing class, in which case it will be wxEmptyString ("SPACINGCLASS" subnod...
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
long SignalNum
This is undefined if the net has been given a name.
std::map< TEXT_FIELD_NAME, wxString > TextFieldToValuesMap
Values for the text field elements used in the CADSTAR design extracted from the text element instanc...
std::map< wxString, wxString > FilenamesToTextMap
CADSTAR doesn't have user defined text fields but does allow loading text from a file.
std::map< wxString, wxString > TextToHyperlinksMap
KiCad doesn't support hyperlinks but we use this map to display warning messages after import.
std::set< TEXT_FIELD_NAME > InconsistentTextFields
Text fields need to be updated in CADSTAR and it is possible that they are not consistent across text...
std::function< void()> CheckPointCallback
Callback function to report progress.
virtual void Parse(XNODE *aNode, PARSER_CONTEXT *aContext)=0
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::map< PART_ID, PART > PartDefinitions
long PinCount
Number of pins (terminals) in the symbol.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
wxString Alternate
Symbol alternate name in the symbol library.
wxString Name
Symbol name in the symbol library.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::vector< PART_DEFINITION_PIN_ID > PinIDs
All the pins in this vector are equivalent and can be swapped with each other.
wxString Label
This Can be empty (subnode= "PINLABEL") From CADSTAR Help: "Pin Labels are an optional replacement fo...
long Load
The electrical current expected on the pin (It is unclear what the units are, but only accepted value...
CADSTAR_PIN_POSITION Position
The pin names will use these positions when the symbol is added to a design subnode="PINPOSITION".
TERMINAL_ID TerminalPin
(subnode="PINTERM", param1)
wxString Identifier
This should match a pad identifier in the component footprint subnode="PINIDENTIFIER".
GATE_ID TerminalGate
(subnode="PINTERM", param0)
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
wxString Signal
Usually for Power/Ground pins, (subnode="PINSIGNAL")
< "SWAPGATE" Node name (represents an "Element")
std::vector< PART_DEFINITION_PIN_ID > PinIDs
The pins in this vector describe a "gate".
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::vector< SWAP_GATE > SwapGates
Each of the elements in this vector can be swapped with each other - i.e.
bool External
Determines if this swap group is external (and internal) or internal only.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
bool HidePinNames
Specifies whether to display the pin names/identifier in the schematic symbol or not.
std::vector< PIN_EQUIVALENCE > PinEquivalences
wxString Name
This name can be different to the PART name.
long MaxPinCount
Optional parameter which is used for specifying the number of electrical pins on the PCB component sy...
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
Some attributes are defined within the part definition, whilst others are defined in the part.
std::map< PART_DEFINITION_PIN_ID, PIN > Pins
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
static CADSTAR_PIN_TYPE GetPinType(XNODE *aNode)
std::map< PART_PIN_ID, PART_PIN > PartPins
It is unclear why there are two "Pin" structures in CPA files... PART_PIN seems to be a reduced versi...
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
Some attributes are defined within the part definition, whilst others are defined in the part itself.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
bool HidePinNames
This seems to be a duplicate of DEFINITION::HidePinNames Possibly only used in older file formats?
Represent a point in x,y coordinates.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
References an element from a design reuse block.
wxString ItemReference
For Components, this references the designator in the reuse file.
bool IsEmpty()
Determines if this is empty (i.e. no design reuse associated)
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
wxString FileName
Filename of the reuse block (usually a .pcb). Used for reloading.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::vector< ROUTEREASSIGN > RouteReassigns
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
UNITS Units
Units to display for linear dimensions.
long PinNoAngle
The angle at which the Pin ID is positioned relative to a terminal.
long InterlineGap
For CADSTAR font only, distance between lines of text, expressed as a percentage of the text height (...
long BarlineGap
For CADSTAR font only, distance between top bar and character, expressed as a percentage of the text ...
virtual void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
bool AllowBarredText
Specifies if barring is allowed in the design.
LONGPOINT DesignRef
Appears to be 0,0 always.
std::pair< POINT, POINT > DesignArea
long AngularPrecision
Number of decimal points to display for angular dimensions.
long UnitDisplPrecision
Number of decimal points to display for linear dimensions.
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
long PinNoOffset
The distance, of a Pin Name/Identifier from its parent terminal.
SHAPE_POLY_SET ConvertToPolySet(const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback, double aAccuracy) const
SHAPE_LINE_CHAIN OutlineAsChain(const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback, double aAccuracy) const
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
wxString HatchCodeID
Only Applicable for HATCHED Type.
std::vector< CUTOUT > Cutouts
Not Applicable to OPENSHAPE Type.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
std::map< FIGURE_ID, FIGURE > Figures
std::map< ATTRIBUTE_ID, TEXT_LOCATION > TextLocations
This contains location of any attributes, including designator position.
POINT Origin
Origin of the component (this is used as the reference point when placing the component in the design...
wxString Alternate
This is in addition to ReferenceName.
bool ParseSubNode(XNODE *aChildNode, PARSER_CONTEXT *aContext)
bool Stub
When the CADSTAR Archive file is exported without the component library, if components on the board a...
wxString ReferenceName
This is the name which identifies the symbol in the library Multiple components may exist with the sa...
void ParseIdentifiers(XNODE *aNode, PARSER_CONTEXT *aContext)
std::map< ATTRIBUTE_ID, ATTRIBUTE_VALUE > AttributeValues
These attributes might also have a location.
long Version
Version is a sequential integer number to identify discrepancies between the library and the design.
long Width
Defaults to 0 if using system fonts or, if using CADSTAR font, default to equal height (1:1 aspect ra...
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
Corresponds to CADSTAR "origin".
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
ALIGNMENT Alignment
In CADSTAR The default alignment for a TEXT object (when "(No Alignment()" is selected) Bottom Left o...
JUSTIFICATION Justification
Note: Justification has no effect on single lines of text.
GROUP_ID GroupID
If not empty, this FIGURE is part of a group.
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
virtual VECTOR2I Apply(POINT aCadstarPoint)=0
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
< Nodename = "VARIANT" or "VMASTER" (master variant
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
VARIANT_ID ParentID
if empty, then this one is the master
Represents a vertex in a shape.
VERTEX(VERTEX_TYPE aType=VERTEX_TYPE::POINT, POINT aEnd=POINT(), POINT aCenter=POINT())
SHAPE_ARC BuildArc(const VECTOR2I &aPrevPoint, const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback) const
void AppendToChain(SHAPE_LINE_CHAIN *aChainToAppendTo, const std::function< VECTOR2I(const VECTOR2I &)> aCadstarToKicadPointCallback, double aAccuracy) const
void Parse(XNODE *aNode, PARSER_CONTEXT *aContext) override
VECTOR2< int32_t > VECTOR2I
Definition: vector2d.h:695