42#include <compoundfilereader.h>
46 PCB_IO( wxS(
"Altium Designer" ) )
60 const std::vector<INPUT_LAYER_DESC>& aInputLayerDescriptionVector )
62 std::map<wxString, PCB_LAYER_ID> retval;
67 retval.insert( { layerDesc.Name, layerDesc.AutoMapLayer } );
100 const std::map<std::string, UTF8>* aProperties,
PROJECT* aProject )
114 const std::map<ALTIUM_PCB_DIR, std::string> mapping = {
115 { ALTIUM_PCB_DIR::FILE_HEADER,
"FileHeader" },
116 { ALTIUM_PCB_DIR::ARCS6,
"Arcs6" },
117 { ALTIUM_PCB_DIR::BOARD6,
"Board6" },
118 { ALTIUM_PCB_DIR::BOARDREGIONS,
"BoardRegions" },
119 { ALTIUM_PCB_DIR::CLASSES6,
"Classes6" },
120 { ALTIUM_PCB_DIR::COMPONENTS6,
"Components6" },
121 { ALTIUM_PCB_DIR::COMPONENTBODIES6,
"ComponentBodies6" },
122 { ALTIUM_PCB_DIR::DIMENSIONS6,
"Dimensions6" },
123 { ALTIUM_PCB_DIR::EXTENDPRIMITIVEINFORMATION,
"ExtendedPrimitiveInformation" },
124 { ALTIUM_PCB_DIR::FILLS6,
"Fills6" },
125 { ALTIUM_PCB_DIR::MODELS,
"Models" },
126 { ALTIUM_PCB_DIR::NETS6,
"Nets6" },
127 { ALTIUM_PCB_DIR::PADS6,
"Pads6" },
128 { ALTIUM_PCB_DIR::POLYGONS6,
"Polygons6" },
129 { ALTIUM_PCB_DIR::REGIONS6,
"Regions6" },
130 { ALTIUM_PCB_DIR::RULES6,
"Rules6" },
131 { ALTIUM_PCB_DIR::SHAPEBASEDREGIONS6,
"ShapeBasedRegions6" },
132 { ALTIUM_PCB_DIR::TEXTS6,
"Texts6" },
133 { ALTIUM_PCB_DIR::TRACKS6,
"Tracks6" },
134 { ALTIUM_PCB_DIR::VIAS6,
"Vias6" },
135 { ALTIUM_PCB_DIR::WIDESTRINGS6,
"WideStrings6" }
145 pcb.
Parse( altiumPcbFile, mapping );
147 catch( CFB::CFBException& exception )
159 if( aLibraryPath.IsEmpty() )
164 wxFileName fn( aLibraryPath );
166 if( fn.IsFileReadable() && fn.GetModificationTime().IsValid() )
168 return fn.GetModificationTime().GetValue().GetValue();
188 if( aLibraryPath.Lower().EndsWith( wxS(
".pcblib" ) ) )
191 std::make_unique<ALTIUM_PCB_COMPOUND_FILE>( aLibraryPath ) );
193 else if( aLibraryPath.Lower().EndsWith( wxS(
".intlib" ) ) )
195 std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE> intCom =
196 std::make_unique<ALTIUM_PCB_COMPOUND_FILE>( aLibraryPath );
198 std::map<wxString, const CFB::COMPOUND_FILE_ENTRY*> pcbLibFiles =
199 intCom->EnumDir( L
"PCBLib" );
200 for(
const auto& [pcbLibName, pcbCfe] : pcbLibFiles )
202 auto decodedStream = intCom->DecodeIntLibStream( *pcbCfe );
204 std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE>(
211 catch( CFB::CFBException& exception )
219 const wxString& aLibraryPath,
bool aBestEfforts,
220 const std::map<std::string, UTF8>* aProperties )
231 for(
auto& altiumLibFile : it->second )
234 std::map<wxString, wxString> patternMap = altiumLibFile->ListLibFootprints();
236 const std::vector<std::string> streamName = {
"Library",
"Data" };
237 const CFB::COMPOUND_FILE_ENTRY* libraryData = altiumLibFile->FindStream( streamName );
239 if( libraryData ==
nullptr )
247 std::map<wxString, wxString> properties = parser.
ReadProperties();
249 uint32_t numberOfFootprints = parser.
Read<uint32_t>();
258 bool footprintListNotTruncated =
true;
260 if ( patternMap.size() < numberOfFootprints )
262 numberOfFootprints = patternMap.size();
263 footprintListNotTruncated =
false;
266 aFootprintNames.Alloc( numberOfFootprints );
268 for(
size_t i = 0; i < numberOfFootprints; i++ )
273 wxString fpPattern( charBuffer, wxConvISO8859_1 );
275 auto it = patternMap.find( fpPattern );
277 if( it != patternMap.end() )
279 aFootprintNames.Add( it->second );
284 wxString::Format(
"Component name not found: '%s'", fpPattern ) );
292 THROW_IO_ERROR( wxString::Format(
"%s stream was not parsed correctly",
298 THROW_IO_ERROR( wxString::Format(
"%s stream is not fully parsed",
303 catch( CFB::CFBException& exception )
311 const wxString& aFootprintName,
bool aKeepUUID,
312 const std::map<std::string, UTF8>* aProperties )
319 THROW_IO_ERROR( wxString::Format(
_(
"No footprints in library '%s'" ), aLibraryPath ) );
323 for( std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE>& altiumLibFile : it->second )
325 altiumLibFile->CacheLibModels();
326 auto [dirName, fpCfe] = altiumLibFile->FindLibFootprintDirName( aFootprintName );
328 if( dirName.IsEmpty() )
336 catch( CFB::CFBException& exception )
341 THROW_IO_ERROR( wxString::Format(
_(
"Footprint '%s' not found in '%s'." ),
std::string FormatPath(const std::vector< std::string > &aVectorPath)
Helper for debug logging (vector -> string)
size_t GetRemainingBytes() const
wxScopedCharBuffer ReadCharBuffer()
size_t ReadAndSetSubrecordLength()
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.
void SetFileName(const wxString &aFileName)
REPORTER * m_reporter
Reporter to log errors/warnings to, may be nullptr.
PROGRESS_REPORTER * m_progressReporter
Progress reporter to track the progress of the operation, may be nullptr.
virtual bool CanReadLibrary(const wxString &aFileName) const
Checks if this IO object can read the specified library file/directory.
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.
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::map< wxString, std::vector< std::unique_ptr< ALTIUM_PCB_COMPOUND_FILE > > > m_fplibFiles
~PCB_IO_ALTIUM_DESIGNER()
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.
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.
A base class that BOARD loading and saving plugins should derive from.
BOARD * m_board
The board BOARD being worked on, no ownership here.
virtual bool CanReadBoard(const wxString &aFileName) const
Checks if this PCB_IO can read the specified board file.
const std::map< std::string, UTF8 > * m_props
Properties passed via Save() or Load(), no ownership, may be NULL.
Container for project specific data.
static REPORTER & GetInstance()
static void SetReporter(REPORTER *aReporter)
Set the reporter to use for reporting font substitution warnings.
#define THROW_IO_ERROR(msg)
bool fileStartsWithBinaryHeader(const wxString &aFilePath, const std::vector< uint8_t > &aHeader)
Check if a file starts with a defined binary header.
const std::vector< uint8_t > COMPOUND_FILE_HEADER