30#include <magic_enum.hpp>
34using namespace std::chrono_literals;
60 wxArrayString namesAS;
67 plugin->FootprintEnumerate( namesAS, uri,
false, &options );
69 std::vector<std::unique_ptr<FOOTPRINT>> footprints;
70 footprints.reserve( namesAS.size() );
75 const bool pluginCaches =
plugin->CachesEnumeratedFootprints();
77 for(
const wxString& footprintName : namesAS )
81 const FOOTPRINT* cached =
plugin->GetEnumeratedFootprint( uri, footprintName, &options );
96 footprints.emplace_back( footprint );
101 nickname, footprintName, e.
What() );
112 plugin->ClearCachedFootprints( uri );
124 wxArrayString dummyList;
155 std::vector<FOOTPRINT*> footprints;
163 footprints.reserve( it->second.size() );
165 for(
const auto& fp : it->second )
166 footprints.push_back( fp.get() );
176 wxArrayString namesAS;
177 std::vector<wxString> names;
179 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
194 for(
const wxString&
name : namesAS )
195 names.emplace_back(
name );
207 wxCHECK(
HasLibrary( *aNickname,
true ), hash );
209 if( std::optional<const LIB_DATA*> r =
fetchIfLoaded( *aNickname ); r.has_value() )
214 + wxHashTable::MakeKey( *aNickname );
220 if( std::optional<const LIB_DATA*> r =
fetchIfLoaded( nickname ); r.has_value() )
222 wxCHECK2( ( *r )->plugin->IsPCB_IO(),
continue );
225 + wxHashTable::MakeKey( nickname );
235 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
256 for(
const auto& fp : libIt->second )
258 if( fp->GetFPID().GetLibItemName() ==
UTF8( aName ) )
267 copy->SetParent(
nullptr );
276 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
282 LIB_ID id = footprint->GetFPID();
284 footprint->SetFPID(
id );
290 wxLogTrace(
traceLibraries,
"LoadFootprint: error loading %s:%s: %s", aNickname, aName, ioe.
What() );
295 wxLogTrace(
traceLibraries,
"LoadFootprint: requested library %s not loaded", aNickname );
307 if( nickname.size() )
329 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
347 wxLogTrace(
traceLibraries,
"SaveFootprint: error checking for existing footprint %s: %s",
368 wxLogTrace(
traceLibraries,
"SaveFootprint: requested library %s not loaded", aNickname );
375 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
383 wxLogTrace(
traceLibraries,
"DeleteFootprint: error deleting %s:%s: %s", aNickname,
384 aFootprintName, e.
What() );
389 wxLogTrace(
traceLibraries,
"DeleteFootprint: requested library %s not loaded", aNickname );
400 return it->second.plugin->IsLibraryWritable(
getUri( it->second.row ) );
407 return it->second.plugin->IsLibraryWritable(
getUri( it->second.row ) );
421 wxFileName fileName( row->
URI() );
423 if( fileName.FileExists() )
426 msg = wxString::Format(
_(
"Nested table '%s' not found." ), row->
URI() );
433 wxString msg = wxString::Format(
_(
"Unknown library type %s " ), row->
Type() );
441 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.