KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
sch_io_altium.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 Thomas Pointhuber <thomas.pointhuber@gmx.at>
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
25#ifndef _SCH_IO_ALTIUM_H_
26#define _SCH_IO_ALTIUM_H_
27
28#include <memory>
29#include <sch_sheet_path.h>
30#include <vector>
31#include <sch_io/sch_io.h>
32#include <sch_io/sch_io_mgr.h>
33#include <wx/filename.h>
34#include <wx/gdicmn.h>
36
37#include "altium_parser_sch.h"
38
39class SYMBOL;
40class SCH_SYMBOL;
41class SCH_SHEET;
42class TITLE_BLOCK;
43
45
53static std::vector<LIB_SYMBOL*> nullsym;
54static std::vector<int> nullint;
55
56struct HARNESS
57{
59 {
64 wxString m_name;
65 };
66
67 wxString m_name;
70 std::vector<HARNESS_PORT> m_ports;
72};
73
74
75class SCH_IO_ALTIUM : public SCH_IO
76{
77public:
80
82 {
83 return IO_BASE::IO_FILE_DESC( _HKI( "Altium schematic files" ), { "SchDoc" } );
84 }
85
87 {
88 return IO_BASE::IO_FILE_DESC( _HKI( "Altium Schematic Library or Integrated Library" ),
89 { "SchLib", "IntLib" } );
90 }
91
92 bool CanReadSchematicFile( const wxString& aFileName ) const override;
93 bool CanReadLibrary( const wxString& aFileName ) const override;
94
95 int GetModifyHash() const override;
96
97 SCH_SHEET* LoadSchematicFile( const wxString& aFileName, SCHEMATIC* aSchematic,
98 SCH_SHEET* aAppendToMe = nullptr,
99 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
100
102 const std::map<std::string, UTF8>* aProperties );
103
104 // unimplemented functions. Will trigger a not_implemented IO error.
105 //void SaveLibrary( const wxString& aFileName, const PROPERTIES* aProperties = NULL ) override;
106
107 //void Save( const wxString& aFileName, SCH_SCREEN* aSchematic, KIWAY* aKiway,
108 // const PROPERTIES* aProperties = NULL ) override;
109
110
111 void EnumerateSymbolLib( wxArrayString& aSymbolNameList,
112 const wxString& aLibraryPath,
113 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
114
115 void EnumerateSymbolLib( std::vector<LIB_SYMBOL*>& aSymbolList,
116 const wxString& aLibraryPath,
117 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
118
119 LIB_SYMBOL* LoadSymbol( const wxString& aLibraryPath,
120 const wxString& aAliasName,
121 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
122
123 //void SaveSymbol( const wxString& aLibraryPath, const LIB_SYMBOL* aSymbol,
124 // const PROPERTIES* aProperties = NULL ) override;
125
126 //void DeleteAlias( const wxString& aLibraryPath, const wxString& aAliasName,
127 // const PROPERTIES* aProperties = NULL ) override;
128
129 //void DeleteSymbol( const wxString& aLibraryPath, const wxString& aAliasName,
130 // const PROPERTIES* aProperties = NULL ) override;
131
132 bool IsLibraryWritable( const wxString& aLibraryPath ) override { return false; }
133
134 wxString getLibName();
135 wxFileName getLibFileName();
136
137 void ParseAltiumSch( const wxString& aFileName );
138 void ParseStorage( const ALTIUM_COMPOUND_FILE& aAltiumSchFile );
139 void ParseAdditional( const ALTIUM_COMPOUND_FILE& aAltiumSchFile );
140 void ParseFileHeader( const ALTIUM_COMPOUND_FILE& aAltiumSchFile );
141
142 void ParseASCIISchematic( const wxString& aFileName );
143
144 void ParseRecord( int index, std::map<wxString, wxString>& properties,
145 const wxString& aSectionName );
146
147private:
150
151 bool ShouldPutItemOnSheet( int aOwnerindex );
152 bool IsComponentPartVisible( const ASCH_OWNER_INTERFACE& aElem ) const;
153 const ASCH_STORAGE_FILE* GetFileFromStorage( const wxString& aFilename ) const;
154 void CreateAliases();
155 void AddTextBox( const ASCH_TEXT_FRAME* aElem );
156 void AddLibTextBox( const ASCH_TEXT_FRAME* aElem, std::vector<LIB_SYMBOL*>& aSymbol = nullsym, std::vector<int>& aFontSize = nullint );
157
158 void ParseComponent( int aIndex, const std::map<wxString, wxString>& aProperties );
159 void ParseTemplate( int aIndex, const std::map<wxString, wxString>& aProperties );
160 void ParsePin( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
161 void ParseLabel( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym, std::vector<int>& aFontSize = nullint );
162 void ParseTextFrame( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym, std::vector<int>& aFontSize = nullint );
163 void ParseNote( const std::map<wxString, wxString>& aProperties );
164 void ParseBezier( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
165 void ParsePolyline( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
166 void ParsePolygon( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
167 void ParseRoundRectangle( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
168 void ParseArc( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
169 void ParseEllipticalArc( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
170 void ParseEllipse( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
171 void ParseCircle( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
172 void ParseLine( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
173 void ParseSignalHarness( const std::map<wxString, wxString>& aProperties );
174 void ParseHarnessConnector( int aIndex, const std::map<wxString, wxString>& aProperties );
175 void ParseHarnessEntry( const std::map<wxString, wxString>& aProperties );
176 void ParseHarnessType( const std::map<wxString, wxString>& aProperties );
177 void ParseHarnessPort( const ASCH_PORT& aElem );
178 void ParseHyperlink( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
179 void ParsePieChart( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
180 void ParseRectangle( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym);
181 void ParseSheetSymbol( int aIndex, const std::map<wxString, wxString>& aProperties );
182 void ParseSheetEntry( const std::map<wxString, wxString>& aProperties );
183 void ParsePowerPort( const std::map<wxString, wxString>& aProperties );
184 void ParsePort( const ASCH_PORT& aElem );
185 void ParsePortHelper( const ASCH_PORT& aElem );
186 void ParseNoERC( const std::map<wxString, wxString>& aProperties );
187 void ParseNetLabel( const std::map<wxString, wxString>& aProperties );
188 void ParseBus( const std::map<wxString, wxString>& aProperties );
189 void ParseWire( const std::map<wxString, wxString>& aProperties );
190 void ParseJunction( const std::map<wxString, wxString>& aProperties );
191 void ParseImage( const std::map<wxString, wxString>& aProperties );
192 void ParseSheet( const std::map<wxString, wxString>& aProperties );
193 void ParseSheetName( const std::map<wxString, wxString>& aProperties );
194 void ParseFileName( const std::map<wxString, wxString>& aProperties );
195 void ParseDesignator( const std::map<wxString, wxString>& aProperties );
196 void ParseLibDesignator( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym, std::vector<int>& aFontSize = nullint );
197 void ParseBusEntry( const std::map<wxString, wxString>& aProperties );
198 void ParseParameter( const std::map<wxString, wxString>& aProperties );
199 void ParseLibParameter( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym, std::vector<int>& aFontSize = nullint );
200 void ParseImplementationList( int aIndex, const std::map<wxString, wxString>& aProperties );
201 void ParseImplementation( const std::map<wxString, wxString>& aProperties, std::vector<LIB_SYMBOL*>& aSymbol = nullsym );
202
203 void ParseLibHeader( const ALTIUM_COMPOUND_FILE& aAltiumSchFile, std::vector<int>& aFontSizes );
205 std::vector<LIB_SYMBOL*> ParseLibComponent( const std::map<wxString, wxString>& aProperties );
206
207 void doEnumerateSymbolLib( const wxString& aLibraryPath, const std::map<std::string, UTF8>* aProperties,
208 std::function<void(const wxString&, LIB_SYMBOL*)> aInserter );
209
210 void fixupSymbolPinNameNumbers( SYMBOL* aSymbol );
211
212private:
213 SCH_SHEET* m_rootSheet; // The root sheet of the schematic being loaded..
215 SCHEMATIC* m_schematic; // Passed to Load(), the schematic object being loaded
216 wxString m_libName; // Library name to save symbols
217 bool m_isIntLib; // Flag to indicate Integrated Library
218
219 IO_RELEASER<SCH_IO> m_pi; // Plugin to create KiCad symbol library.
220 std::unique_ptr<std::map<std::string, UTF8>> m_properties; // Library plugin properties.
221
222 std::unique_ptr<TITLE_BLOCK> m_currentTitleBlock; // Will be assigned at the end of parsing
223 // a sheet
224
226 std::unique_ptr<ASCH_SHEET> m_altiumSheet;
227 std::map<int, SCH_SYMBOL*> m_symbols;
228 std::map<int, SCH_SHEET*> m_sheets;
229 std::map<int, LIB_SYMBOL*> m_libSymbols; // every symbol has its unique lib_symbol
230
231 std::map<wxString, LIB_SYMBOL*> m_powerSymbols;
232 std::vector<ASCH_STORAGE_FILE> m_altiumStorage;
233 std::vector<ASCH_ADDITIONAL_FILE> m_altiumAdditional;
234
235 std::map<int, ASCH_SYMBOL> m_altiumComponents;
236 std::map<int, ASCH_TEMPLATE> m_altiumTemplates;
237 std::map<int, int> m_altiumImplementationList;
238 std::vector<ASCH_PORT> m_altiumPortsCurrentSheet; // we require all connections first
239
240 // parse harness ports after "FileHeader" was parsed, in 2nd run.
241 std::vector<ASCH_PORT> m_altiumHarnessPortsCurrentSheet;
242 std::map<int, HARNESS> m_altiumHarnesses;
243
244 // Add offset to all harness ownerIndex'es after parsing FileHeader.
246 int m_harnessEntryParent; // used to identify harness connector for harness entry element
247
248 // Symbol caching
249 void ensureLoadedLibrary( const wxString& aLibraryPath, const std::map<std::string, UTF8>* aProperties );
250 long long getLibraryTimestamp( const wxString& aLibraryPath ) const;
251
252 static bool isBinaryFile( const wxString& aFileName );
253 static bool isASCIIFile( const wxString& aFileName );
254 static bool checkFileHeader( const wxString& aFileName );
255
256 std::map<wxString, long long> m_timestamps;
257 std::map<wxString, CASE_INSENSITIVE_MAP<LIB_SYMBOL*>> m_libCache;
258
259 // List of available fonts with font name and font size in pt
260 std::vector<std::pair<wxString, int>> m_fonts;
261
262 // Cache the error messages to avoid duplicate messages
263 std::unordered_map<wxString, SEVERITY > m_errorMessages;
264};
265
266#endif // _SCH_IO_ALTIUM_H_
ASCH_SHEET_ENTRY_SIDE
std::map< wxString, ValueType, DETAIL::CASE_INSENSITIVE_COMPARER > CASE_INSENSITIVE_MAP
Define a library symbol object.
Definition: lib_symbol.h:85
Holds all the data relating to one schematic.
Definition: schematic.h:69
void ParseFileHeader(const ALTIUM_COMPOUND_FILE &aAltiumSchFile)
void ParseHyperlink(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void ParseSignalHarness(const std::map< wxString, wxString > &aProperties)
std::map< int, ASCH_TEMPLATE > m_altiumTemplates
std::map< int, ASCH_SYMBOL > m_altiumComponents
void ParsePort(const ASCH_PORT &aElem)
bool IsComponentPartVisible(const ASCH_OWNER_INTERFACE &aElem) const
void ParseNote(const std::map< wxString, wxString > &aProperties)
void ParseAltiumSch(const wxString &aFileName)
std::vector< ASCH_PORT > m_altiumPortsCurrentSheet
void ParseSheetName(const std::map< wxString, wxString > &aProperties)
void ParseBusEntry(const std::map< wxString, wxString > &aProperties)
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
Get the descriptor for the library container that this IO plugin operates on.
Definition: sch_io_altium.h:86
SCH_SHEET * getCurrentSheet()
void ParseStorage(const ALTIUM_COMPOUND_FILE &aAltiumSchFile)
std::map< wxString, LIB_SYMBOL * > m_powerSymbols
void ParseBus(const std::map< wxString, wxString > &aProperties)
void ParseFileName(const std::map< wxString, wxString > &aProperties)
static bool isASCIIFile(const wxString &aFileName)
wxString m_libName
LIB_SYMBOL * LoadSymbol(const wxString &aLibraryPath, const wxString &aAliasName, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a LIB_SYMBOL object having aPartName from the aLibraryPath containing a library format that this...
std::map< int, SCH_SHEET * > m_sheets
const IO_BASE::IO_FILE_DESC GetSchematicFileDesc() const override
Returns schematic file description for the SCH_IO.
Definition: sch_io_altium.h:81
void ParseLibHeader(const ALTIUM_COMPOUND_FILE &aAltiumSchFile, std::vector< int > &aFontSizes)
void ParseHarnessPort(const ASCH_PORT &aElem)
void ParseRoundRectangle(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
int GetModifyHash() const override
Return the modification hash from the library cache.
void ParseLibDesignator(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym, std::vector< int > &aFontSize=nullint)
std::map< wxString, CASE_INSENSITIVE_MAP< LIB_SYMBOL * > > m_libCache
std::map< int, int > m_altiumImplementationList
int m_harnessEntryParent
void ParseTextFrame(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym, std::vector< int > &aFontSize=nullint)
void ParsePolygon(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void fixupSymbolPinNameNumbers(SYMBOL *aSymbol)
VECTOR2I m_sheetOffset
void ParseRecord(int index, std::map< wxString, wxString > &properties, const wxString &aSectionName)
std::vector< ASCH_PORT > m_altiumHarnessPortsCurrentSheet
void ParseDesignator(const std::map< wxString, wxString > &aProperties)
int m_harnessOwnerIndexOffset
void ParsePortHelper(const ASCH_PORT &aElem)
static bool checkFileHeader(const wxString &aFileName)
long long getLibraryTimestamp(const wxString &aLibraryPath) const
void ParseSheetEntry(const std::map< wxString, wxString > &aProperties)
IO_RELEASER< SCH_IO > m_pi
SCH_SHEET * m_rootSheet
static bool isBinaryFile(const wxString &aFileName)
void ParseHarnessType(const std::map< wxString, wxString > &aProperties)
void ParseJunction(const std::map< wxString, wxString > &aProperties)
SCHEMATIC * m_schematic
void ParseLibParameter(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym, std::vector< int > &aFontSize=nullint)
void ParseASCIISchematic(const wxString &aFileName)
void ParsePolyline(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
std::unique_ptr< ASCH_SHEET > m_altiumSheet
void ParseComponent(int aIndex, const std::map< wxString, wxString > &aProperties)
std::unique_ptr< TITLE_BLOCK > m_currentTitleBlock
SCH_SHEET * LoadSchematicProject(SCHEMATIC *aSchematic, const std::map< std::string, UTF8 > *aProperties)
void ParseImage(const std::map< wxString, wxString > &aProperties)
void ParseArc(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void ParseNetLabel(const std::map< wxString, wxString > &aProperties)
void ParseNoERC(const std::map< wxString, wxString > &aProperties)
SCH_SHEET * LoadSchematicFile(const wxString &aFileName, SCHEMATIC *aSchematic, SCH_SHEET *aAppendToMe=nullptr, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load information from some input file format that this SCH_IO implementation knows about,...
std::unordered_map< wxString, SEVERITY > m_errorMessages
void ParseImplementationList(int aIndex, const std::map< wxString, wxString > &aProperties)
std::vector< LIB_SYMBOL * > ParseLibComponent(const std::map< wxString, wxString > &aProperties)
void ParseSheet(const std::map< wxString, wxString > &aProperties)
void ParseParameter(const std::map< wxString, wxString > &aProperties)
bool ShouldPutItemOnSheet(int aOwnerindex)
void AddLibTextBox(const ASCH_TEXT_FRAME *aElem, std::vector< LIB_SYMBOL * > &aSymbol=nullsym, std::vector< int > &aFontSize=nullint)
bool CanReadSchematicFile(const wxString &aFileName) const override
Checks if this SCH_IO can read the specified schematic file.
void ParsePieChart(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
std::unique_ptr< std::map< std::string, UTF8 > > m_properties
void ParseEllipticalArc(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
std::map< int, HARNESS > m_altiumHarnesses
void ParseEllipse(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void ParseWire(const std::map< wxString, wxString > &aProperties)
bool IsLibraryWritable(const wxString &aLibraryPath) override
Return true if the library at aLibraryPath is writable.
void ParseHarnessEntry(const std::map< wxString, wxString > &aProperties)
void EnumerateSymbolLib(wxArrayString &aSymbolNameList, const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Populate a list of LIB_SYMBOL alias names contained within the library aLibraryPath.
void ParseImplementation(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void ParseTemplate(int aIndex, const std::map< wxString, wxString > &aProperties)
void ParseAdditional(const ALTIUM_COMPOUND_FILE &aAltiumSchFile)
std::vector< ASCH_ADDITIONAL_FILE > m_altiumAdditional
void AddTextBox(const ASCH_TEXT_FRAME *aElem)
void ParsePowerPort(const std::map< wxString, wxString > &aProperties)
bool CanReadLibrary(const wxString &aFileName) const override
Checks if this IO object can read the specified library file/directory.
const ASCH_STORAGE_FILE * GetFileFromStorage(const wxString &aFilename) const
void ParseRectangle(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void doEnumerateSymbolLib(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties, std::function< void(const wxString &, LIB_SYMBOL *)> aInserter)
wxString getLibName()
std::vector< ASCH_STORAGE_FILE > m_altiumStorage
SCH_SHEET_PATH m_sheetPath
void ParseLabel(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym, std::vector< int > &aFontSize=nullint)
CASE_INSENSITIVE_MAP< LIB_SYMBOL * > ParseLibFile(const ALTIUM_COMPOUND_FILE &aAltiumSchFile)
void ParseBezier(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void ParseLine(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
void ParseCircle(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
std::map< int, SCH_SYMBOL * > m_symbols
void ParseSheetSymbol(int aIndex, const std::map< wxString, wxString > &aProperties)
std::vector< std::pair< wxString, int > > m_fonts
std::map< wxString, long long > m_timestamps
wxFileName getLibFileName()
SCH_SCREEN * getCurrentScreen()
void ParsePin(const std::map< wxString, wxString > &aProperties, std::vector< LIB_SYMBOL * > &aSymbol=nullsym)
std::map< int, LIB_SYMBOL * > m_libSymbols
void ParseHarnessConnector(int aIndex, const std::map< wxString, wxString > &aProperties)
void ensureLoadedLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties)
Base class that schematic file and library loading and saving plugins should derive from.
Definition: sch_io.h:57
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:47
Schematic symbol object.
Definition: sch_symbol.h:75
A base class for LIB_SYMBOL and SCH_SYMBOL.
Definition: symbol.h:63
Hold the information shown in the lower right corner of a plot, printout, or editing view.
Definition: title_block.h:41
#define _HKI(x)
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
Definition: io_mgr.h:33
static std::vector< int > nullint
Definition: sch_io_altium.h:54
static std::vector< LIB_SYMBOL * > nullsym
SCH_IO_ALTIUM is a SCH_IO derivation for loading Altium .SchDoc schematic files.
Definition: sch_io_altium.h:53
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.
ASCH_SHEET_ENTRY_SIDE m_harnessConnectorSide
Definition: sch_io_altium.h:62
VECTOR2I m_location
Definition: sch_io_altium.h:68
std::vector< HARNESS_PORT > m_ports
Definition: sch_io_altium.h:70
HARNESS_PORT m_entry
Definition: sch_io_altium.h:71
wxString m_name
Definition: sch_io_altium.h:67
VECTOR2I m_size
Definition: sch_io_altium.h:69
Container that describes file type info.
Definition: io_base.h:43