32#include <unordered_map>
65 if( buffer.IsModified() )
82 if(
const auto libBufIt =
m_libs.find( aLibrary ); libBufIt !=
m_libs.end() )
83 return libBufIt->second.GetHash();
91 wxFileName fn( *uri );
101 else if( fn.IsFileReadable() )
102 mtime = fn.GetModificationTime().GetValue().GetValue();
104 size_t base = std::hash<std::string>{}( aLibrary.ToStdString() + uri->ToStdString() );
105 return static_cast<int>( base ^
static_cast<size_t>( mtime ) );
124 res.Add( row->Nickname() );
127 res.Sort( [](
const wxString& lhs,
const wxString& rhs ) ->
int
137 SCH_IO_MGR::SCH_FILE_T aFileType )
139 wxCHECK( aFileType != SCH_IO_MGR::SCH_FILE_T::SCH_LEGACY,
false );
141 wxFileName fn( aFileName );
143 if( fn.FileExists() && !fn.IsFileWritable() )
148 std::map<std::string, UTF8> properties;
152 auto it =
m_libs.find( aLibrary );
159 const auto& symbolBuffers = libBuf.
GetBuffers();
161 for(
const std::shared_ptr<SYMBOL_BUFFER>& symbolBuf : symbolBuffers )
163 wxCHECK2( symbolBuf,
continue );
165 if( !libBuf.
SaveBuffer( *symbolBuf, aFileName, &*pi,
true ) )
173 wxFileName original, destination( aFileName );
184 if(
res && original == destination )
187 for(
const std::shared_ptr<SYMBOL_BUFFER>& deletedBuf : libBuf.
GetDeletedBuffers() )
189 wxCHECK2( deletedBuf,
continue );
191 const wxString& originalName = deletedBuf->GetOriginal().GetName();
195 if( pi->LoadSymbol( aFileName, originalName ) )
196 pi->DeleteSymbol( aFileName, originalName, &properties );
200 wxLogError(
_(
"Error deleting symbol %s from library '%s'." ) + wxS(
"\n%s" ),
216 if( symbol->IsDerived() )
218 std::shared_ptr< LIB_SYMBOL > oldParent = symbol->GetParent().lock();
220 wxCHECK_MSG( oldParent,
false,
221 wxString::Format( wxT(
"Derived symbol '%s' found with undefined parent." ),
222 symbol->GetName() ) );
224 LIB_SYMBOL* libParent = pi->LoadSymbol( aFileName, oldParent->
GetName(), &properties );
228 std::unique_ptr<LIB_SYMBOL> newParent =
229 std::make_unique<LIB_SYMBOL>( *oldParent );
230 pi->SaveSymbol( aFileName, std::move( newParent ), &properties );
234 libParent = pi->LoadSymbol( aFileName, oldParent->
GetName(), &properties );
254 std::unique_ptr<LIB_SYMBOL> newSymbol =
255 std::make_unique<LIB_SYMBOL>( *symbol );
256 newSymbol->SetParent( libParent );
257 pi->SaveSymbol( aFileName, std::move( newSymbol ), &properties );
259 else if( !pi->LoadSymbol( aFileName, symbol->GetName(), &properties ) )
261 pi->SaveSymbol( aFileName, std::make_unique<LIB_SYMBOL>( *symbol ),
275 pi->SaveLibrary( aFileName );
290 auto it =
m_libs.find( aLibrary );
291 return it !=
m_libs.end() ? it->second.IsModified() :
false;
297 auto libIt =
m_libs.find( aLibrary );
299 if( libIt ==
m_libs.end() )
303 const std::shared_ptr<SYMBOL_BUFFER> symbolBuf = buf.
GetBuffer( aSymbolName );
305 return symbolBuf ? symbolBuf->IsModified() :
false;
311 auto libIt =
m_libs.find( aLibrary );
313 if( libIt ==
m_libs.end() )
317 std::shared_ptr<SYMBOL_BUFFER> symbolBuf = buf.
GetBuffer( aSymbolName );
319 wxCHECK( symbolBuf, );
321 symbolBuf->GetScreen()->SetContentModified();
327 auto libIt =
m_libs.find( aLibrary );
329 if( libIt ==
m_libs.end() )
332 for(
auto& symbolBuf : libIt->second.GetBuffers() )
346 auto libIt =
m_libs.find( aLibrary );
348 if( libIt ==
m_libs.end() )
351 auto symbolBuf = libIt->second.GetBuffer( aSymbolName );
352 wxCHECK( symbolBuf,
false );
354 symbolBuf->GetScreen()->SetContentModified(
false );
375 std::list<LIB_SYMBOL*> ret;
376 auto libIt =
m_libs.find( aLibrary );
378 if( libIt !=
m_libs.end() )
380 for(
const std::shared_ptr<SYMBOL_BUFFER>& symbolBuf : libIt->second.GetBuffers() )
381 ret.push_back( &symbolBuf->GetSymbol() );
386 std::vector<LIB_SYMBOL*> symbols = adapter->
GetSymbols( aLibrary );
388 std::copy( symbols.begin(), symbols.end(), std::back_inserter( ret ) );
401 if( !bufferedSymbol )
410 if( symbol ==
nullptr )
418 std::shared_ptr<LIB_SYMBOL> parent = symbol->
GetParent().lock();
419 wxCHECK_MSG( parent,
nullptr, wxString::Format(
"Derived symbol '%s' found with undefined parent.",
423 bufferedParent = libBuf.
GetSymbol( parent->GetName() );
425 if( !bufferedParent )
427 std::unique_ptr<LIB_SYMBOL> newParent = std::make_unique<LIB_SYMBOL>( *parent );
428 bufferedParent = newParent.get();
429 libBuf.
CreateBuffer( std::move( newParent ), std::make_unique<SCH_SCREEN>() );
433 std::unique_ptr<LIB_SYMBOL> newSymbol = std::make_unique<LIB_SYMBOL>( *symbol );
434 bufferedSymbol = newSymbol.get();
437 newSymbol->SetParent( bufferedParent );
439 libBuf.
CreateBuffer( std::move( newSymbol ), std::make_unique<SCH_SCREEN>() );
445 msg.Printf(
_(
"Error loading symbol %s from library '%s'." ),
449 bufferedSymbol =
nullptr;
453 return bufferedSymbol;
459 auto it =
m_libs.find( aLibrary );
460 wxCHECK( it !=
m_libs.end(),
nullptr );
463 std::shared_ptr<SYMBOL_BUFFER> symbolBuf = buf.
GetBuffer( aSymbolName );
465 return symbolBuf ? symbolBuf->GetScreen() :
nullptr;
470 const wxString& aLibrary )
478 return libBuf.
GetBuffer( aSymbolName ).get();
485 std::shared_ptr<SYMBOL_BUFFER> symbolBuf = libBuf.
GetBuffer( aSymbol->
GetName() );
489 LIB_SYMBOL& bufferedSymbol = symbolBuf->GetSymbol();
493 bufferedSymbol = *aSymbol;
496 symbolBuf->GetScreen()->SetContentModified();
500 std::unique_ptr<LIB_SYMBOL> symbolCopy = std::make_unique<LIB_SYMBOL>( *aSymbol,
nullptr );
504 auto newScreen = std::make_unique<SCH_SCREEN>();
506 libBuf.
CreateBuffer( std::move( symbolCopy ), std::move( newScreen ) );
515 const wxString& aLibrary )
518 std::shared_ptr<SYMBOL_BUFFER> symbolBuf = libBuf.
GetBuffer( aOldName );
520 wxCHECK( symbolBuf && aSymbol,
false );
531 auto it =
m_libs.find( aLibrary );
534 return LIB_ID( aLibrary, aSymbolName );
536 std::shared_ptr<SYMBOL_BUFFER> symbolBuf = it->second.GetBuffer( aSymbolName );
537 wxCHECK( symbolBuf,
LIB_ID( aLibrary, aSymbolName ) );
538 LIB_SYMBOL original( symbolBuf->GetOriginal() );
540 if( original.
GetName() != aSymbolName )
547 symbolBuf->GetSymbol() = original;
557 auto it =
m_libs.find( aLibrary );
577 for(
const auto& lib :
m_libs )
579 if( !lib.second.IsModified() )
582 for(
const std::shared_ptr<SYMBOL_BUFFER>& buffer : lib.second.GetBuffers() )
584 if( !buffer->IsModified() )
587 RevertSymbol( lib.first, buffer->GetOriginal().GetName() );
598 std::shared_ptr<SYMBOL_BUFFER> symbolBuf = libBuf.
GetBuffer( aSymbolName );
599 wxCHECK( symbolBuf,
false );
613 auto libIt =
m_libs.find( aLibrary );
615 if( libIt !=
m_libs.end() )
617 LIB_SYMBOL* symbol = libIt->second.GetSymbol( aSymbolName );
629 symbol = adapter->
LoadSymbol( aLibrary, aSymbolName );
635 msg.Printf(
_(
"Cannot load symbol '%s' from library '%s'." ),
646 const wxString& aLibrary )
const
648 auto libBufIt =
m_libs.find( aLibrary );
651 if( libBufIt !=
m_libs.end() )
652 return libBufIt->second.GetBuffer( aSymbolName ) !=
nullptr;
658 symbol = adapter->
LoadSymbol( aLibrary, aSymbolName );
665 return symbol !=
nullptr;
671 wxArrayString existing;
678 for( wxString& candidate : existing )
680 if( candidate.CmpNoCase( unescapedName ) == 0 )
690 if( aLibrary.IsEmpty() )
693 if(
m_libs.count( aLibrary ) > 0 )
698 return adapter->
HasLibrary( aLibrary, aCheckEnabled );
704 wxString
name =
"New_Library";
711 for(
unsigned int i = 0; i < std::numeric_limits<unsigned int>::max(); ++i )
714 return name + wxString::Format(
"%u", i );
718 return wxEmptyString;
732 wxArrayString& aList )
757 wxFileName fn( aFilePath );
773 if( schFileType == SCH_IO_MGR::SCH_FILE_UNKNOWN )
774 schFileType = SCH_IO_MGR::SCH_LEGACY;
779 wxCHECK( optTable,
false );
791 table->Save().map_error(
794 wxMessageBox(
_(
"Error saving library table:\n\n" ) + aError.
message,
795 _(
"File Save Error" ), wxOK | wxICON_ERROR );
809 wxCHECK( schFileType != SCH_IO_MGR::SCH_FILE_T::SCH_LEGACY,
false );
813 table->Rows().erase(
table->Rows().end() - 1 );
828 std::set<LIB_SYMBOL*> symbols;
834 symbols.insert( symbol );
842 auto it =
m_libs.find( aLibrary );
853 if( symbol->IsDerived() )
855 std::shared_ptr<LIB_SYMBOL> oldParent = symbol->GetParent().lock();
857 wxCHECK_MSG( oldParent, buf, wxString::Format(
"Derived symbol '%s' found with undefined parent.",
858 symbol->GetName() ) );
864 std::unique_ptr<LIB_SYMBOL> newParent = std::make_unique<LIB_SYMBOL>( *oldParent.get() );
865 libParent = newParent.get();
866 buf.
CreateBuffer( std::move( newParent ), std::make_unique<SCH_SCREEN>() );
869 std::unique_ptr<LIB_SYMBOL> newSymbol = std::make_unique<LIB_SYMBOL>( *symbol );
870 newSymbol->SetParent( libParent );
871 buf.
CreateBuffer( std::move( newSymbol ), std::make_unique<SCH_SCREEN>() );
873 else if( !buf.
GetSymbol( symbol->GetName() ) )
875 buf.
CreateBuffer( std::make_unique<LIB_SYMBOL>( *symbol ), std::make_unique<SCH_SCREEN>() );
890 catch(
const std::exception& e )
892 wxLogError(
_(
"Error updating library buffer: %s" ), e.what() );
897 wxLogError(
_(
"Error updating library buffer." ) );
908 std::unique_ptr<SCH_SCREEN> aScreen ) :
930 if(
m_original->GetLibId().GetLibNickname() !=
m_symbol->GetLibId().GetLibNickname() )
945 if(
m_original->GetLibId().GetLibNickname() !=
m_symbol->GetLibId().GetLibNickname() )
972 std::unique_ptr<SCH_SCREEN> aScreen )
975 wxASSERT( aCopy->GetLib() ==
nullptr );
979 LIB_ID libId = aCopy->GetLibId();
981 aCopy->SetLibId( libId );
983 auto symbolBuf = std::make_shared<SYMBOL_BUFFER>( std::move( aCopy ), std::move( aScreen ) );
984 m_symbols.push_back( std::move( symbolBuf ) );
996 bufferedSymbol = aCopy;
1005 const auto sameBufferPredicate = [&](
const std::shared_ptr<SYMBOL_BUFFER>& aBuf )
1007 return aBuf.get() == &aSymbolBuf;
1010 auto symbolBufIt = std::find_if(
m_symbols.begin(),
m_symbols.end(), sameBufferPredicate );
1011 wxCHECK( symbolBufIt !=
m_symbols.end(),
false );
1033 wxCHECK( !aFileName.IsEmpty(),
false );
1035 wxString errorMsg =
_(
"Error saving symbol %s to library '%s'." ) + wxS(
"\n%s" );
1038 std::map<std::string, UTF8> properties;
1045 const wxString originalName = originalSymbol.
GetName();
1052 if( aPlugin->
LoadSymbol( aFileName, originalName ) )
1053 aPlugin->
DeleteSymbol( aFileName, originalName, &properties );
1065 std::unique_ptr<LIB_SYMBOL> newCachedSymbol = std::make_unique<LIB_SYMBOL>( libSymbol );
1066 std::shared_ptr<LIB_SYMBOL> bufferedParent = libSymbol.
GetParent().lock();
1068 wxCHECK( bufferedParent,
false );
1075 cachedParent = aPlugin->
LoadSymbol( aFileName, bufferedParent->GetName() );
1086 std::unique_ptr<LIB_SYMBOL> newParent = std::make_unique<LIB_SYMBOL>( *bufferedParent );
1087 newCachedSymbol->SetParent( newParent.get() );
1089 const wxString cachedParentName = newParent->GetName();
1093 aPlugin->
SaveSymbol( aFileName, std::move( newParent ), aBuffer ? &properties :
nullptr );
1097 wxLogError( errorMsg,
UnescapeString( cachedParentName ), aFileName,
1102 const wxString newCachedSymbolName = newCachedSymbol->GetName();
1106 aPlugin->
SaveSymbol( aFileName, std::move( newCachedSymbol ), aBuffer ? &properties :
nullptr );
1110 wxLogError( errorMsg,
UnescapeString( newCachedSymbolName ), aFileName,
1115 auto originalParent = std::make_unique<LIB_SYMBOL>( *bufferedParent.get() );
1117 aSymbolBuf.
SetOriginal( std::move( originalParent ) );
1119 auto newSymbol = std::make_unique<LIB_SYMBOL>( libSymbol );
1120 newSymbol->SetParent( &parentRef );
1134 for(
const auto& [
name, file] : bufferedParent->EmbeddedFileMap() )
1140 newCachedSymbol->SetParent( cachedParent );
1142 const wxString newCachedSymbolName = newCachedSymbol->GetName();
1146 aPlugin->
SaveSymbol( aFileName, std::move( newCachedSymbol ), aBuffer ? &properties :
nullptr );
1150 wxLogError( errorMsg,
UnescapeString( newCachedSymbolName ), aFileName,
1155 auto originalBufferedParent =
GetBuffer( bufferedParent->GetName() );
1156 wxCHECK( originalBufferedParent,
false );
1158 auto newSymbol = std::make_unique<LIB_SYMBOL>( libSymbol );
1159 newSymbol->SetParent( &originalBufferedParent->GetSymbol() );
1165 std::unique_ptr<LIB_SYMBOL> newSymbol = std::make_unique<LIB_SYMBOL>( libSymbol );
1169 aPlugin->
SaveSymbol( aFileName, std::move( newSymbol ), aBuffer ? &properties :
nullptr );
1177 aSymbolBuf.
SetOriginal( std::make_unique<LIB_SYMBOL>( libSymbol ) );
1180 wxArrayString derivedSymbols;
1188 aBuffer ? &properties :
nullptr );
1190 wxCHECK_MSG( parentSymbol,
false,
1191 wxS(
"Failed to borrow the saved symbol back from the plugin cache." ) );
1194 for(
const wxString& entry : derivedSymbols )
1196 std::shared_ptr<SYMBOL_BUFFER> symbol =
GetBuffer( entry );
1198 wxCHECK2( symbol,
continue );
1200 std::unique_ptr<LIB_SYMBOL> derivedSymbol =
1201 std::make_unique<LIB_SYMBOL>( symbol->GetSymbol() );
1203 derivedSymbol->SetParent( parentSymbol );
1205 const wxString derivedSymbolName = derivedSymbol->GetName();
1209 aPlugin->
SaveSymbol( aFileName, std::move( derivedSymbol ),
1210 aBuffer ? &properties :
nullptr );
1214 wxLogError( errorMsg,
UnescapeString( derivedSymbolName ), aFileName,
1228 for( std::shared_ptr<SYMBOL_BUFFER> entry :
m_symbols )
1230 if( entry->GetSymbol().GetName() == aSymbolName )
1234 return std::shared_ptr<SYMBOL_BUFFER>(
nullptr );
1243 return parent ? parent->GetName() : wxString();
1249 wxCHECK( !aParentName.IsEmpty(),
false );
1251 for(
const std::shared_ptr<SYMBOL_BUFFER>& entry :
m_symbols )
1263 for( std::shared_ptr<SYMBOL_BUFFER>& entry :
m_symbols )
1265 const LIB_SYMBOL& symbol = entry->GetSymbol();
1278 wxCHECK( !aSymbolName.IsEmpty(), 0 );
1282 std::unordered_map<wxString, std::vector<wxString>> derivedMap;
1285 for(
const std::shared_ptr<SYMBOL_BUFFER>& entry :
m_symbols )
1289 if( !parentName.IsEmpty() )
1290 derivedMap[parentName].emplace_back( entry->GetSymbol().GetName() );
1295 std::set<wxString> visited{ aSymbolName };
1298 const std::function<void(
const wxString& )> getDerived =
1299 [&](
const wxString& aParentName )
1301 auto it = derivedMap.find( aParentName );
1303 if( it != derivedMap.end() )
1305 for(
const wxString& derivedName : it->second )
1307 if( !visited.insert( derivedName ).second )
1310 aList.Add( derivedName );
1313 getDerived( derivedName );
1319 getDerived( aSymbolName );
1321 return aList.GetCount();
1328 wxArrayString derivedSymbolNames;
1329 std::deque<std::shared_ptr<SYMBOL_BUFFER>>::iterator it;
1333 for(
const wxString& symbolName : derivedSymbolNames )
1336 [symbolName]( std::shared_ptr<SYMBOL_BUFFER>& buf )
1338 return buf->GetSymbol().GetName() == symbolName;
1341 wxCHECK2( it !=
m_symbols.end(),
continue );
void SetContentModified(bool aModified=true)
void SetFileAddedCallback(FILE_ADDED_CALLBACK callback)
void ClearEmbeddedFiles(bool aDeleteFiles=true)
EMBEDDED_FILE * AddFile(const wxFileName &aName, bool aOverwrite)
Load a file from disk and adds it to the collection.
const std::map< wxString, std::shared_ptr< EMBEDDED_FILE > > & EmbeddedFileMap() const
Provide an iterable view of the file collection.
void SetAreFontsEmbedded(bool aEmbedFonts)
FILE_ADDED_CALLBACK GetFileAddedCallback() const
bool GetAreFontsEmbedded() const
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()
bool IsLibraryLoaded(const wxString &aNickname)
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)
bool CreateLibrary(const wxString &aNickname)
Creates the library (i.e. saves to disk) for the given row if it exists.
std::optional< LIBRARY_TABLE * > Table(LIBRARY_TABLE_TYPE aType, LIBRARY_TABLE_SCOPE aScope)
Retrieves a given table; creating a new empty project table if a valid project is loaded and the give...
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...
std::vector< LIBRARY_TABLE_ROW * > Rows(LIBRARY_TABLE_TYPE aType, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH, bool aIncludeInvalid=false) const
Returns a flattened list of libraries of the given type.
void SetNickname(const wxString &aNickname)
void SetType(const wxString &aType)
void SetURI(const wxString &aUri)
Store a working copy of a library.
bool CreateBuffer(std::unique_ptr< LIB_SYMBOL > aCopy, std::unique_ptr< SCH_SCREEN > aScreen)
Create a new buffer to store a symbol. LIB_BUFFER takes ownership of aCopy.
bool DeleteBuffer(const SYMBOL_BUFFER &aSymbolBuf)
Delete the given symbol buffer from the library buffer.
void ClearDeletedBuffer()
void GetSymbolNames(wxArrayString &aSymbolNames, SYMBOL_NAME_FILTER aFilter=SYMBOL_NAME_FILTER::ALL)
Fetch a list of root symbols names from the library buffer.
const std::deque< std::shared_ptr< SYMBOL_BUFFER > > & GetDeletedBuffers() const
Return the deleted symbol buffers that need to be removed from the library file.
size_t GetDerivedSymbolNames(const wxString &aSymbolName, wxArrayString &aList) const
Fetch all of the symbols derived from a aSymbolName into aList.
std::deque< std::shared_ptr< SYMBOL_BUFFER > > m_symbols
std::deque< std::shared_ptr< SYMBOL_BUFFER > > m_deleted
Buffer for deleted symbols until library is saved.
bool SaveBuffer(SYMBOL_BUFFER &aSymbolBuf, const wxString &aFileName, SCH_IO *aPlugin, bool aBuffer)
Save stored modifications using a plugin.
const std::deque< std::shared_ptr< SYMBOL_BUFFER > > & GetBuffers() const
Return all buffered symbols.
std::shared_ptr< SYMBOL_BUFFER > GetBuffer(const wxString &aAlias) const
Return a symbol buffer with LIB_SYMBOL holding a symbolic alias.
LIB_SYMBOL * GetSymbol(const wxString &aAlias) const
Return the working copy of a LIB_SYMBOL root object with specified alias.
int removeChildSymbols(const SYMBOL_BUFFER &aSymbolBuf)
Remove all symbols derived from aParent from the library buffer.
bool HasDerivedSymbols(const wxString &aParentName) const
Check to see any symbols in the buffer are derived from a parent named aParentName.
bool UpdateBuffer(SYMBOL_BUFFER &aSymbolBuf, const LIB_SYMBOL &aCopy)
Update the buffered symbol with the contents of aCopy.
const wxString m_libName
Buffered library name.
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
Define a library symbol object.
const LIB_ID & GetLibId() const override
std::weak_ptr< LIB_SYMBOL > & GetParent()
bool IsRoot() const override
For symbols derived from other symbols, IsRoot() indicates no derivation.
wxString GetName() const override
void SetLibId(const LIB_ID &aLibId)
virtual LIBRARY_MANAGER & GetLibraryManager() const
static SYMBOL_LIBRARY_ADAPTER * SymbolLibAdapter(PROJECT *aProject)
Accessor for project symbol library manager adapter.
A shim class between EDA_DRAW_FRAME and several derived classes: SYMBOL_EDIT_FRAME,...
static const char * PropBuffering
The property used internally by the plugin to enable cache buffering which prevents the library file ...
static const wxString ShowType(SCH_FILE_T aFileType)
Return a brief name for a plugin, given aFileType enum.
static SCH_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
Return a plugin type given a symbol library using the file extension of aLibPath.
Base class that schematic file and library loading and saving plugins should derive from.
virtual void DeleteSymbol(const wxString &aLibraryPath, const wxString &aSymbolName, const std::map< std::string, UTF8 > *aProperties=nullptr)
Delete the entire LIB_SYMBOL associated with aAliasName from the library aLibraryPath.
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 void SaveSymbol(const wxString &aLibraryPath, std::unique_ptr< LIB_SYMBOL > aSymbol, const std::map< std::string, UTF8 > *aProperties=nullptr)
Write aSymbol to an existing library located at aLibraryPath.
std::unique_ptr< LIB_SYMBOL > m_symbol
std::unique_ptr< SCH_SCREEN > m_screen
void SetSymbol(std::unique_ptr< LIB_SYMBOL > aSymbol)
LIB_SYMBOL & GetSymbol() const
SYMBOL_BUFFER(std::unique_ptr< LIB_SYMBOL > aSymbol=nullptr, std::unique_ptr< SCH_SCREEN > aScreen=nullptr)
std::unique_ptr< LIB_SYMBOL > m_original
LIB_SYMBOL & GetOriginal() const
void SetOriginal(std::unique_ptr< LIB_SYMBOL > aSymbol)
An interface to the global shared library manager that is schematic-specific and linked to one projec...
std::optional< LIB_STATUS > LoadOne(LIB_DATA *aLib) override
Loads or reloads the given library, if it exists.
LIB_SYMBOL * LoadSymbol(const wxString &aNickname, const wxString &aName)
Load a LIB_SYMBOL having aName from the library given by aNickname.
int GetModifyHash() const
std::vector< LIB_SYMBOL * > GetSymbols(const wxString &aNickname, SYMBOL_TYPE aType=SYMBOL_TYPE::ALL_SYMBOLS)
bool IsSymbolLibWritable(const wxString &aNickname)
Return true if the library given by aNickname is writable.
bool IsLibraryReadOnly(const wxString &aLibrary) const
Return true if the library is stored in a read-only file.
SYMBOL_BUFFER * GetBuffer(const wxString &aSymbolName, const wxString &aLibrary)
Return the working buffer holding the symbol/screen pair, or nullptr when none exists.
bool LibraryExists(const wxString &aLibrary, bool aCheckEnabled=false) const
Return true if library exists.
size_t GetLibraryCount() const
bool ClearLibraryModified(const wxString &aLibrary) const
Clear the modified flag for all symbols in a library.
LIB_SYMBOL * GetBufferedSymbol(const wxString &aSymbolName, const wxString &aLibrary)
Return the symbol copy from the buffer.
bool ClearSymbolModified(const wxString &aSymbolName, const wxString &aLibrary) const
Clear the modified flag for a symbol.
bool addLibrary(const wxString &aFilePath, bool aCreate, LIBRARY_TABLE_SCOPE aScope)
Helper function to add either existing or create new library.
SCH_SCREEN * GetScreen(const wxString &aSymbolName, const wxString &aLibrary)
Return the screen used to edit a specific symbol.
bool SymbolNameInUse(const wxString &aName, const wxString &aLibrary)
Return true if the symbol name is already in use in the specified library.
bool IsLibraryModified(const wxString &aLibrary) const
Return true if library has unsaved modifications.
LIB_SYMBOL * GetSymbol(const wxString &aSymbolName, const wxString &aLibrary) const
Return either an alias of a working LIB_SYMBOL copy, or alias of the original symbol if there is no w...
bool RemoveSymbol(const wxString &aSymbolName, const wxString &aLibrary)
Remove the symbol from the symbol buffer.
wxArrayString GetLibraryNames() const
Return the array of library names.
LIB_BUFFER & getLibraryBuffer(const wxString &aLibrary)
Return an existing library buffer or creates one to using symbol library table to get the original da...
wxString GetUniqueLibraryName() const
Return a library name that is not currently in use.
bool HasModifications() const
static wxString getLibraryName(const wxString &aFilePath)
Extract library name basing on the file name.
bool UpdateSymbolAfterRename(LIB_SYMBOL *aSymbol, const wxString &aOldSymbolName, const wxString &aLibrary)
Update the symbol buffer with a new version of the symbol when the name has changed.
bool IsSymbolModified(const wxString &aSymbolName, const wxString &aLibrary) const
Return true if symbol has unsaved modifications.
virtual void OnDataChanged() const
bool IsLibraryLoaded(const wxString &aLibrary) const
Return true if the library was successfully loaded.
void SetSymbolModified(const wxString &aSymbolName, const wxString &aLibrary)
virtual ~SYMBOL_LIBRARY_MANAGER()
bool RevertLibrary(const wxString &aLibrary)
Revert unsaved changes for a symbol library.
LIB_ID RevertSymbol(const wxString &aSymbolName, const wxString &aLibrary)
Revert unsaved changes for a symbol.
void GetSymbolNames(const wxString &aLibName, wxArrayString &aSymbolNames, SYMBOL_NAME_FILTER aFilter=SYMBOL_NAME_FILTER::ALL)
std::set< LIB_SYMBOL * > getOriginalSymbols(const wxString &aLibrary)
Return a set of LIB_SYMBOL objects belonging to the original library.
int GetLibraryHash(const wxString &aLibrary) const
Return a library hash value to determine if it has changed.
size_t GetDerivedSymbolNames(const wxString &aSymbolName, const wxString &aLibraryName, wxArrayString &aList)
Fetch all of the symbols derived from a aSymbolName into aList.
bool RevertAll()
Revert all pending changes.
SYMBOL_LIBRARY_MANAGER(SCH_BASE_FRAME &aFrame)
bool SymbolExists(const wxString &aSymbolName, const wxString &aLibrary) const
Return true if symbol with a specific alias exists in library (either original one or buffered).
SCH_BASE_FRAME & m_frame
Parent frame.
std::list< LIB_SYMBOL * > EnumerateSymbols(const wxString &aLibrary) const
bool UpdateSymbol(LIB_SYMBOL *aSymbol, const wxString &aLibrary)
Update the symbol buffer with a new version of the symbol.
bool SaveLibrary(const wxString &aLibrary, const wxString &aFileName, SCH_IO_MGR::SCH_FILE_T aFileType=SCH_IO_MGR::SCH_FILE_T::SCH_LEGACY)
Save library to a file, including unsaved changes.
bool HasDerivedSymbols(const wxString &aSymbolName, const wxString &aLibraryName)
Check whether any symbol inherits from aSymbolName, without building the list of names.
std::map< wxString, LIB_BUFFER > m_libs
The library buffers.
bool UpdateLibraryBuffer(const wxString &aLibrary)
Update the library buffer with a new version of the library.
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
This file is part of the common library.
wxString NormalizePath(const wxFileName &aFilePath, const ENV_VAR_MAP *aEnvVars, const wxString &aProjectPath)
Normalize a file path to an environmental variable, if possible.
Helper functions to substitute paths with environmental variables.
static const std::string KiCadSymbolLibFileExtension
std::unique_ptr< T > IO_RELEASER
Helper to hold and release an IO_BASE object when exceptions are thrown.
#define THROW_IO_ERROR(msg)
macro which captures the "call site" values of FILE_, __FUNCTION & LINE
#define KICTL_CREATE
caller thinks requested project files may not exist.
PGM_BASE & Pgm()
The global program "get" accessor.
int StrNumCmp(const wxString &aString1, const wxString &aString2, bool aIgnoreCase)
Compare two strings with alphanumerical content.
wxString UnescapeString(const wxString &aSource)
static wxString getParentName(const SYMBOL_BUFFER &aSymbolBuf)
Name of the parent a buffered symbol inherits from, or empty if it is a root symbol.
Definition of file extensions used in Kicad.
#define FN_NORMALIZE_FLAGS
Default flags to pass to wxFileName::Normalize().