40#include <wx/txtstrm.h>
41#include <wx/wfstream.h>
42#include <wx/mstream.h>
43#include <wx/zipstrm.h>
54 std::map<wxString, EASYEDAPRO::BLOB>
m_Blobs;
55 std::map<wxString, std::multimap<wxString, EASYEDAPRO::POURED>>
m_Poured;
73 if( aFileName.Lower().EndsWith( wxS(
".epro" ) ) )
77 else if( aFileName.Lower().EndsWith( wxS(
".zip" ) ) )
79 std::shared_ptr<wxZipEntry> entry;
80 wxFFileInputStream in( aFileName );
81 wxZipInputStream
zip( in );
86 while( entry.reset(
zip.GetNextEntry() ), entry.get() != NULL )
88 wxString
name = entry->GetName();
90 if(
name == wxS(
"project.json" ) )
102 const std::map<std::string, UTF8>* aProperties,
PROJECT* aProject )
110 m_board->SetFileName( aFileName );
125 wxFileName fname( aFileName );
128 if( fname.GetExt() == wxS(
"epro" ) || fname.GetExt() == wxS(
"zip" ) )
136 pcbToLoad = wxString::FromUTF8(
m_props->at(
"pcb_id" ) );
140 std::map<wxString, wxString> prjPcbNames =
project.at(
"pcbs" );
142 if( prjPcbNames.size() == 1 )
144 pcbToLoad = prjPcbNames.begin()->first;
151 if( chosen.size() > 0 )
152 pcbToLoad = chosen[0].PCBId;
156 if( pcbToLoad.empty() )
164 auto cb = [&](
const wxString&
name,
const wxString& pcbUuid, wxInputStream&
zip ) ->
bool
166 if( !
name.EndsWith( wxS(
".epcb" ) ) )
169 if( pcbUuid != pcbToLoad )
172 std::vector<nlohmann::json>* pcbLines =
nullptr;
174 std::vector<std::vector<nlohmann::json>> lineBlocks =
177 if( lineBlocks.empty() )
180 if( lineBlocks.size() > 1 )
182 for( std::vector<nlohmann::json>& block : lineBlocks )
185 nlohmann::json headData;
187 for(
const nlohmann::json& line : block )
189 if( line.size() < 2 )
192 if( !line.at( 0 ).is_string() )
195 wxString lineType = line.at( 0 ).get<wxString>();
197 if( lineType == wxS(
"DOCTYPE" ) )
199 if( !line.at( 1 ).is_string() )
202 docType = line.at( 1 ).get<wxString>();
204 else if( lineType == wxS(
"HEAD" ) )
206 if( !line.at( 1 ).is_object() )
209 headData = line.at( 1 );
213 if( docType == wxS(
"FOOTPRINT" ) )
215 wxString fpUuid = headData.at(
"uuid" );
216 wxString fpTitle = headData.at(
"title" );
228 else if( docType == wxS(
"PCB" ) )
235 if( pcbLines ==
nullptr )
236 pcbLines = &lineBlocks[0];
238 wxString boardKey = pcbUuid + wxS(
"_0" );
239 wxScopedCharBuffer cb = boardKey.ToUTF8();
240 wxString boardPouredKey = wxBase64Encode( cb.data(), cb.length() );
242 const std::multimap<wxString, EASYEDAPRO::POURED>& boardPoured =
265 const wxString& aLibraryPath,
bool aBestEfforts,
266 const std::map<std::string, UTF8>* aProperties )
268 wxFileName fname( aLibraryPath );
270 if( fname.GetExt() == wxS(
"efoo" ) )
272 wxFFileInputStream ffis( aLibraryPath );
273 wxTextInputStream txt( ffis, wxS(
" " ), wxConvUTF8 );
275 while( ffis.CanRead() )
277 wxString line = txt.ReadLine();
279 if( !line.Contains( wxS(
"ATTR" ) ) )
282 nlohmann::json js = nlohmann::json::parse( line );
283 if( js.at( 0 ) ==
"ATTR" && js.at( 7 ) ==
"Footprint" )
285 aFootprintNames.Add( js.at( 8 ).get<wxString>() );
289 else if( fname.GetExt() == wxS(
"elibz" ) || fname.GetExt() == wxS(
"epro" )
290 || fname.GetExt() == wxS(
"zip" ) )
293 std::map<wxString, nlohmann::json> footprintMap =
project.at(
"footprints" );
295 for(
auto& [key, value] : footprintMap )
299 if( value.contains(
"display_title" ) )
300 title = value.at(
"display_title" ).get<wxString>();
302 title = value.at(
"title" ).get<wxString>();
304 aFootprintNames.Add( title );
311 const nlohmann::json& aProject )
319 wxFileName fname( aProjectPath );
322 std::map<wxString, std::unique_ptr<FOOTPRINT>>
result;
324 auto cb = [&](
const wxString&
name,
const wxString& baseName, wxInputStream&
zip ) ->
bool
326 if( !
name.EndsWith( wxS(
".efoo" ) ) && !
name.EndsWith( wxS(
".eblob" ) )
327 && !
name.EndsWith( wxS(
".ecop" ) ) )
334 if(
name.EndsWith( wxS(
".efoo" ) ) )
336 nlohmann::json fpData = aProject.at(
"footprints" ).at( baseName );
337 wxString fpTitle = fpData.at(
"title" );
349 else if(
name.EndsWith( wxS(
".eblob" ) ) )
351 for(
const nlohmann::json& line : lines )
353 if( line.at( 0 ) ==
"BLOB" )
362 for(
const nlohmann::json& line : lines )
364 if( line.at( 0 ) ==
"POURED" )
366 if( !line.at( 2 ).is_string() )
381 const wxString& aFootprintName,
bool aKeepUUID,
382 const std::map<std::string, UTF8>* aProperties )
390 wxFileName libFname( aLibraryPath );
392 if( libFname.GetExt() == wxS(
"efoo" ) )
394 wxFFileInputStream ffis( aLibraryPath );
395 wxTextInputStream txt( ffis, wxS(
" " ), wxConvUTF8 );
399 for(
const nlohmann::json& js : lines )
401 if( js.at( 0 ) ==
"ATTR" )
405 if( attr.
key == wxS(
"Footprint" ) && attr.
value != aFootprintName )
410 footprint = parser.
ParseFootprint( nlohmann::json(), wxEmptyString, lines );
414 THROW_IO_ERROR( wxString::Format(
_(
"Cannot load footprint '%s' from '%s'" ),
415 aFootprintName, aLibraryPath ) );
426 else if( libFname.GetExt() == wxS(
"elibz" ) || libFname.GetExt() == wxS(
"epro" )
427 || libFname.GetExt() == wxS(
"zip" ) )
433 std::map<wxString, nlohmann::json> footprintMap =
project.at(
"footprints" );
434 for(
auto& [uuid, data] : footprintMap )
438 if( data.contains(
"display_title" ) )
439 title = data.at(
"display_title" ).get<wxString>();
441 title = data.at(
"title" ).get<wxString>();
443 if( title == aFootprintName )
452 THROW_IO_ERROR( wxString::Format(
_(
"Footprint '%s' not found in project '%s'" ),
453 aFootprintName, aLibraryPath ) );
456 auto cb = [&](
const wxString&
name,
const wxString& baseName, wxInputStream&
zip ) ->
bool
458 if( !
name.EndsWith( wxS(
".efoo" ) ) )
461 if( baseName != fpUuid )
470 THROW_IO_ERROR( wxString::Format(
_(
"Cannot load footprint '%s' from '%s'" ),
471 aFootprintName, aLibraryPath ) );
493 std::vector<FOOTPRINT*>
result;
498 for(
auto& [fpUuid, footprint] :
m_projectData->m_Footprints )
Information pertinent to a Pcbnew printed circuit board.
virtual void SetVisible(bool aVisible)
virtual void SetText(const wxString &aText)
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()
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)
FOOTPRINT * ParseFootprint(const nlohmann::json &aProject, const wxString &aFpUuid, const std::vector< nlohmann::json > &aLines)
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.
BOARD * LoadBoard(const wxString &aFileName, BOARD *aAppendToMe, const std::map< std::string, UTF8 > *aProperties=nullptr, PROJECT *aProject=nullptr) override
Load information from some input file format that this PCB_IO implementation knows about into either ...
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).
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.
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
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.