30#include <wx/filename.h>
32#include <wx/translation.h>
35#include <wx/datetime.h>
52 default:
return wxString::Format(
_(
"UNKNOWN (%d)" ), aFileType );
60 if( aFileType ==
_(
"KiCad" ) )
74 default:
return nullptr;
84 if( parser.
Parse( aLibPath.ToStdString() ).has_value() )
98 const wxString& aOldFilePath,
99 const wxString& aNewFilePath )
110 wxArrayString dbNames;
111 wxFileName newFileName( aNewFilePath );
113 if( newFileName.HasExt() )
115 wxString extraDir = newFileName.GetFullName();
116 newFileName.ClearExt();
117 newFileName.SetName(
"" );
118 newFileName.AppendDir( extraDir );
121 if( !newFileName.DirExists() && !wxFileName::Mkdir( aNewFilePath, wxS_DIR_DEFAULT ) )
126 bool bestEfforts =
false;
127 oldFilePI->DesignBlockEnumerate( dbNames, aOldFilePath, bestEfforts, aOldFileProps );
129 for(
const wxString& dbName : dbNames )
131 std::unique_ptr<const DESIGN_BLOCK> db( oldFilePI->GetEnumeratedDesignBlock( aOldFilePath, dbName,
133 kicadPI->DesignBlockSave( aNewFilePath, db.get() );
154 wxDir libDir( aLibraryPath );
156 if( !libDir.IsOpened() )
162 bool hasMoreFiles = libDir.GetFirst( &filename, wxEmptyString, wxDIR_DIRS );
164 while( hasMoreFiles )
166 wxFileName blockDir( aLibraryPath, filename );
172 hasMoreFiles = libDir.GetNext( &filename );
180 const std::map<std::string, UTF8>* aProperties )
182 if( wxDir::Exists( aLibraryPath ) )
184 THROW_IO_ERROR( wxString::Format(
_(
"Cannot overwrite library path '%s'." ),
185 aLibraryPath.GetData() ) );
189 dir.SetPath( aLibraryPath );
194 wxString::Format(
_(
"Library path '%s' could not be created.\n\n"
195 "Make sure you have write permissions and try again." ),
202 const std::map<std::string, UTF8>* aProperties )
205 fn.SetPath( aLibraryPath );
208 if( !fn.DirExists() )
211 if( !fn.IsDirWritable() )
213 THROW_IO_ERROR( wxString::Format(
_(
"Insufficient permissions to delete folder '%s'." ),
214 aLibraryPath.GetData() ) );
217 wxDir dir( aLibraryPath );
222 THROW_IO_ERROR( wxString::Format(
_(
"Library folder '%s' has unexpected files." ),
223 aLibraryPath.GetData() ) );
227 if( dir.HasSubDirs() )
232 dir.GetAllFiles( aLibraryPath, &dirs, wxEmptyString, wxDIR_DIRS );
234 for(
size_t i = 0; i < dirs.GetCount(); i++ )
236 wxFileName tmp = dirs[i];
240 THROW_IO_ERROR( wxString::Format(
_(
"Unexpected folder '%s' found in library path '%s'." ),
241 dirs[i].GetData(), aLibraryPath.GetData() ) );
245 for(
size_t i = 0; i < dirs.GetCount(); i++ )
246 wxRemoveFile( dirs[i] );
250 aLibraryPath.GetData() );
254 if( !wxFileName::Rmdir( aLibraryPath, wxPATH_RMDIR_RECURSIVE ) )
256 THROW_IO_ERROR( wxString::Format(
_(
"Design block library '%s' cannot be deleted." ),
257 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() )
280 THROW_IO_ERROR( wxString::Format(
_(
"Design block '%s' does not exist." ), aLibraryPath ) );
285 bool cont = dir.GetFirst( &dirname, fileSpec, wxDIR_DIRS );
289 aDesignBlockNames.Add( dirname.Before( wxT(
'.' ) ) );
290 cont = dir.GetNext( &dirname );
296 const wxString& aDesignBlockName,
bool aKeepUUID,
297 const std::map<std::string, UTF8>* aProperties )
299 wxString dbPath = aLibraryPath + wxFileName::GetPathSeparator() + aDesignBlockName + wxT(
"." )
301 wxString dbSchPath = dbPath + aDesignBlockName + wxT(
"." )
306 if( !wxDir::Exists( dbPath ) )
307 THROW_IO_ERROR( wxString::Format(
_(
"Design block '%s' does not exist." ), dbPath ) );
315 if( wxFileExists( dbSchPath ) )
318 if( wxFileExists( dbPcbPath ) )
322 if( wxFileExists( dbMetadataPath ) )
326 nlohmann::ordered_json dbMetadata;
327 std::ifstream dbMetadataFile( dbMetadataPath.fn_str() );
329 dbMetadataFile >> dbMetadata;
331 if( dbMetadata.contains(
"description" ) )
334 if( dbMetadata.contains(
"keywords" ) )
338 if( dbMetadata.contains(
"fields" ) )
340 for(
auto& item : dbMetadata[
"fields"].items() )
342 wxString
name = wxString::FromUTF8( item.key() );
343 wxString value = wxString::FromUTF8( item.value().get<std::string>() );
352 THROW_IO_ERROR( wxString::Format(
_(
"Design block metadata file '%s' could not be read." ),
362 const wxString& aDesignBlockName,
363 const std::map<std::string, UTF8>* aProperties )
365 wxString dbPath = aLibraryPath + wxFileName::GetPathSeparator() + aDesignBlockName + wxT(
"." )
368 return wxDir::Exists( dbPath );
374 const std::map<std::string, UTF8>* aProperties )
379 THROW_IO_ERROR(
_(
"Design block does not have a valid library ID." ) );
384 THROW_IO_ERROR(
_(
"Design block does not have a schematic or board file." ) );
390 if( !aDesignBlock->
GetSchematicFile().IsEmpty() && !schematicFile.FileExists() )
393 wxString::Format(
_(
"Schematic source file '%s' does not exist." ), schematicFile.GetFullPath() ) );
396 if( !aDesignBlock->
GetBoardFile().IsEmpty() && !boardFile.FileExists() )
398 THROW_IO_ERROR( wxString::Format(
_(
"Board source file '%s' does not exist." ), boardFile.GetFullPath() ) );
402 wxFileName dbFolder( aLibraryPath + wxFileName::GetPathSeparator()
405 + wxFileName::GetPathSeparator() );
407 if( !dbFolder.DirExists() )
409 if( !dbFolder.Mkdir() )
411 THROW_IO_ERROR( wxString::Format(
_(
"Design block folder '%s' could not be created." ),
412 dbFolder.GetFullPath().GetData() ) );
419 wxString dbSchematicFile = dbFolder.GetFullPath() + aDesignBlock->
GetLibId().
GetLibItemName() + wxT(
"." )
424 if( schematicFile.GetFullPath() != dbSchematicFile )
427 if( !wxCopyFile( schematicFile.GetFullPath(), dbSchematicFile ) )
430 wxString::Format(
_(
"Schematic file '%s' could not be saved as design block at '%s'." ),
431 schematicFile.GetFullPath(), dbSchematicFile ) );
444 if( boardFile.GetFullPath() != dbBoardFile )
447 if( !wxCopyFile( boardFile.GetFullPath(), dbBoardFile ) )
449 THROW_IO_ERROR( wxString::Format(
_(
"Board file '%s' could not be saved as design block at '%s'." ),
450 boardFile.GetFullPath(), dbBoardFile ) );
459 nlohmann::ordered_json dbMetadata;
461 dbMetadata[
"keywords"] = aDesignBlock->
GetKeywords();
462 dbMetadata[
"fields"] = aDesignBlock->
GetFields();
464 bool success =
false;
468 wxFFile mdFile( dbMetadataFile, wxT(
"wb" ) );
470 if( mdFile.IsOpened() )
471 success = mdFile.Write( dbMetadata.dump( 0 ) );
483 _(
"Design block metadata file '%s' could not be saved." ), dbMetadataFile ) );
489 const std::map<std::string, UTF8>* aProperties )
491 wxFileName dbDir = wxFileName( aLibPath + wxFileName::GetPathSeparator() + aDesignBlockName
494 if( !dbDir.DirExists() )
497 wxString::Format(
_(
"Design block '%s' does not exist." ), dbDir.GetFullName() ) );
501 if( !wxFileName::Rmdir( dbDir.GetFullPath(), wxPATH_RMDIR_RECURSIVE ) )
503 THROW_IO_ERROR( wxString::Format(
_(
"Design block folder '%s' could not be deleted." ),
504 dbDir.GetFullPath().GetData() ) );
511 wxFileName
path( aLibraryPath );
512 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
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 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.