28#include <lib_table_lexer.h>
56using namespace LIB_TABLE_T;
80 wxArrayString dummyList;
108 if( in->CurTok() != T_design_block_lib_table )
112 if( ( tok = in->NextTok() ) != T_design_block_lib_table )
113 in->Expecting( T_design_block_lib_table );
116 while( ( tok = in->NextTok() ) != T_RIGHT )
118 std::unique_ptr<DESIGN_BLOCK_LIB_TABLE_ROW> row =
119 std::make_unique<DESIGN_BLOCK_LIB_TABLE_ROW>();
122 in->Expecting( T_RIGHT );
125 in->Expecting( T_LEFT );
128 int lineNum = in->CurLineNumber();
132 if( tok == T_version )
134 in->NeedNUMBER(
"version" );
141 in->Expecting( T_lib );
146 if( ( tok = in->NextTok() ) != T_name )
147 in->Expecting( T_name );
149 in->NeedSYMBOLorNUMBER();
151 row->SetNickName( in->FromUTF8() );
157 bool sawType =
false;
158 bool sawOpts =
false;
159 bool sawDesc =
false;
161 bool sawDisabled =
false;
163 while( ( tok = in->NextTok() ) != T_RIGHT )
166 in->Unexpected( T_EOF );
169 in->Expecting( T_LEFT );
171 tok = in->NeedSYMBOLorNUMBER();
177 in->Duplicate( tok );
180 in->NeedSYMBOLorNUMBER();
181 row->SetFullURI( in->FromUTF8() );
186 in->Duplicate( tok );
189 in->NeedSYMBOLorNUMBER();
190 row->SetType( in->FromUTF8() );
195 in->Duplicate( tok );
198 in->NeedSYMBOLorNUMBER();
199 row->SetOptions( in->FromUTF8() );
204 in->Duplicate( tok );
207 in->NeedSYMBOLorNUMBER();
208 row->SetDescr( in->FromUTF8() );
213 in->Duplicate( tok );
216 row->SetEnabled(
false );
226 in->Unexpected( tok );
233 in->Expecting( T_type );
236 in->Expecting( T_uri );
241 wxString nickname = row->GetNickName();
243 bool doReplace =
false;
250 wxString msg = wxString::Format(
_(
"Duplicate library nickname '%s' found in "
251 "design block library table file line %d." ),
254 if( !errMsg.IsEmpty() )
261 if( !errMsg.IsEmpty() )
270 for(
unsigned i = 0; i <
m_rows.size(); ++i )
288 aOutput->
Print( aIndentLevel,
"(design_block_lib_table\n" );
292 row.Format( aOutput, aIndentLevel + 1 );
294 aOutput->
Print( aIndentLevel,
")\n" );
306 wxCHECK( row && row->
plugin, hash );
309 + wxHashTable::MakeKey( *aNickname );
318 row =
FindRow( nickname,
true );
325 wxCHECK2( row && row->
plugin,
continue );
328 + wxHashTable::MakeKey( nickname );
336 const wxString& aNickname,
bool aBestEfforts )
340 row->
plugin->DesignBlockEnumerate( aDesignBlockNames, row->
GetFullURI(
true ), aBestEfforts,
346 bool aCheckIfEnabled )
353 THROW_IO_ERROR( wxString::Format(
_(
"design-block-lib-table files contain no library "
366 const wxString& aDesignBlockName )
392 const wxString& aDesignBlockName )
397 return row->
plugin->GetEnumeratedDesignBlock( row->
GetFullURI(
true ), aDesignBlockName,
403 const wxString& aDesignBlockName )
410 return row->
plugin->DesignBlockExists( row->
GetFullURI(
true ), aDesignBlockName,
421 const wxString& aDesignBlockName,
450 std::unique_ptr<DESIGN_BLOCK> design_block( row->
plugin->DesignBlockLoad(
453 if( design_block.get() )
464 const wxString& aDesignBlockName )
469 return row->
plugin->DesignBlockDelete( row->
GetFullURI(
true ), aDesignBlockName,
505 if( nickname.size() )
539 const wxString& aPrefix ) :
544 wxFileName f( aPath, wxS(
"" ) );
548 wxDirTraverseResult
OnFile(
const wxString& aFilePath )
override {
return wxDIR_CONTINUE; }
550 wxDirTraverseResult
OnDir(
const wxString& dirPath )
override
552 wxFileName dir = wxFileName::DirName( dirPath );
557 if( dirPath.EndsWith( wxString::Format( wxS(
".%s" ),
561 wxString versionedPath;
562 versionedPath.Printf( wxS(
"${%s}" ),
565 wxArrayString parts = dir.GetDirs();
567 parts.Insert( versionedPath, 0 );
569 wxString libPath = wxJoin( parts,
'/' );
573 wxString
name = parts.Last().substr( 0, parts.Last().length() - 7 );
575 nickname.Printf( wxS(
"%s%s" ),
585 nickname.Printf( wxS(
"%s%s_%d" ),
593 nickname, libPath, wxT(
"KiCad" ), wxEmptyString,
594 _(
"Added by Plugin and Content Manager" ) ) );
598 return wxDIR_CONTINUE;
611 bool tableExists =
true;
614 if( !fn.FileExists() )
618 if( !fn.DirExists() && !fn.Mkdir( 0x777, wxPATH_MKDIR_FULL ) )
620 THROW_IO_ERROR( wxString::Format(
_(
"Cannot create global library table path '%s'." ),
632 wxT(
"TEMPLATE_DIR" ) );
634 if( v && !v->IsEmpty() )
640 if( fileName.IsEmpty() || !::wxCopyFile( fileName, fn.GetFullPath(),
false ) )
644 emptyTable.
Save( fn.GetFullPath() );
649 aTable.
Load( fn.GetFullPath() );
655 wxString packagesPath;
664 wxFileName d( packagesPath, wxS(
"" ) );
665 d.AppendDir( wxS(
"design_blocks" ) );
671 wxDir dir( d.GetPath() );
673 dir.Traverse( traverser );
680 std::vector<wxString> to_remove;
682 for(
size_t i = 0; i < aTable.
GetCount(); i++ )
687 if(
path.StartsWith( packagesPath ) && !wxDir::Exists(
path ) )
691 for(
const wxString& nickName : to_remove )
718 return fn.GetFullPath();
@ KICAD_SEXP
S-expression KiCad file format.
static DESIGN_BLOCK_FILE_T EnumFromStr(const wxString &aFileType)
static DESIGN_BLOCK_IO * FindPlugin(DESIGN_BLOCK_FILE_T aFileType)
Hold a record identifying a library accessed by the appropriate design block library #PLUGIN object i...
void SetType(const wxString &aType) override
Change the type represented by this row.
void setPlugin(DESIGN_BLOCK_IO *aPlugin)
DESIGN_BLOCK_IO_MGR::DESIGN_BLOCK_FILE_T type
IO_RELEASER< DESIGN_BLOCK_IO > plugin
bool Refresh() override
Attempt to reload the library.
bool operator==(const DESIGN_BLOCK_LIB_TABLE_ROW &aRow) const
void DesignBlockLibDelete(const wxString &aNickname)
bool operator==(const DESIGN_BLOCK_LIB_TABLE &aFpTable) const
long long GenerateTimestamp(const wxString *aNickname)
Generate a hashed timestamp representing the last-mod-times of the library indicated by aNickname,...
static wxString GetGlobalTableFileName()
const DESIGN_BLOCK * GetEnumeratedDesignBlock(const wxString &aNickname, const wxString &aDesignBlockName)
A version of DesignBlockLoad() for use after DesignBlockEnumerate() for more efficient cache manageme...
bool IsDesignBlockLibWritable(const wxString &aNickname)
Return true if the library given by aNickname is writable.
void DesignBlockDelete(const wxString &aNickname, const wxString &aDesignBlockName)
Delete the aDesignBlockName from the library given by aNickname.
void DesignBlockLibCreate(const wxString &aNickname)
DESIGN_BLOCK * DesignBlockLoad(const wxString &aNickname, const wxString &aDesignBlockName, bool aKeepUUID=false)
Load a design block having aDesignBlockName from the library given by aNickname.
virtual void Parse(LIB_TABLE_LEXER *aLexer) override
Parse the #LIB_TABLE_LEXER s-expression library table format into the appropriate LIB_TABLE_ROW objec...
SAVE_T
The set of return values from DesignBlockSave() below.
DESIGN_BLOCK_LIB_TABLE(DESIGN_BLOCK_LIB_TABLE *aFallBackTable=nullptr)
Build a design block library table by pre-pending this table fragment in front of aFallBackTable.
SAVE_T DesignBlockSave(const wxString &aNickname, const DESIGN_BLOCK *aDesignBlock, bool aOverwrite=true)
Write aDesignBlock to an existing library given by aNickname.
DESIGN_BLOCK * DesignBlockLoadWithOptionalNickname(const LIB_ID &aDesignBlockId, bool aKeepUUID=false)
Load a design block having aDesignBlockId with possibly an empty nickname.
bool DesignBlockExists(const wxString &aNickname, const wxString &aDesignBlockName)
Indicates whether or not the given design block already exists in the given library.
static DESIGN_BLOCK_LIST_IMPL & GetGlobalList()
static bool LoadGlobalTable(DESIGN_BLOCK_LIB_TABLE &aTable)
Load the global design block library table into aTable.
const DESIGN_BLOCK_LIB_TABLE_ROW * FindRow(const wxString &aNickName, bool aCheckIfEnabled=false)
Return an DESIGN_BLOCK_LIB_TABLE_ROW if aNickName is found in this table or in any chained fall back ...
void DesignBlockEnumerate(wxArrayString &aDesignBlockNames, const wxString &aNickname, bool aBestEfforts)
Return a list of design block names contained within the library given by aNickname.
static const wxString GlobalPathEnvVariableName()
Return the name of the environment variable used to hold the directory of locally installed "KiCad sp...
static DESIGN_BLOCK_LIB_TABLE & GetGlobalLibTable()
virtual void Format(OUTPUTFORMATTER *aOutput, int aIndentLevel) const override
Generate the table in s-expression format to aOutput with an indentation level of aIndentLevel.
const LIB_ID & GetLibId() 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.
Hold a record identifying a library accessed by the appropriate plug in object in the LIB_TABLE.
const std::map< std::string, UTF8 > * GetProperties() const
Return the constant #PROPERTIES for this library (LIB_TABLE_ROW).
void SetLoaded(bool aLoaded)
Mark the row as being a loaded library.
const wxString & GetNickName() const
const wxString GetFullURI(bool aSubstituted=false) const
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
bool operator==(const LIB_TABLE_ROW &r) const
Manage LIB_TABLE_ROW records (rows), and can be searched based on library nickname.
std::vector< wxString > GetLogicalLibs()
Return the logical library names, all of them that are pertinent to a look up done on this LIB_TABLE.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library table.
int m_version
Versioning to handle importing old tables.
LIB_TABLE_ROW & At(unsigned aIndex)
Get the 'n'th LIB_TABLE_ROW object.
bool InsertRow(LIB_TABLE_ROW *aRow, bool doReplace=false)
Adds aRow if it does not already exist or if doReplace is true.
LIB_TABLE_ROWS m_rows
Owning set of rows.
bool doInsertRow(LIB_TABLE_ROW *aRow, bool doReplace=false)
Performs the mechanics of inserting a row, but without locking or reindexing.
void Load(const wxString &aFileName)
Load the library table using the path defined by aFileName aFallBackTable.
bool HasLibraryWithPath(const wxString &aPath) const
Test for the existence of aPath in the library table.
bool RemoveRow(const LIB_TABLE_ROW *aRow)
Removes a row from the table and frees the pointer.
unsigned GetCount() const
Get the number of rows contained in the table.
void Save(const wxString &aFileName) const
Write this library table to aFileName in s-expression form.
LIB_TABLE_ROW * findRow(const wxString &aNickname, bool aCheckIfEnabled=false) const
Return a LIB_TABLE_ROW if aNickname is found in this table or in any chained fallBack table fragment,...
static wxString GetUserSettingsPath()
Return the user configuration path used to store KiCad's configuration files.
PCM_DESIGN_BLOCK_LIB_TRAVERSER(const wxString &aPath, DESIGN_BLOCK_LIB_TABLE &aTable, const wxString &aPrefix)
wxDirTraverseResult OnFile(const wxString &aFilePath) override
wxDirTraverseResult OnDir(const wxString &dirPath) override
DESIGN_BLOCK_LIB_TABLE & m_lib_table
size_t m_prefix_dir_count
virtual ENV_VAR_MAP & GetLocalEnvVariables() const
virtual SETTINGS_MANAGER & GetSettingsManager() const
Look for files in a number of paths.
void AddPaths(const wxString &aPaths, int aIndex=-1)
Insert or append path(s).
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
std::string::size_type size() const
static void setLibNickname(DESIGN_BLOCK *aModule, const wxString &aNickname, const wxString &aDesignBlockName)
DESIGN_BLOCK_LIB_TABLE GDesignBlockTable
The global design block library table.
DESIGN_BLOCK_LIST_IMPL GDesignBlockList
The global footprint info table.
Functions related to environment variables, including help functions.
static const std::string KiCadDesignBlockLibPathExtension
static const std::string DesignBlockLibraryTableFileName
std::map< wxString, ENV_VAR_ITEM > ENV_VAR_MAP
#define THROW_IO_ERROR(msg)
KICOMMON_API std::optional< wxString > GetVersionedEnvVarValue(const std::map< wxString, ENV_VAR_ITEM > &aMap, const wxString &aBaseName)
Attempt to retrieve the value of a versioned environment variable, such as KICAD8_TEMPLATE_DIR.
KICOMMON_API wxString GetVersionedEnvVarName(const wxString &aBaseName)
Construct a versioned environment variable based on this KiCad major version.
PGM_BASE & Pgm()
The global program "get" accessor.
void SystemDirsAppend(SEARCH_STACK *aSearchStack)
Append system places to aSearchStack in a platform specific way and pertinent to KiCad programs.
System directories search utilities.
Definition of file extensions used in Kicad.