KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_io_altium_designer.cpp
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) 2019 Thomas Pointhuber <[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
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
28
29#include <wx/string.h>
30
31#include <font/fontconfig.h>
33#include <altium_pcb.h>
35#include <io/io_utils.h>
37#include <pcb_io/pcb_io.h>
38#include <reporter.h>
39
40#include <board.h>
41
42#include <compoundfilereader.h>
43#include <utf.h>
44
52
53
57
58
60 const std::vector<INPUT_LAYER_DESC>& aInputLayerDescriptionVector )
61{
62 std::map<wxString, PCB_LAYER_ID> retval;
63
64 // Just return a the auto-mapped layers
65 for( INPUT_LAYER_DESC layerDesc : aInputLayerDescriptionVector )
66 {
67 retval.insert( { layerDesc.Name, layerDesc.AutoMapLayer } );
68 }
69
70 return retval;
71}
72
73
74bool PCB_IO_ALTIUM_DESIGNER::checkFileHeader( const wxString& aFileName )
75{
76 // Compound File Binary Format header
78}
79
80
81bool PCB_IO_ALTIUM_DESIGNER::CanReadBoard( const wxString& aFileName ) const
82{
83 if( !PCB_IO::CanReadBoard( aFileName ) )
84 return false;
85
86 return checkFileHeader( aFileName );
87}
88
89
90bool PCB_IO_ALTIUM_DESIGNER::CanReadLibrary( const wxString& aFileName ) const
91{
92 if( !PCB_IO::CanReadLibrary( aFileName ) )
93 return false;
94
95 return checkFileHeader( aFileName );
96}
97
98
99BOARD* PCB_IO_ALTIUM_DESIGNER::LoadBoard( const wxString& aFileName, BOARD* aAppendToMe,
100 const std::map<std::string, UTF8>* aProperties, PROJECT* aProject )
101{
102
103 m_props = aProperties;
104
105 m_board = aAppendToMe ? aAppendToMe : new BOARD();
106
107 // Collect the font substitution warnings (RAII - automatically reset on scope exit)
109
110 // Give the filename to the board if it's new
111 if( !aAppendToMe )
112 m_board->SetFileName( aFileName );
113
114 // clang-format off
115 const std::map<ALTIUM_PCB_DIR, std::string> mapping = {
116 { ALTIUM_PCB_DIR::FILE_HEADER, "FileHeader" },
117 { ALTIUM_PCB_DIR::ARCS6, "Arcs6" },
118 { ALTIUM_PCB_DIR::BOARD6, "Board6" },
119 { ALTIUM_PCB_DIR::BOARDREGIONS, "BoardRegions" },
120 { ALTIUM_PCB_DIR::CLASSES6, "Classes6" },
121 { ALTIUM_PCB_DIR::COMPONENTS6, "Components6" },
122 { ALTIUM_PCB_DIR::COMPONENTBODIES6, "ComponentBodies6" },
123 { ALTIUM_PCB_DIR::DIMENSIONS6, "Dimensions6" },
124 { ALTIUM_PCB_DIR::EXTENDPRIMITIVEINFORMATION, "ExtendedPrimitiveInformation" },
125 { ALTIUM_PCB_DIR::FILLS6, "Fills6" },
126 { ALTIUM_PCB_DIR::MODELS, "Models" },
127 { ALTIUM_PCB_DIR::NETS6, "Nets6" },
128 { ALTIUM_PCB_DIR::PADS6, "Pads6" },
129 { ALTIUM_PCB_DIR::POLYGONS6, "Polygons6" },
130 { ALTIUM_PCB_DIR::REGIONS6, "Regions6" },
131 { ALTIUM_PCB_DIR::RULES6, "Rules6" },
132 { ALTIUM_PCB_DIR::SHAPEBASEDREGIONS6, "ShapeBasedRegions6" },
133 { ALTIUM_PCB_DIR::TEXTS6, "Texts6" },
134 { ALTIUM_PCB_DIR::TRACKS6, "Tracks6" },
135 { ALTIUM_PCB_DIR::VIAS6, "Vias6" },
136 { ALTIUM_PCB_DIR::WIDESTRINGS6, "WideStrings6" }
137 };
138 // clang-format on
139
140 ALTIUM_PCB_COMPOUND_FILE altiumPcbFile( aFileName );
141
142 try
143 {
144 // Parse File
146 pcb.Parse( altiumPcbFile, mapping );
147 }
148 catch( CFB::CFBException& exception )
149 {
150 THROW_IO_ERROR( exception.what() );
151 }
152
153 return m_board;
154}
155
156
157long long PCB_IO_ALTIUM_DESIGNER::GetLibraryTimestamp( const wxString& aLibraryPath ) const
158{
159 // File hasn't been loaded yet.
160 if( aLibraryPath.IsEmpty() )
161 return 0;
162
163 wxFileName fn( aLibraryPath );
164
165 if( fn.IsFileReadable() && fn.GetModificationTime().IsValid() )
166 return fn.GetModificationTime().GetValue().GetValue();
167 else
168 return 0;
169}
170
171
172void PCB_IO_ALTIUM_DESIGNER::loadAltiumLibrary( const wxString& aLibraryPath )
173{
174 // Suppress font substitution warnings (RAII - automatically restored on scope exit)
175 FONTCONFIG_REPORTER_SCOPE fontconfigScope( nullptr );
176
177 long long timestamp = GetLibraryTimestamp( aLibraryPath );
178
179 if( m_fplibFiles.contains( aLibraryPath ) && m_fplibFiles[aLibraryPath].m_Timestamp == timestamp )
180 return; // Already loaded
181
182 try
183 {
184 ALTIUM_FILE_CACHE& libFiles = m_fplibFiles[aLibraryPath];
185
186 if( aLibraryPath.Lower().EndsWith( wxS( ".pcblib" ) ) )
187 {
188 libFiles.m_Files.emplace_back( std::make_unique<ALTIUM_PCB_COMPOUND_FILE>( aLibraryPath ) );
189 }
190 else if( aLibraryPath.Lower().EndsWith( wxS( ".intlib" ) ) )
191 {
192 std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE> lib = std::make_unique<ALTIUM_PCB_COMPOUND_FILE>( aLibraryPath );
193
194 for( const auto& [pcbLibName, pcbCfe] : lib->EnumDir( L"PCBLib" ) )
195 {
196 std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE> libFile = std::make_unique<ALTIUM_PCB_COMPOUND_FILE>();
197
198 if( lib->DecodeIntLibStream( *pcbCfe, libFile.get() ) )
199 libFiles.m_Files.emplace_back( std::move( libFile ) );
200 }
201 }
202
203 libFiles.m_Timestamp = timestamp;
204 }
205 catch( CFB::CFBException& exception )
206 {
207 THROW_IO_ERROR( exception.what() );
208 }
209}
210
211
212void PCB_IO_ALTIUM_DESIGNER::FootprintEnumerate( wxArrayString& aFootprintNames,
213 const wxString& aLibraryPath, bool aBestEfforts,
214 const std::map<std::string, UTF8>* aProperties )
215{
216 loadAltiumLibrary( aLibraryPath );
217
218 if( !m_fplibFiles.contains( aLibraryPath ) )
219 return; // No footprint libraries in file, ignore.
220
221 try
222 {
223 for( std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE>& altiumLibFile : m_fplibFiles[aLibraryPath].m_Files )
224 {
225 // Map code-page-dependent names to unicode names
226 CASE_INSENSITIVE_MAP<wxString> patternMap = altiumLibFile->ListLibFootprints();
227
228 const std::vector<std::string> streamName = { "Library", "Data" };
229 const CFB::COMPOUND_FILE_ENTRY* libraryData = altiumLibFile->FindStream( streamName );
230
231 if( libraryData == nullptr )
232 {
233 THROW_IO_ERROR( wxString::Format( _( "File not found: '%s'." ),
234 FormatPath( streamName ) ) );
235 }
236
237 ALTIUM_BINARY_PARSER parser( *altiumLibFile, libraryData );
238
239 std::map<wxString, wxString> properties = parser.ReadProperties();
240
241 uint32_t numberOfFootprints = parser.Read<uint32_t>();
242
243 // The number of footprints might be bogus. Following it is a list of index strings to
244 // find the footprints, and this list might actually be longer than how many footprints
245 // actually are in the library.
246 // If this case was detected, truncate the list to the number of footprints.
247 // Sample in #18452 shows that by simply truncating can get the correct footprints.
248 // Fixes https://gitlab.com/kicad/code/kicad/issues/18452.
249 // After truncation we shall no longer detect if the stream is fully parsed.
250 bool footprintListNotTruncated = true;
251
252 if ( patternMap.size() < numberOfFootprints )
253 {
254 numberOfFootprints = patternMap.size();
255 footprintListNotTruncated = false;
256 }
257
258 aFootprintNames.Alloc( numberOfFootprints );
259
260 for( size_t i = 0; i < numberOfFootprints; i++ )
261 {
263
264 wxScopedCharBuffer charBuffer = parser.ReadCharBuffer();
265 wxString fpPattern( charBuffer, wxConvISO8859_1 );
266
267 auto it = patternMap.find( fpPattern );
268
269 if( it != patternMap.end() )
270 {
271 aFootprintNames.Add( it->second ); // Proper unicode name
272 }
273 else
274 {
275 THROW_IO_ERROR( wxString::Format( "Component name not found: '%s'", fpPattern ) );
276 }
277
278 parser.SkipSubrecord();
279 }
280
281 if( parser.HasParsingError() )
282 {
283 THROW_IO_ERROR( wxString::Format( "%s stream was not parsed correctly",
284 FormatPath( streamName ) ) );
285 }
286
287 if( footprintListNotTruncated && parser.GetRemainingBytes() != 0 )
288 {
289 THROW_IO_ERROR( wxString::Format( "%s stream is not fully parsed",
290 FormatPath( streamName ) ) );
291 }
292 }
293 }
294 catch( CFB::CFBException& exception )
295 {
296 THROW_IO_ERROR( exception.what() );
297 }
298}
299
300
302 const wxString& aFootprintName, bool aKeepUUID,
303 const std::map<std::string, UTF8>* aProperties )
304{
305 loadAltiumLibrary( aLibraryPath );
306
307 if( !m_fplibFiles.contains( aLibraryPath ) )
308 THROW_IO_ERROR( wxString::Format( _( "No footprints in library '%s'" ), aLibraryPath ) );
309
310 try
311 {
312 for( std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE>& altiumLibFile : m_fplibFiles[aLibraryPath].m_Files )
313 {
314 altiumLibFile->CacheLibModels();
315 auto [dirName, fpCfe] = altiumLibFile->FindLibFootprintDirName( aFootprintName );
316
317 if( dirName.IsEmpty() )
318 continue;
319
320 // Parse File
321 ALTIUM_PCB pcb( m_board, nullptr, m_layer_mapping_handler, m_reporter, aLibraryPath, aFootprintName );
322 return pcb.ParseFootprint( *altiumLibFile, aFootprintName );
323 }
324 }
325 catch( CFB::CFBException& exception )
326 {
327 THROW_IO_ERROR( exception.what() );
328 }
329
330 THROW_IO_ERROR( wxString::Format( _( "Footprint '%s' not found in '%s'." ),
331 aFootprintName,
332 aLibraryPath ) );
333}
334
335
337{
338 std::vector<FOOTPRINT*> footprints;
339
340 for( FOOTPRINT* fp : m_board->Footprints() )
341 footprints.push_back( fp );
342
343 return footprints;
344}
std::string FormatPath(const std::vector< std::string > &aVectorPath)
Helper for debug logging (vector -> string)
@ EXTENDPRIMITIVEINFORMATION
Definition altium_pcb.h:56
std::map< wxString, ValueType, DETAIL::CASE_INSENSITIVE_COMPARER > CASE_INSENSITIVE_MAP
wxScopedCharBuffer ReadCharBuffer()
std::map< wxString, wxString > ReadProperties(std::function< std::map< wxString, wxString >(const std::string &)> handleBinaryData=[](const std::string &) { return std::map< wxString, wxString >();})
FOOTPRINT * ParseFootprint(ALTIUM_PCB_COMPOUND_FILE &altiumLibFile, const wxString &aFootprintName)
void Parse(const ALTIUM_PCB_COMPOUND_FILE &aAltiumPcbFile, const std::map< ALTIUM_PCB_DIR, std::string > &aFileMapping)
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
RAII class to set and restore the fontconfig reporter.
Definition reporter.h:322
REPORTER * m_reporter
Reporter to log errors/warnings to, may be nullptr.
Definition io_base.h:237
PROGRESS_REPORTER * m_progressReporter
Progress reporter to track the progress of the operation, may be nullptr.
Definition io_base.h:240
virtual bool CanReadLibrary(const wxString &aFileName) const
Checks if this IO object can read the specified library file/directory.
Definition io_base.cpp:71
virtual void RegisterCallback(LAYER_MAPPING_HANDLER aLayerMappingHandler)
Register a different handler to be called when mapping of input layers to KiCad layers occurs.
LAYER_MAPPING_HANDLER m_layer_mapping_handler
Callback to get layer mapping.
static LOAD_INFO_REPORTER & GetInstance()
Definition reporter.cpp:218
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
FOOTPRINT * FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PC...
void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Return a list of footprint names contained within the library at aLibraryPath.
std::vector< FOOTPRINT * > GetImportedCachedLibraryFootprints() override
Return a container with the cached library footprints generated in the last call to Load.
static bool checkFileHeader(const wxString &aFileName)
PCB_IO_ALTIUM_DESIGNER()
Pcbnew PLUGIN for Altium *.PcbDoc format.
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
void loadAltiumLibrary(const wxString &aLibraryPath)
static std::map< wxString, PCB_LAYER_ID > DefaultLayerMappingCallback(const std::vector< INPUT_LAYER_DESC > &aInputLayerDescriptionVector)
Return the automapped layers.
std::map< wxString, ALTIUM_FILE_CACHE > m_fplibFiles
BOARD * LoadBoard(const wxString &aFileName, BOARD *aAppendToMe, const std::map< std::string, UTF8 > *aProperties, PROJECT *aProject=nullptr) override
Load information from some input file format that this PCB_IO implementation knows about into either ...
bool CanReadLibrary(const wxString &aFileName) const override
Checks if this IO object can read the specified library file/directory.
BOARD * m_board
The board BOARD being worked on, no ownership here.
Definition pcb_io.h:326
virtual bool CanReadBoard(const wxString &aFileName) const
Checks if this PCB_IO can read the specified board file.
Definition pcb_io.cpp:42
PCB_IO(const wxString &aName)
Definition pcb_io.h:319
const std::map< std::string, UTF8 > * m_props
Properties passed via Save() or Load(), no ownership, may be NULL.
Definition pcb_io.h:329
Container for project specific data.
Definition project.h:65
static REPORTER & GetInstance()
Definition reporter.cpp:191
#define _(s)
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
bool fileStartsWithBinaryHeader(const wxString &aFilePath, const std::vector< uint8_t > &aHeader)
Check if a file starts with a defined binary header.
Definition io_utils.cpp:59
const std::vector< uint8_t > COMPOUND_FILE_HEADER
Definition io_utils.cpp:31
Describes an imported layer and how it could be mapped to KiCad Layers.
std::vector< std::unique_ptr< ALTIUM_PCB_COMPOUND_FILE > > m_Files