30#include <magic_enum.hpp>
34using namespace std::chrono_literals;
66 wxArrayString namesAS;
73 std::lock_guard pluginGuard(
pluginMutex( nickname ) );
76 plugin->FootprintEnumerate( namesAS, aUri,
false, &options );
78 std::vector<std::unique_ptr<FOOTPRINT>> footprints;
79 footprints.reserve( namesAS.size() );
84 const bool pluginCaches =
plugin->CachesEnumeratedFootprints();
86 for(
const wxString& footprintName : namesAS )
90 const FOOTPRINT* cached =
plugin->GetEnumeratedFootprint( aUri, footprintName, &options );
105 footprints.emplace_back( footprint );
110 nickname, footprintName, e.
What() );
115 long long timestamp =
plugin->GetLibraryTimestamp( aUri );
125 plugin->ClearCachedFootprints( aUri );
139 wxArrayString dummyList;
170 std::vector<FOOTPRINT*> footprints;
178 footprints.reserve( it->second.size() );
180 for(
const auto& fp : it->second )
181 footprints.push_back( fp.get() );
191 wxArrayString namesAS;
192 std::vector<wxString> names;
194 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
201 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
211 for(
const wxString&
name : namesAS )
212 names.emplace_back(
name );
224 wxCHECK(
HasLibrary( *aNickname,
true ), hash );
226 if( std::optional<const LIB_DATA*> r =
fetchIfLoaded( *aNickname ); r.has_value() )
231 + wxHashTable::MakeKey( *aNickname );
237 if( std::optional<const LIB_DATA*> r =
fetchIfLoaded( nickname ); r.has_value() )
239 wxCHECK2( ( *r )->plugin->IsPCB_IO(),
continue );
242 + wxHashTable::MakeKey( nickname );
252 std::optional<LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname );
264 long long currentTimestamp =
plugin->GetLibraryTimestamp( uri );
273 wxLogTrace(
traceLibraries,
"FP: %s changed on disk, re-enumerating", aNickname );
282 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
287 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
306 for(
const auto& fp : libIt->second )
308 if( fp->GetFPID().GetLibItemName() ==
UTF8( aName ) )
317 copy->SetParent(
nullptr );
326 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
330 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
334 LIB_ID id = footprint->GetFPID();
336 footprint->SetFPID(
id );
342 wxLogTrace(
traceLibraries,
"LoadFootprint: error loading %s:%s: %s", aNickname, aName, ioe.
What() );
347 wxLogTrace(
traceLibraries,
"LoadFootprint: requested library %s not loaded", aNickname );
359 if( nickname.size() )
381 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
384 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
402 wxLogTrace(
traceLibraries,
"SaveFootprint: error checking for existing footprint %s: %s",
431 auto& footprints = it->second;
432 footprints.erase( std::remove_if( footprints.begin(), footprints.end(),
433 [&fpName](
const std::unique_ptr<FOOTPRINT>& fp )
435 return fp->GetFPID().GetLibItemName().wx_str() == fpName;
447 it->second.emplace_back( clone );
455 wxLogTrace(
traceLibraries,
"SaveFootprint: requested library %s not loaded", aNickname );
463 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
465 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
473 wxLogTrace(
traceLibraries,
"DeleteFootprint: error deleting %s:%s: %s", aNickname,
474 aFootprintName, e.
What() );
484 auto& footprints = it->second;
485 footprints.erase( std::remove_if( footprints.begin(), footprints.end(),
486 [&aFootprintName](
const std::unique_ptr<FOOTPRINT>& fp )
488 return fp->GetFPID().GetLibItemName().wx_str() == aFootprintName;
496 wxLogTrace(
traceLibraries,
"DeleteFootprint: requested library %s not loaded", aNickname );
505 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aLib ) )
507 std::lock_guard pluginGuard(
pluginMutex( aLib ) );
509 return ( *lib )->plugin->IsLibraryWritable(
getUri( ( *lib )->row ) );
523 wxFileName fileName(
m_manager.GetFullURI( row,
true ) );
525 if( fileName.FileExists() )
528 msg = wxString::Format(
_(
"Nested table '%s' not found." ), row->
URI() );
535 wxString msg = wxString::Format(
_(
"Unknown library type %s " ), row->
Type() );
543 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.
void evictOwnedGlobalEntries()
Erases this adapter's own entries (LIB_DATA::global_owner == this) from the process-wide globalLibs()...
LIBRARY_MANAGER_ADAPTER(LIBRARY_MANAGER &aManager)
Constructs a type-specific adapter into the library manager.
static std::mutex & pluginMutex(const wxString &aNickname)
Serializes access to a library's shared plugin instance so its single mutable cache is not raced by c...
LIBRARY_RESULT< LIB_DATA * > loadIfNeeded(const wxString &aNickname)
Fetches a loaded library, triggering a load of that library if it isn't loaded yet.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
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)
LIBRARY_MANAGER & m_manager
std::optional< const LIB_DATA * > fetchIfLoaded(const wxString &aNickname) const
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
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.