37#include <wx/txtstrm.h>
38#include <wx/wfstream.h>
39#include <wx/mstream.h>
40#include <wx/zipstrm.h>
51 std::map<wxString, EASYEDAPRO::BLOB>
m_Blobs;
52 std::map<wxString, std::multimap<wxString, EASYEDAPRO::POURED>>
m_Poured;
70 if( aFileName.Lower().EndsWith( wxS(
".epro" ) ) )
74 else if( aFileName.Lower().EndsWith( wxS(
".zip" ) ) )
76 std::shared_ptr<wxZipEntry> entry;
77 wxFFileInputStream in( aFileName );
78 wxZipInputStream
zip( in );
83 while( entry.reset(
zip.GetNextEntry() ), entry.get() != NULL )
85 wxString
name = entry->GetName();
87 if(
name == wxS(
"project.json" ) )
99 const std::map<std::string, UTF8>* aProperties,
PROJECT* aProject )
117 wxFileName fname( aFileName );
120 if( fname.GetExt() == wxS(
"epro" ) || fname.GetExt() == wxS(
"zip" ) )
128 pcbToLoad = wxString::FromUTF8(
m_props->at(
"pcb_id" ) );
132 std::map<wxString, wxString> prjPcbNames =
project.at(
"pcbs" );
134 if( prjPcbNames.size() == 1 )
136 pcbToLoad = prjPcbNames.begin()->first;
144 if( chosen.size() == 0 )
147 pcbToLoad = chosen[0].PCBId;
151 if( pcbToLoad.empty() )
159 auto cb = [&](
const wxString&
name,
const wxString& pcbUuid, wxInputStream&
zip ) ->
bool
161 if( !
name.EndsWith( wxS(
".epcb" ) ) )
164 if( pcbUuid != pcbToLoad )
167 std::vector<nlohmann::json>* pcbLines =
nullptr;
169 std::vector<std::vector<nlohmann::json>> lineBlocks =
172 if( lineBlocks.empty() )
175 if( lineBlocks.size() > 1 )
177 for( std::vector<nlohmann::json>& block : lineBlocks )
180 nlohmann::json headData;
182 for(
const nlohmann::json& line : block )
184 if( line.size() < 2 )
187 if( !line.at( 0 ).is_string() )
190 wxString lineType = line.at( 0 ).get<wxString>();
192 if( lineType == wxS(
"DOCTYPE" ) )
194 if( !line.at( 1 ).is_string() )
197 docType = line.at( 1 ).get<wxString>();
199 else if( lineType == wxS(
"HEAD" ) )
201 if( !line.at( 1 ).is_object() )
204 headData = line.at( 1 );
208 if( docType == wxS(
"FOOTPRINT" ) )
210 wxString fpUuid = headData.at(
"uuid" );
211 wxString fpTitle = headData.at(
"title" );
219 footprint->SetFPID( fpID );
221 m_projectData->m_Footprints.emplace( fpUuid, std::move( footprint ) );
223 else if( docType == wxS(
"PCB" ) )
230 if( pcbLines ==
nullptr )
231 pcbLines = &lineBlocks[0];
233 wxString boardKey = pcbUuid + wxS(
"_0" );
234 wxScopedCharBuffer boardKeyBuffer = boardKey.ToUTF8();
235 wxString boardPouredKey = wxBase64Encode( boardKeyBuffer.data(), boardKeyBuffer.length() );
237 const std::multimap<wxString, EASYEDAPRO::POURED>& boardPoured =
258 const wxString& aLibraryPath,
bool aBestEfforts,
259 const std::map<std::string, UTF8>* aProperties )
261 wxFileName fname( aLibraryPath );
263 if( fname.GetExt() == wxS(
"efoo" ) )
265 wxFFileInputStream ffis( aLibraryPath );
266 wxTextInputStream txt( ffis, wxS(
" " ), wxConvUTF8 );
268 while( ffis.CanRead() )
270 wxString line = txt.ReadLine();
272 if( !line.Contains( wxS(
"ATTR" ) ) )
275 nlohmann::json js = nlohmann::json::parse( line );
276 if( js.at( 0 ) ==
"ATTR" && js.at( 7 ) ==
"Footprint" )
278 aFootprintNames.Add( js.at( 8 ).get<wxString>() );
282 else if( fname.GetExt() == wxS(
"elibz" ) || fname.GetExt() == wxS(
"epro" )
283 || fname.GetExt() == wxS(
"zip" ) )
286 std::map<wxString, nlohmann::json> footprintMap =
project.at(
"footprints" );
288 for(
auto& [key, value] : footprintMap )
292 if( value.contains(
"display_title" ) )
293 title = value.at(
"display_title" ).get<wxString>();
295 title = value.at(
"title" ).get<wxString>();
297 aFootprintNames.Add( title );
304 const nlohmann::json& aProject )
312 wxFileName fname( aProjectPath );
315 std::map<wxString, std::unique_ptr<FOOTPRINT>>
result;
317 auto cb = [&](
const wxString&
name,
const wxString& baseName, wxInputStream&
zip ) ->
bool
319 if( !
name.EndsWith( wxS(
".efoo" ) ) && !
name.EndsWith( wxS(
".eblob" ) )
320 && !
name.EndsWith( wxS(
".ecop" ) ) )
327 if(
name.EndsWith( wxS(
".efoo" ) ) )
329 nlohmann::json fpData = aProject.at(
"footprints" ).at( baseName );
330 wxString fpTitle = fpData.at(
"title" );
332 std::unique_ptr<FOOTPRINT> footprint = parser.
ParseFootprint( aProject, baseName, lines );
338 footprint->SetFPID( fpID );
340 m_projectData->m_Footprints.emplace( baseName, std::move( footprint ) );
342 else if(
name.EndsWith( wxS(
".eblob" ) ) )
344 for(
const nlohmann::json& line : lines )
346 if( line.at( 0 ) ==
"BLOB" )
355 for(
const nlohmann::json& line : lines )
357 if( line.at( 0 ) ==
"POURED" )
359 if( !line.at( 2 ).is_string() )
374 const wxString& aFootprintName,
bool aKeepUUID,
375 const std::map<std::string, UTF8>* aProperties )
381 std::unique_ptr<FOOTPRINT> footprint;
383 wxFileName libFname( aLibraryPath );
385 if( libFname.GetExt() == wxS(
"efoo" ) )
387 wxFFileInputStream ffis( aLibraryPath );
388 wxTextInputStream txt( ffis, wxS(
" " ), wxConvUTF8 );
392 for(
const nlohmann::json& js : lines )
394 if( js.at( 0 ) ==
"ATTR" )
398 if( attr.
key == wxS(
"Footprint" ) && attr.
value != aFootprintName )
403 footprint = parser.
ParseFootprint( nlohmann::json(), wxEmptyString, lines );
406 THROW_IO_ERRORF(
_(
"Cannot load footprint '%s' from '%s'" ), aFootprintName, aLibraryPath );
409 footprint->SetFPID( fpID );
411 footprint->Reference().SetVisible(
true );
412 footprint->Value().SetText( aFootprintName );
413 footprint->Value().SetVisible(
true );
414 footprint->AutoPositionFields();
416 else if( libFname.GetExt() == wxS(
"elibz" ) || libFname.GetExt() == wxS(
"epro" )
417 || libFname.GetExt() == wxS(
"zip" ) )
423 std::map<wxString, nlohmann::json> footprintMap =
project.at(
"footprints" );
424 for(
auto& [uuid, data] : footprintMap )
428 if( data.contains(
"display_title" ) )
429 title = data.at(
"display_title" ).get<wxString>();
431 title = data.at(
"title" ).get<wxString>();
433 if( title == aFootprintName )
441 THROW_IO_ERRORF(
_(
"Footprint '%s' not found in project '%s'" ), aFootprintName, aLibraryPath );
443 auto cb = [&](
const wxString&
name,
const wxString& baseName, wxInputStream&
zip ) ->
bool
445 if( !
name.EndsWith( wxS(
".efoo" ) ) )
448 if( baseName != fpUuid )
456 THROW_IO_ERRORF(
_(
"Cannot load footprint '%s' from '%s'" ), aFootprintName, aLibraryPath );
459 footprint->SetFPID( fpID );
461 footprint->Reference().SetVisible(
true );
462 footprint->Value().SetText( aFootprintName );
463 footprint->Value().SetVisible(
true );
464 footprint->AutoPositionFields();
477 std::vector<FOOTPRINT*>
result;
482 for(
auto& [fpUuid, footprint] :
m_projectData->m_Footprints )
Information pertinent to a Pcbnew printed circuit board.
RAII class to set and restore the fontconfig reporter.
PROGRESS_REPORTER * m_progressReporter
Progress reporter to track the progress of the operation, may be nullptr.
A logical library item identifier and consists of various portions much like a URI.
static LOAD_INFO_REPORTER & GetInstance()
std::unique_ptr< FOOTPRINT > ParseFootprint(const nlohmann::json &aProject, const wxString &aFpUuid, const std::vector< nlohmann::json > &aLines)
void ParseBoard(BOARD *aBoard, const nlohmann::json &aProject, std::map< wxString, std::unique_ptr< FOOTPRINT > > &aFootprintMap, const std::map< wxString, EASYEDAPRO::BLOB > &aBlobMap, const std::multimap< wxString, EASYEDAPRO::POURED > &aPouredMap, const std::vector< nlohmann::json > &aLines, const wxString &aFpLibName)
void LoadAllDataFromProject(const wxString &aLibraryPath, const nlohmann::json &aProject)
std::vector< FOOTPRINT * > GetImportedCachedLibraryFootprints() override
Return a container with the cached library footprints generated in the last call to Load.
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
std::unique_ptr< 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 loadBoard(const wxString &aFileName, BOARD &aBoard, bool aIsNewLoad, const std::map< std::string, UTF8 > *aProperties=nullptr, PROJECT *aProject=nullptr) override
Parse aFileName into aBoard.
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.
BOARD * m_board
The board BOARD being worked on, no ownership here.
PCB_IO(const wxString &aName)
const std::map< std::string, UTF8 > * m_props
Properties passed via Save() or Load(), no ownership, may be NULL.
CHOOSE_PROJECT_HANDLER m_choose_project_handler
Callback to choose projects to import.
Container for project specific data.
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
#define THROW_IO_ERRORF(msg,...)
#define THROW_IO_CANCELLED()
This file contains miscellaneous commonly used macros and functions.
wxString get_def(const std::map< wxString, wxString > &aMap, const char *aKey, const char *aDefval="")
LIB_ID ToKiCadLibID(const wxString &aLibName, const wxString &aLibReference)
void IterateZipFiles(const wxString &aFileName, std::function< bool(const wxString &, const wxString &, wxInputStream &)> aCallback)
std::vector< nlohmann::json > ParseJsonLines(wxInputStream &aInput, const wxString &aSource)
static const bool IMPORT_POURED_ECOP
std::vector< std::vector< nlohmann::json > > ParseJsonLinesWithSeparation(wxInputStream &aInput, const wxString &aSource)
Multiple document types (e.g.
std::vector< IMPORT_PROJECT_DESC > ProjectToSelectorDialog(const nlohmann::json &aProject, bool aPcbOnly=false, bool aSchOnly=false)
nlohmann::json ReadProjectOrDeviceFile(const wxString &aZipFileName)
wxString ShortenLibName(wxString aProjectName)
std::map< wxString, std::multimap< wxString, EASYEDAPRO::POURED > > m_Poured
std::map< wxString, EASYEDAPRO::BLOB > m_Blobs
std::map< wxString, std::unique_ptr< FOOTPRINT > > m_Footprints
wxString result
Test unit parsing edge cases and error handling.