KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_io_kicad_sexpr_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) 2012 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
29
30#ifndef _PCBNEW_PARSER_H_
31#define _PCBNEW_PARSER_H_
32
33#include <eda_units.h>
34#include <core/wx_stl_compat.h>
35#include <hashtables.h>
36#include <lib_id.h>
37#include <layer_ids.h> // PCB_LAYER_ID
38#include <lset.h>
39#include <pcb_lexer.h>
40#include <kiid.h>
41#include <math/box2.h>
42#include <string_any_map.h>
43#include <padstack.h>
44
45#include <chrono>
46#include <unordered_map>
47
48
49class PCB_ARC;
50class BOARD;
51class BOARD_ITEM;
52class ZONE_SETTINGS;
55class PAD;
58class PCB_SHAPE;
60class EDA_TEXT;
61class PCB_TEXT;
62class PCB_TRACK;
63class PCB_TABLE;
64class PCB_TABLECELL;
65class FOOTPRINT;
66class PCB_GROUP;
67class PCB_POINT;
68class PCB_TARGET;
69class PCB_VIA;
70class ZONE;
71class PCB_BARCODE;
72class FP_3DMODEL;
74struct LAYER;
77
78
83class PCB_IO_KICAD_SEXPR_PARSER : public PCB_LEXER
84{
85public:
86
87 typedef std::unordered_map< std::string, PCB_LAYER_ID > LAYER_ID_MAP;
88 typedef std::unordered_map< std::string, LSET > LSET_MAP;
89 typedef std::unordered_map< wxString, KIID > KIID_MAP;
90
92 std::function<bool( wxString, int, wxString, wxString )> aQueryUserCallback,
93 PROGRESS_REPORTER* aProgressReporter = nullptr, unsigned aLineCount = 0 ) :
94 PCB_LEXER( aReader ),
95 m_board( aAppendToMe ),
96 m_appendToExisting( aAppendToMe != nullptr ),
97 m_progressReporter( aProgressReporter ),
98 m_lastProgressTime( std::chrono::steady_clock::now() ),
99 m_lineCount( aLineCount ),
100 m_queryUserCallback( std::move( aQueryUserCallback ) )
101 {
102 init();
103 }
104
105 // ~PCB_IO_KICAD_SEXPR_PARSER() {}
106
107 BOARD_ITEM* Parse();
108
115 FOOTPRINT* parseFOOTPRINT( wxArrayString* aInitialComments = nullptr );
116
121 {
122 return m_tooRecent;
123 }
124
129 wxString GetRequiredVersion();
130
135 bool IsValidBoardHeader();
136
137private:
138
139 // Group membership info refers to other Uuids in the file.
140 // We don't want to rely on group declarations being last in the file, so
141 // we store info about the group declarations here during parsing and then resolve
142 // them into BOARD_ITEM* after we've parsed the rest of the file.
144 {
145 virtual ~GROUP_INFO() = default; // Make polymorphic
146
148 wxString name;
149 bool locked;
152 std::vector<KIID> memberUuids;
153 };
154
161
164 inline int getNetCode( int aNetCode )
165 {
166 if( ( aNetCode >= 0 ) && ( aNetCode < (int) m_netCodes.size() ) )
167 return m_netCodes[aNetCode];
168
169 return aNetCode;
170 }
171
180 void pushValueIntoMap( int aIndex, int aValue );
181
188 void init();
189
190 void checkpoint();
191
199 void createOldLayerMapping( std::unordered_map< std::string, std::string >& aMap );
200
205 void skipCurrent();
206
207 void parseHeader();
208 void parseGeneralSection();
209 void parsePAGE_INFO();
210 void parseTITLE_BLOCK();
211
212 void parseLayers();
213 void parseLayer( LAYER* aLayer );
214
215 void parseBoardStackup();
216
217 void parseSetup();
218 void parseDefaults( BOARD_DESIGN_SETTINGS& aSettings );
219 void parseDefaultTextDims( BOARD_DESIGN_SETTINGS& aSettings, int aLayer );
220 void parseNETINFO_ITEM();
221 void parseNETCLASS();
222
224
225 void parseTextBoxContent( PCB_TEXTBOX* aTextBox );
226
228 PCB_TEXT* parsePCB_TEXT( BOARD_ITEM* aParent, PCB_TEXT* aBaseText = nullptr );
229 void parsePCB_TEXT_effects( PCB_TEXT* aText, PCB_TEXT* aBaseText = nullptr );
236
237 // Parse a footprint, but do not replace PARSE_ERROR with FUTURE_FORMAT_ERROR automatically.
238 FOOTPRINT* parseFOOTPRINT_unchecked( wxArrayString* aInitialComments = nullptr );
239 void parseFootprintStackup( FOOTPRINT& aFootprint );
240
241 PAD* parsePAD( FOOTPRINT* aParent = nullptr );
242
243 // Parse only the (option ...) inside a pad description
244 bool parsePAD_option( PAD* aPad );
246
247 void parsePadstack( PAD* aPad );
248
249 PCB_ARC* parseARC();
252 void parseViastack( PCB_VIA* aVia );
256 BOARD* parseBOARD();
257 void parseGROUP_members( GROUP_INFO& aGroupInfo );
258 void parseGROUP( BOARD_ITEM* aParent );
259 void parseGENERATOR( BOARD_ITEM* aParent );
260
261 // Parse a board, but do not replace PARSE_ERROR with FUTURE_FORMAT_ERROR automatically.
263
273 LSET lookUpLayerSet( const LSET_MAP& aMap );
274
283
292
302
314
315 void parseXY( int* aX, int* aY );
316
317 void parseMargins( int& aLeft, int& aTop, int& aRight, int& aBottom );
318
319 void parseZoneDefaults( ZONE_SETTINGS& aZoneSettings );
320
321 void parseZoneLayerProperty( std::map<PCB_LAYER_ID, ZONE_LAYER_PROPERTIES>& aProperties );
322
323 std::pair<wxString, wxString> parseBoardProperty();
324
333
340 void parseEDA_TEXT( EDA_TEXT* aText );
341
349
351
359
360 int parseBoardUnits();
361
362 int parseBoardUnits( const char* aExpected, EDA_DATA_TYPE aDataType );
363
364 inline int parseBoardUnits( const PCB_KEYS_T::T aToken, const EDA_DATA_TYPE aDataType = EDA_DATA_TYPE::DISTANCE )
365 {
366 return parseBoardUnits( GetTokenText( aToken ), aDataType );
367 }
368
369 inline int parseInt()
370 {
371 return (int)strtol( CurText(), nullptr, 10 );
372 }
373
374 inline int parseInt( const char* aExpected )
375 {
376 NeedNUMBER( aExpected );
377 return parseInt();
378 }
379
380 inline long parseHex()
381 {
382 NextTok();
383 return strtol( CurText(), nullptr, 16 );
384 }
385
386 bool parseBool();
387
388 std::optional<bool> parseOptBool();
389
400 bool parseMaybeAbsentBool( bool aDefaultValue );
401
402 std::pair<std::optional<bool>, std::optional<bool>> parseFrontBackOptBool( bool aAllowLegacyFormat = false );
403
404 void parseNet( BOARD_CONNECTED_ITEM* aItem );
405
406 /*
407 * @return if m_appendToExisting, returns new KIID(), otherwise returns CurStr() as KIID.
408 */
410
415 void resolveGroups( BOARD_ITEM* aParent );
416
418 using TIMEOUT = std::chrono::milliseconds;
419
421 using CLOCK = std::chrono::steady_clock;
422
424 using TIME_PT = std::chrono::time_point<CLOCK>;
425
429 std::set<wxString> m_undefinedLayers;
430 std::vector<int> m_netCodes;
435
438
441
444 unsigned m_lineCount;
445
446 std::vector<GROUP_INFO> m_groupInfos;
447 std::vector<GENERATOR_INFO> m_generatorInfos;
448
449 std::function<bool( wxString aTitle, int aIcon, wxString aMsg, wxString aAction )> m_queryUserCallback;
450};
451
452
453#endif // _PCBNEW_PARSER_H_
A base class derived from BOARD_ITEM for items that can be connected and have a net,...
Container for design settings for a BOARD object.
Abstract interface for BOARD_ITEMs capable of storing other items inside.
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:83
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition eda_text.h:80
Definition kiid.h:49
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:49
An abstract class from which implementation specific LINE_READERs may be derived to read single lines...
Definition richio.h:66
LSET is a set of PCB_LAYER_IDs.
Definition lset.h:37
Definition pad.h:55
Abstract dimension API.
A set of BOARD_ITEMs (i.e., without duplicates).
Definition pcb_group.h:53
wxString m_generatorVersion
Set to the generator version this board requires.
PCB_TABLECELL * parsePCB_TABLECELL(BOARD_ITEM *aParent)
std::unordered_map< std::string, PCB_LAYER_ID > LAYER_ID_MAP
std::vector< int > m_netCodes
net codes mapping for boards being loaded
void parseOutlinePoints(SHAPE_LINE_CHAIN &aPoly)
Parses possible outline points and stores them into aPoly.
std::set< wxString > m_undefinedLayers
set of layers not defined in layers section
void parseZoneLayerProperty(std::map< PCB_LAYER_ID, ZONE_LAYER_PROPERTIES > &aProperties)
PROGRESS_REPORTER * m_progressReporter
optional; may be nullptr
void parseFootprintStackup(FOOTPRINT &aFootprint)
void createOldLayerMapping(std::unordered_map< std::string, std::string > &aMap)
Create a mapping from the (short-lived) bug where layer names were translated.
void parseZoneDefaults(ZONE_SETTINGS &aZoneSettings)
std::unordered_map< std::string, LSET > LSET_MAP
void parseEDA_TEXT(EDA_TEXT *aText)
Parse the common settings for any object derived from EDA_TEXT.
int parseInt(const char *aExpected)
bool m_tooRecent
true if version parses as later than supported
PCB_LAYER_ID lookUpLayer(const LAYER_ID_MAP &aMap)
Parse the current token for the layer definition of a BOARD_ITEM object.
PCB_REFERENCE_IMAGE * parsePCB_REFERENCE_IMAGE(BOARD_ITEM *aParent)
LAYER_ID_MAP m_layerIndices
map layer name to it's index
void parsePostMachining(PADSTACK::POST_MACHINING_PROPS &aProps)
void parseTextBoxContent(PCB_TEXTBOX *aTextBox)
FOOTPRINT * parseFOOTPRINT(wxArrayString *aInitialComments=nullptr)
void pushValueIntoMap(int aIndex, int aValue)
Add aValue value in netcode mapping (m_netCodes) at aIndex.
std::chrono::steady_clock CLOCK
The type of the time stamps.
void init()
Clear and re-establish m_layerMap with the default layer names.
std::pair< std::optional< bool >, std::optional< bool > > parseFrontBackOptBool(bool aAllowLegacyFormat=false)
void skipCurrent()
Skip the current token level, i.e search for the RIGHT parenthesis which closes the current descripti...
void parseMargins(int &aLeft, int &aTop, int &aRight, int &aBottom)
PCB_LAYER_ID parseBoardItemLayer()
Parse the layer definition of a BOARD_ITEM object.
LSET parseLayersForCuItemWithSoldermask()
Parse the layers definition of a BOARD_ITEM object that has a single copper layer and optional solder...
void parseGENERATOR(BOARD_ITEM *aParent)
std::chrono::milliseconds TIMEOUT
The clock used for the timestamp (guaranteed to be monotonic).
LSET parseBoardItemLayersAsMask()
Parse the layers definition of a BOARD_ITEM object.
void resolveGroups(BOARD_ITEM *aParent)
Called after parsing a footprint definition or board to build the group membership lists.
void parseDefaultTextDims(BOARD_DESIGN_SETTINGS &aSettings, int aLayer)
std::vector< GROUP_INFO > m_groupInfos
ZONE * parseZONE(BOARD_ITEM_CONTAINER *aParent)
PCB_TABLE * parsePCB_TABLE(BOARD_ITEM *aParent)
std::vector< GENERATOR_INFO > m_generatorInfos
PCB_TEXTBOX * parsePCB_TEXTBOX(BOARD_ITEM *aParent)
std::chrono::time_point< CLOCK > TIME_PT
PCB_TEXT * parsePCB_TEXT(BOARD_ITEM *aParent, PCB_TEXT *aBaseText=nullptr)
unsigned m_lineCount
for progress reporting
VECTOR2I parseXY()
Parse a coordinate pair (xy X Y) in board units (mm).
void parseTEARDROP_PARAMETERS(TEARDROP_PARAMETERS *tdParams)
int m_requiredVersion
set to the KiCad format version this board requires
PAD * parsePAD(FOOTPRINT *aParent=nullptr)
std::function< bool(wxString aTitle, int aIcon, wxString aMsg, wxString aAction)> m_queryUserCallback
void parseNet(BOARD_CONNECTED_ITEM *aItem)
FOOTPRINT * parseFOOTPRINT_unchecked(wxArrayString *aInitialComments=nullptr)
void parseRenderCache(EDA_TEXT *text)
Parse the render cache for any object derived from EDA_TEXT.
int parseBoardUnits(const PCB_KEYS_T::T aToken, const EDA_DATA_TYPE aDataType=EDA_DATA_TYPE::DISTANCE)
TIME_PT m_lastProgressTime
for progress reporting
void parseGROUP_members(GROUP_INFO &aGroupInfo)
bool IsTooRecent()
Return whether a version number, if any was parsed, was too recent.
bool IsValidBoardHeader()
Partially parse the input and check if it matches expected header.
std::pair< wxString, wxString > parseBoardProperty()
LSET_MAP m_layerMasks
map layer names to their masks
bool parseMaybeAbsentBool(bool aDefaultValue)
Parses a boolean flag inside a list that existed before boolean normalization.
int parseBoardUnits()
Parse the current token as an ASCII numeric string with possible leading whitespace into a double pre...
std::unordered_map< wxString, KIID > KIID_MAP
PCB_DIMENSION_BASE * parseDIMENSION(BOARD_ITEM *aParent)
LSET lookUpLayerSet(const LSET_MAP &aMap)
PCB_IO_KICAD_SEXPR_PARSER(LINE_READER *aReader, BOARD *aAppendToMe, std::function< bool(wxString, int, wxString, wxString)> aQueryUserCallback, PROGRESS_REPORTER *aProgressReporter=nullptr, unsigned aLineCount=0)
bool m_appendToExisting
reading into an existing board; reset UUIDs
void parsePCB_TEXT_effects(PCB_TEXT *aText, PCB_TEXT *aBaseText=nullptr)
PCB_SHAPE * parsePCB_SHAPE(BOARD_ITEM *aParent)
void parseDefaults(BOARD_DESIGN_SETTINGS &aSettings)
wxString GetRequiredVersion()
Return a string representing the version of KiCad required to open this file.
PCB_BARCODE * parsePCB_BARCODE(BOARD_ITEM *aParent)
A PCB_POINT is a 0-dimensional point that is used to mark a position on a PCB, or more usually a foot...
Definition pcb_point.h:43
Object to handle a bitmap image that can be inserted in a PCB.
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...
A name/value tuple with unique names and wxAny values.
TEARDROP_PARAMETARS is a helper class to handle parameters needed to build teardrops for a board thes...
ZONE_SETTINGS handles zones parameters.
Handle a list of polygons defining a copper zone.
Definition zone.h:74
#define LAYER(n, l)
EDA_DATA_TYPE
The type of unit.
Definition eda_units.h:38
PCB_LAYER_ID
A quick note on layer IDs:
Definition layer_ids.h:60
STL namespace.
Convert net code using the mapping table if available, otherwise returns unchanged net code if < 0 or...
VECTOR2< int32_t > VECTOR2I
Definition vector2d.h:695