30#include <magic_enum.hpp>
34using namespace std::chrono_literals;
60 wxArrayString namesAS;
66 plugin->FootprintEnumerate( namesAS, aUri,
false, &options );
68 std::vector<std::unique_ptr<FOOTPRINT>> footprints;
69 footprints.reserve( namesAS.size() );
74 const bool pluginCaches =
plugin->CachesEnumeratedFootprints();
76 for(
const wxString& footprintName : namesAS )
80 const FOOTPRINT* cached =
plugin->GetEnumeratedFootprint( aUri, footprintName, &options );
95 footprints.emplace_back( footprint );
100 nickname, footprintName, e.
What() );
111 plugin->ClearCachedFootprints( aUri );
123 wxArrayString dummyList;
154 std::vector<FOOTPRINT*> footprints;
162 footprints.reserve( it->second.size() );
164 for(
const auto& fp : it->second )
165 footprints.push_back( fp.get() );
175 wxArrayString namesAS;
176 std::vector<wxString> names;
178 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
193 for(
const wxString&
name : namesAS )
194 names.emplace_back(
name );
206 wxCHECK(
HasLibrary( *aNickname,
true ), hash );
208 if( std::optional<const LIB_DATA*> r =
fetchIfLoaded( *aNickname ); r.has_value() )
213 + wxHashTable::MakeKey( *aNickname );
219 if( std::optional<const LIB_DATA*> r =
fetchIfLoaded( nickname ); r.has_value() )
221 wxCHECK2( ( *r )->plugin->IsPCB_IO(),
continue );
224 + wxHashTable::MakeKey( nickname );
234 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
255 for(
const auto& fp : libIt->second )
257 if( fp->GetFPID().GetLibItemName() ==
UTF8( aName ) )
266 copy->SetParent(
nullptr );
275 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
281 LIB_ID id = footprint->GetFPID();
283 footprint->SetFPID(
id );
289 wxLogTrace(
traceLibraries,
"LoadFootprint: error loading %s:%s: %s", aNickname, aName, ioe.
What() );
294 wxLogTrace(
traceLibraries,
"LoadFootprint: requested library %s not loaded", aNickname );
306 if( nickname.size() )
328 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
346 wxLogTrace(
traceLibraries,
"SaveFootprint: error checking for existing footprint %s: %s",
373 auto& footprints = it->second;
374 footprints.erase( std::remove_if( footprints.begin(), footprints.end(),
375 [&fpName](
const std::unique_ptr<FOOTPRINT>& fp )
377 return fp->GetFPID().GetLibItemName().wx_str() == fpName;
389 it->second.emplace_back( clone );
397 wxLogTrace(
traceLibraries,
"SaveFootprint: requested library %s not loaded", aNickname );
405 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
413 wxLogTrace(
traceLibraries,
"DeleteFootprint: error deleting %s:%s: %s", aNickname,
414 aFootprintName, e.
What() );
424 auto& footprints = it->second;
425 footprints.erase( std::remove_if( footprints.begin(), footprints.end(),
426 [&aFootprintName](
const std::unique_ptr<FOOTPRINT>& fp )
428 return fp->GetFPID().GetLibItemName().wx_str() == aFootprintName;
436 wxLogTrace(
traceLibraries,
"DeleteFootprint: requested library %s not loaded", aNickname );
447 return it->second.plugin->IsLibraryWritable(
getUri( it->second.row ) );
454 return it->second.plugin->IsLibraryWritable(
getUri( it->second.row ) );
468 wxFileName fileName( row->
URI() );
470 if( fileName.FileExists() )
473 msg = wxString::Format(
_(
"Nested table '%s' not found." ), row->
URI() );
480 wxString msg = wxString::Format(
_(
"Unknown library type %s " ), row->
Type() );
488 magic_enum::enum_name( row->
Scope() ) );
virtual void SetParent(EDA_ITEM *aParent)
virtual bool IsPCB_IO() const
Work-around for lack of dynamic_cast across compile units on Mac.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
A wrapper for static data that should not be destroyed at program exit.
LIBRARY_MANAGER_ADAPTER(LIBRARY_MANAGER &aManager)
Constructs a type-specific adapter into the library manager.
LIBRARY_RESULT< LIB_DATA * > loadIfNeeded(const wxString &aNickname)
Fetches a loaded library, triggering a load of that library if it isn't loaded yet.
std::shared_mutex m_librariesMutex
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
std::map< wxString, LIB_DATA > m_libraries
std::vector< wxString > GetLibraryNames() const
Returns a list of library nicknames that are available (skips any that failed to load)
static wxString getUri(const LIBRARY_TABLE_ROW *aRow)
std::optional< const LIB_DATA * > fetchIfLoaded(const wxString &aNickname) const
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false) const
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
LIBRARY_TABLE_SCOPE Scope() const
std::map< std::string, UTF8 > GetOptionsMap() const
const wxString & Type() const
const wxString & URI() const
const wxString & Nickname() const
A logical library item identifier and consists of various portions much like a URI.
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
const UTF8 & GetLibItemName() const
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
static PCB_FILE_T EnumFromStr(const wxString &aFileType)
Return the PCB_FILE_T from the corresponding plugin type name: "kicad", "legacy", etc.
PCB_FILE_T
The set of file types that the PCB_IO_MGR knows about, and for which there has been a plugin written,...
@ PCB_FILE_UNKNOWN
0 is not a legal menu id on Mac
static PCB_IO * FindPlugin(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
A base class that BOARD loading and saving plugins should derive from.
virtual void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr)
Return a list of footprint names contained within the library at aLibraryPath.
virtual bool FootprintExists(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr)
Check for the existence of a footprint.
virtual void FootprintDelete(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr)
Delete aFootprintName from the library at aLibraryPath.
virtual FOOTPRINT * FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr)
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PC...
virtual void FootprintSave(const wxString &aLibraryPath, const FOOTPRINT *aFootprint, const std::map< std::string, UTF8 > *aProperties=nullptr)
Write aFootprint to an existing library located at aLibraryPath.
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
#define IGNORE_PARENT_GROUP
Functions related to environment variables, including help functions.
const wxChar *const traceLibraries
Flag to enable library table and library manager tracing.
tl::expected< ResultType, LIBRARY_ERROR > LIBRARY_RESULT
KICOMMON_API wxString GetVersionedEnvVarName(const wxString &aBaseName)
Construct a versioned environment variable based on this KiCad major version.
Storage for an actual loaded library (including library content owned by the plugin)
std::unique_ptr< IO_BASE > plugin
const LIBRARY_TABLE_ROW * row
The overall status of a loaded or loading library.
std::optional< LIBRARY_ERROR > error
wxString result
Test unit parsing edge cases and error handling.
wxLogTrace helper definitions.