28#include <wx/filename.h>
30#include <wx/translation.h>
33#include <wx/datetime.h>
52 default:
return wxString::Format( wxT(
"UNKNOWN (%d)" ), aFileType );
60 if( aFileType.CmpNoCase( wxT(
"KiCad" ) ) == 0 )
64 else if( aFileType ==
_(
"KiCad" ) )
80 default:
return nullptr;
90 if( parser.
Parse( aLibPath.ToStdString() ).has_value() )
104 const wxString& aOldFilePath,
105 const wxString& aNewFilePath )
121 if( !oldFilePI || !kicadPI )
124 wxArrayString dbNames;
125 wxFileName newFileName( aNewFilePath );
127 if( newFileName.HasExt() )
129 wxString extraDir = newFileName.GetFullName();
130 newFileName.ClearExt();
131 newFileName.SetName(
"" );
132 newFileName.AppendDir( extraDir );
135 if( !newFileName.DirExists() && !wxFileName::Mkdir( aNewFilePath, wxS_DIR_DEFAULT ) )
140 bool bestEfforts =
false;
141 oldFilePI->DesignBlockEnumerate( dbNames, aOldFilePath, bestEfforts, aOldFileProps );
143 for(
const wxString& dbName : dbNames )
145 std::unique_ptr<const DESIGN_BLOCK> db( oldFilePI->GetEnumeratedDesignBlock( aOldFilePath, dbName,
147 kicadPI->DesignBlockSave( aNewFilePath, db.get() );
168 wxDir libDir( aLibraryPath );
170 if( !libDir.IsOpened() )
176 bool hasMoreFiles = libDir.GetFirst( &filename, wxEmptyString, wxDIR_DIRS );
178 while( hasMoreFiles )
180 wxFileName blockDir( aLibraryPath, filename );
186 hasMoreFiles = libDir.GetNext( &filename );
194 const std::map<std::string, UTF8>* aProperties )
196 if( wxDir::Exists( aLibraryPath ) )
197 THROW_IO_ERRORF(
_(
"Cannot overwrite library path '%s'." ), aLibraryPath.GetData() );
200 dir.SetPath( aLibraryPath );
205 "Make sure you have write permissions and try again." ), dir.GetPath() );
211 const std::map<std::string, UTF8>* aProperties )
214 fn.SetPath( aLibraryPath );
217 if( !fn.DirExists() )
220 if( !fn.IsDirWritable() )
221 THROW_IO_ERRORF(
_(
"Insufficient permissions to delete folder '%s'." ), aLibraryPath.GetData() );
223 wxDir dir( aLibraryPath );
227 THROW_IO_ERRORF(
_(
"Library folder '%s' has unexpected files." ), aLibraryPath.GetData() );
230 if( dir.HasSubDirs() )
237 for(
size_t i = 0; i < dirs.GetCount(); i++ )
239 wxFileName tmp = dirs[i];
245 aLibraryPath.GetData() );
249 for(
size_t i = 0; i < dirs.GetCount(); i++ )
250 wxRemoveFile( dirs[i] );
253 wxLogTrace(
traceDesignBlocks, wxT(
"Removing design block library '%s'." ), aLibraryPath.GetData() );
257 if( !wxFileName::Rmdir( aLibraryPath, wxPATH_RMDIR_RECURSIVE ) )
258 THROW_IO_ERRORF(
_(
"Design block library '%s' cannot be deleted." ), aLibraryPath.GetData() );
264 wxMilliSleep( 250L );
272 const wxString& aLibraryPath,
bool aBestEfforts,
273 const std::map<std::string, UTF8>* aProperties )
276 wxDir dir( aLibraryPath );
278 if( !dir.IsOpened() )
283 bool cont = dir.GetFirst( &dirname, fileSpec, wxDIR_DIRS );
287 aDesignBlockNames.Add( dirname.Before( wxT(
'.' ) ) );
288 cont = dir.GetNext( &dirname );
294 const wxString& aDesignBlockName,
bool aKeepUUID,
295 const std::map<std::string, UTF8>* aProperties )
297 wxString dbPath = aLibraryPath + wxFileName::GetPathSeparator() + aDesignBlockName + wxT(
"." )
299 wxString dbSchPath = dbPath + aDesignBlockName + wxT(
"." )
304 if( !wxDir::Exists( dbPath ) )
313 if( wxFileExists( dbSchPath ) )
316 if( wxFileExists( dbPcbPath ) )
320 if( wxFileExists( dbMetadataPath ) )
324 nlohmann::ordered_json dbMetadata;
325 std::ifstream dbMetadataFile( dbMetadataPath.fn_str() );
327 dbMetadataFile >> dbMetadata;
329 if( dbMetadata.contains(
"description" ) )
332 if( dbMetadata.contains(
"keywords" ) )
333 newDB->
SetKeywords( dbMetadata[
"keywords"].get<std::string>() );
336 if( dbMetadata.contains(
"fields" ) )
338 for(
auto& item : dbMetadata[
"fields"].items() )
340 wxString
name = wxString::FromUTF8( item.key() );
341 wxString value = wxString::FromUTF8( item.value().get<std::string>() );
350 THROW_IO_ERRORF(
_(
"Design block metadata file '%s' could not be read." ), dbMetadataPath );
359 const wxString& aDesignBlockName,
360 const std::map<std::string, UTF8>* aProperties )
362 wxString dbPath = aLibraryPath + wxFileName::GetPathSeparator() + aDesignBlockName + wxT(
"." )
365 return wxDir::Exists( dbPath );
371 const std::map<std::string, UTF8>* aProperties )
375 THROW_IO_ERROR(
_(
"Design block does not have a valid library ID." ) );
378 THROW_IO_ERROR(
_(
"Design block does not have a schematic or board file." ) );
383 if( !aDesignBlock->
GetSchematicFile().IsEmpty() && !schematicFile.FileExists() )
384 THROW_IO_ERRORF(
_(
"Schematic source file '%s' does not exist." ), schematicFile.GetFullPath() );
386 if( !aDesignBlock->
GetBoardFile().IsEmpty() && !boardFile.FileExists() )
387 THROW_IO_ERRORF(
_(
"Board source file '%s' does not exist." ), boardFile.GetFullPath() );
390 wxFileName dbFolder( aLibraryPath + wxFileName::GetPathSeparator()
393 + wxFileName::GetPathSeparator() );
395 if( !dbFolder.DirExists() )
397 if( !dbFolder.Mkdir() )
398 THROW_IO_ERRORF(
_(
"Design block folder '%s' could not be created." ), dbFolder.GetFullPath().GetData() );
404 wxString dbSchematicFile = dbFolder.GetFullPath() + aDesignBlock->
GetLibId().
GetLibItemName() + wxT(
"." )
409 if( schematicFile.GetFullPath() != dbSchematicFile )
412 if( !wxCopyFile( schematicFile.GetFullPath(), dbSchematicFile ) )
414 THROW_IO_ERRORF(
_(
"Schematic file '%s' could not be saved as design block at '%s'." ),
415 schematicFile.GetFullPath(),
429 if( boardFile.GetFullPath() != dbBoardFile )
432 if( !wxCopyFile( boardFile.GetFullPath(), dbBoardFile ) )
434 THROW_IO_ERRORF(
_(
"Board file '%s' could not be saved as design block at '%s'." ),
435 boardFile.GetFullPath(),
445 nlohmann::ordered_json dbMetadata;
447 dbMetadata[
"keywords"] = aDesignBlock->
GetKeywords();
448 dbMetadata[
"fields"] = aDesignBlock->
GetFields();
450 bool success =
false;
454 std::string payload = dbMetadata.dump( 0 );
459 wxLogError(
_(
"Cannot save design block metadata '%s': %s" ), dbMetadataFile, writeError );
467 THROW_IO_ERRORF(
_(
"Design block metadata file '%s' could not be saved." ), dbMetadataFile );
472 const std::map<std::string, UTF8>* aProperties )
474 wxFileName dbDir = wxFileName( aLibPath + wxFileName::GetPathSeparator() + aDesignBlockName
477 if( !dbDir.DirExists() )
478 THROW_IO_ERRORF(
_(
"Design block '%s' does not exist." ), dbDir.GetFullName() );
481 if( !wxFileName::Rmdir( dbDir.GetFullPath(), wxPATH_RMDIR_RECURSIVE ) )
482 THROW_IO_ERRORF(
_(
"Design block folder '%s' could not be deleted." ), dbDir.GetFullPath().GetData() );
488 wxFileName
path( aLibraryPath );
489 return path.IsOk() &&
path.IsDirWritable();
@ KICAD_SEXP
S-expression KiCad file format.
@ DESIGN_BLOCK_FILE_UNKNOWN
0 is not a legal menu id on Mac
static const wxString ShowType(DESIGN_BLOCK_FILE_T aFileType)
static DESIGN_BLOCK_FILE_T GuessPluginTypeFromLibPath(const wxString &aLibPath, int aCtl=0)
static DESIGN_BLOCK_FILE_T EnumFromStr(const wxString &aFileType)
static bool ConvertLibrary(std::map< std::string, UTF8 > *aOldFileProps, const wxString &aOldFilePath, const wxString &aNewFilePath)
Convert a design block library to the latest KiCad format.
static DESIGN_BLOCK_IO * FindPlugin(DESIGN_BLOCK_FILE_T aFileType)
bool DesignBlockExists(const wxString &aLibraryPath, const wxString &aDesignBlockName, const std::map< std::string, UTF8 > *aProperties=nullptr)
long long GetLibraryTimestamp(const wxString &aLibraryPath) const
void DesignBlockDelete(const wxString &aLibraryPath, const wxString &aDesignBlockName, const std::map< std::string, UTF8 > *aProperties=nullptr)
DESIGN_BLOCK * DesignBlockLoad(const wxString &aLibraryPath, const wxString &aDesignBlockName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr)
void DesignBlockSave(const wxString &aLibraryPath, const DESIGN_BLOCK *aDesignBlock, const std::map< std::string, UTF8 > *aProperties=nullptr)
void DesignBlockEnumerate(wxArrayString &aDesignBlockNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr)
virtual bool DeleteLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Delete an existing library and returns true, or if library does not exist returns false,...
void CreateLibrary(const wxString &aLibraryPath, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Create a new empty library at aLibraryPath empty.
bool IsLibraryWritable(const wxString &aLibraryPath) override
Return true if the library at aLibraryPath is writable.
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
Get the descriptor for the library container that this IO plugin operates on.
void SetLibDescription(const wxString &aDesc)
void SetKeywords(const wxString &aKeywords)
void SetSchematicFile(const wxString &aFile)
void SetBoardFile(const wxString &aFile)
const wxString & GetKeywords() const
const wxString & GetLibDescription() const
void SetLibId(const LIB_ID &aName)
const wxString & GetBoardFile() const
const wxString & GetSchematicFile() const
const LIB_ID & GetLibId() const
const nlohmann::ordered_map< wxString, wxString > & GetFields() const
tl::expected< LIBRARY_TABLE_IR, LIBRARY_PARSE_ERROR > Parse(const std::filesystem::path &aPath)
static const wxString TABLE_TYPE_NAME
A logical library item identifier and consists of various portions much like a URI.
bool IsValid() const
Check if this LID_ID is valid.
const UTF8 & GetLibItemName() const
void CollectSubdirsLoopSafe(const wxString &aRoot, wxArrayString &aDirs, int aFlags)
Recursively collect every subdirectory under aRoot using the same loop detection as CollectFilesLoopS...
static const std::string KiCadDesignBlockLibPathExtension
static const std::string KiCadDesignBlockPathExtension
static const std::string JsonFileExtension
static const std::string KiCadSchematicFileExtension
static const std::string KiCadPcbFileExtension
const wxChar *const traceDesignBlocks
Some functions to handle hotkeys in KiCad.
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 THROW_IO_ERRORF(msg,...)
#define KICTL_NONKICAD_ONLY
chosen file is non-KiCad according to user
Container that describes file type info.
wxLogTrace helper definitions.
Definition of file extensions used in Kicad.