21#include <magic_enum.hpp>
40using namespace std::chrono_literals;
72 wxCHECK( aRow->
plugin && ret,
nullptr );
79 wxArrayString dummyList;
98 wxArrayString dummyList;
154 if( type == SCH_IO_MGR::SCH_NESTED_TABLE )
159 if( fileName.FileExists() )
162 msg = wxString::Format(
_(
"Nested table '%s' not found." ), row->
URI() );
166 else if( type == SCH_IO_MGR::SCH_FILE_UNKNOWN )
169 wxString msg = wxString::Format(
_(
"Unknown library type %s " ), row->
Type() );
176 plugin->SetLibraryManagerAdapter(
this );
179 magic_enum::enum_name( row->
Scope() ) );
187 std::vector<LIB_SYMBOL*> symbols;
189 std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname );
196 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
214 LIB_ID id = symbol->GetLibId();
216 symbol->SetLibId(
id );
225 wxArrayString namesAS;
226 std::vector<wxString> names;
228 if( std::optional<const LIB_DATA*> maybeLib =
fetchIfLoaded( aNickname ) )
232 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
245 wxLogTrace(
traceLibraries,
"Sym: Exception enumerating library %s: %s",
250 for(
const wxString&
name : namesAS )
251 names.emplace_back(
name );
259 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aNickname ) )
261 std::lock_guard pluginGuard(
pluginMutex( aNickname ) );
265 LIB_ID id = symbol->GetLibId();
267 symbol->SetLibId(
id );
273 wxLogTrace(
traceLibraries,
"LoadSymbol: requested library %s not loaded", aNickname );
281 std::unique_ptr<LIB_SYMBOL> aSymbol,
bool aOverwrite )
287 if( !libResult.has_value() )
289 wxLogTrace(
traceLibraries,
"SaveSymbol: unable to load library %s: %s", aNickname,
290 libResult.error().message );
298 wxLogTrace(
traceLibraries,
"SaveSymbol: library %s not found", aNickname );
305 const wxString symbolName = aSymbol->GetName();
320 wxLogTrace(
traceLibraries,
"SaveSymbol: error checking for existing symbol %s:%s: %s", aNickname,
321 symbolName, e.
What() );
328 plugin->SaveSymbol(
getUri( lib->
row ), std::move( aSymbol ), &options );
332 wxLogTrace(
traceLibraries,
"SaveSymbol: error saving %s:%s: %s", aNickname, symbolName, e.
What() );
342 wxCHECK_MSG(
false, ,
"Unimplemented!" );
350 if( std::optional<const LIB_DATA*> lib =
fetchIfLoaded( aLib ) )
351 return ( *lib )->plugin->IsLibraryWritable(
getUri( ( *lib )->row ) );
359 std::vector<wxString> fields;
394 std::vector<SUB_LIBRARY> ret;
402 std::vector<wxString> names;
405 for(
const wxString&
name : names )
414 wxLogTrace(
traceLibraries,
"Sym: Exception getting sub-libraries for %s: %s",
415 aNickname, e.
What() );
426 return ( *result )->plugin->SupportsConfigurationDialog();
434 std::optional<const LIB_DATA*> optRow =
fetchIfLoaded( aNickname );
439 if( !( *optRow )->plugin->SupportsConfigurationDialog() )
442 DIALOG_SHIM* dialog = ( *optRow )->plugin->CreateConfigurationDialog( aParent );
457 wxCHECK2( rowData->
row,
continue );
471 wxCHECK( rowData->
row, std::nullopt );
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
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()
virtual const wxString Problem() const
what was the problem?
virtual const wxString Where() const
where did the Problem() occur?
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.
wxString getUri(const LIBRARY_TABLE_ROW *aRow) const
LIBRARY_RESULT< LIB_DATA * > loadIfNeeded(const wxString &aNickname)
Fetches a loaded library, triggering a load of that library if it isn't loaded yet.
static std::recursive_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_MANAGER & m_manager
std::optional< const LIB_DATA * > fetchIfLoaded(const wxString &aNickname) const
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.
Define a library symbol object.
static SCH_FILE_T EnumFromStr(const wxString &aFileType)
Return the #SCH_FILE_T from the corresponding plugin type name: "kicad", "legacy",...
Base class that schematic file and library loading and saving plugins should derive from.
virtual void EnumerateSymbolLib(wxArrayString &aSymbolNameList, const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr)
Populate a list of LIB_SYMBOL alias names contained within the library aLibraryPath.
virtual bool SupportsSubLibraries() const
virtual int GetModifyHash() const =0
Return the modification hash from the library cache.
virtual void GetAvailableSymbolFields(std::vector< wxString > &aNames)
Retrieves a list of (custom) field names that are present on symbols in this library.
virtual void CheckLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr)
Validate that the library at aLibraryPath is reachable and well-formed, without necessarily loading s...
virtual LIB_SYMBOL * LoadSymbol(const wxString &aLibraryPath, const wxString &aPartName, const std::map< std::string, UTF8 > *aProperties=nullptr)
Load a LIB_SYMBOL object having aPartName from the aLibraryPath containing a library format that this...
virtual wxString GetSubLibraryDescription(const wxString &aName)
Gets a description of a sublibrary.
virtual void GetSubLibraryNames(std::vector< wxString > &aNames)
Retrieves a list of sub-libraries in this library.
bool SupportsConfigurationDialog(const wxString &aNickname) const override
std::optional< LIB_STATUS > LoadOne(LIB_DATA *aLib) override
Loads or reloads the given library, if it exists.
static SCH_IO * schplugin(const LIB_DATA *aRow)
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
void DeleteSymbol(const wxString &aNickname, const wxString &aSymbolName)
Deletes the aSymbolName from the library given by aNickname.
std::optional< LIB_STATUS > CheckLibrary(LIB_DATA *aLib) override
Validates that a library is loadable. May not necessarily load the library!
SAVE_T SaveSymbol(const wxString &aNickname, std::unique_ptr< LIB_SYMBOL > aSymbol, bool aOverwrite=true)
Write aSymbol to an existing library given by aNickname.
void enumerateLibrary(LIB_DATA *aLib, const wxString &aUri) override
Override in derived class to perform library-specific enumeration.
std::vector< wxString > GetSymbolNames(const wxString &aNickname, SYMBOL_TYPE aType=SYMBOL_TYPE::ALL_SYMBOLS)
bool SupportsSubLibraries(const wxString &aNickname) const
LIBRARY_RESULT< IO_BASE * > createPlugin(const LIBRARY_TABLE_ROW *row) override
Creates a concrete plugin for the given row.
std::vector< SUB_LIBRARY > GetSubLibraries(const wxString &aNickname) const
SYMBOL_LIBRARY_ADAPTER(LIBRARY_MANAGER &aManager)
static wxString GlobalPathEnvVariableName()
int GetModifyHash() const
static const char * PropPowerSymsOnly
LIBRARY_TABLE_TYPE Type() const override
The type of library table this adapter works with.
IO_BASE * plugin(const LIB_DATA *aRow) override
std::vector< LIB_SYMBOL * > GetSymbols(const wxString &aNickname, SYMBOL_TYPE aType=SYMBOL_TYPE::ALL_SYMBOLS)
static LEAK_AT_EXIT< std::shared_mutex > GlobalLibraryMutex
static LEAK_AT_EXIT< std::map< wxString, LIB_DATA > > GlobalLibraries
std::vector< wxString > GetAvailableExtraFields(const wxString &aNickname)
Returns a list of additional (non-mandatory) symbol fields present in the given library.
SAVE_T
The set of return values from SaveSymbol() below.
static const char * PropNonPowerSymsOnly
bool IsSymbolLibWritable(const wxString &aNickname)
Return true if the library given by aNickname is writable.
std::optional< int > GetLibraryModifyHash(const wxString &aNickname) const
Return the modify hash of a single library if it is currently loaded.
~SYMBOL_LIBRARY_ADAPTER() override
int ShowConfigurationDialog(const wxString &aNickname, wxWindow *aParent) const override
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::vector< wxString > available_fields_cache
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
A descriptor for a sub-library (supported by database and http libraries)
wxString result
Test unit parsing edge cases and error handling.
wxLogTrace helper definitions.