26#include <wx/filename.h>
27#include <wx/stdpaths.h>
66 if( !
path.DirExists() )
68 wxLogTrace(
traceSettings, wxT(
"Path didn't exist; creating it" ) );
69 path.Mkdir( wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL );
77 wxLogTrace(
traceSettings, wxT(
"Note: no valid settings directory on disk" ) );
98 for( std::unique_ptr<JSON_SETTINGS>& settings :
m_settings )
109 for( std::unique_ptr<JSON_SETTINGS>& settings :
m_settings )
113 std::map<std::string, nlohmann::json> fileHistories = settings->GetFileHistories();
115 settings->Internals()->clear();
118 for(
const auto& [
path, history] : fileHistories )
119 settings->Set(
path, history );
129 for( std::unique_ptr<JSON_SETTINGS>& settings :
m_settings )
133 for(
const auto& [
path, history] : settings->GetFileHistories() )
134 settings->Set(
path, nlohmann::json::array() );
144 std::unique_ptr<JSON_SETTINGS> ptr( aSettings );
146 ptr->SetManager(
this );
148 wxLogTrace(
traceSettings, wxT(
"Registered new settings object <%s>" ),
149 ptr->GetFullFilename() );
183 std::vector<JSON_SETTINGS*> toLoad;
187 []( std::unique_ptr<JSON_SETTINGS>& aSettings )
189 return aSettings.get();
200 [&aSettings](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
202 return aPtr.get() == aSettings;
225 [&aSettings](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
227 return aPtr.get() == aSettings;
232 wxLogTrace(
traceSettings, wxT(
"Saving %s" ), ( *it )->GetFullFilename() );
241 [&aSettings](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
243 return aPtr.get() == aSettings;
248 wxLogTrace(
traceSettings, wxT(
"Flush and release %s" ), ( *it )->GetFullFilename() );
254 size_t typeHash =
typeid( *tmp ).hash_code();
276 [&aName](
const std::pair<wxString, COLOR_SETTINGS*>& p )
278 return p.second->GetName().Lower() == aName.Lower();
309 std::vector<COLOR_SETTINGS*> ret;
311 for(
const std::pair<const wxString, COLOR_SETTINGS*>& entry :
m_color_settings )
312 ret.push_back( entry.second );
315 { return a->GetName() < b->GetName(); } );
323 wxLogTrace(
traceSettings, wxT(
"Attempting to load color theme %s" ), aName );
327 if( !fn.IsOk() || !fn.Exists() )
329 wxLogTrace(
traceSettings, wxT(
"Theme file %s.json not found, falling back to user" ),
336 if( settings->
GetFilename() != aName.ToStdString() )
338 wxLogTrace(
traceSettings, wxT(
"Warning: stored filename is actually %s, " ),
359 wxDirTraverseResult
OnFile(
const wxString& aFilePath )
override
361 wxFileName file( aFilePath );
363 if( file.GetExt() == wxS(
"json" ) )
366 return wxDIR_CONTINUE;
369 wxDirTraverseResult
OnDir(
const wxString& dirPath )
override
371 return wxDIR_CONTINUE;
391 if( aName.EndsWith( wxT(
".json" ) ) )
403 settings->
SetName( wxT(
"User" ) );
423 wxFileName third_party_path;
427 if( it != env.end() && !it->second.GetValue().IsEmpty() )
428 third_party_path.SetPath( it->second.GetValue() );
432 third_party_path.AppendDir( wxS(
"colors" ) );
435 wxDir third_party_colors_dir( third_party_path.GetFullPath() );
450 [&](
const wxFileName& aFilename )
456 if( system_colors_dir.IsOpened() )
457 system_colors_dir.Traverse( readOnlyLoader );
459 if( third_party_colors_dir.IsOpened() )
460 third_party_colors_dir.Traverse( readOnlyLoader );
462 if( colors_dir.IsOpened() )
463 colors_dir.Traverse( loader );
469 std::set<wxString> builtinNames;
478 for(
const std::pair<const wxString, COLOR_SETTINGS*>& entry :
m_color_settings )
484 && builtinNames.count( settings->
GetName() ) )
487 settings->
SetName( wxString::Format( wxS(
"%s (%s)" ), settings->
GetName(),
488 wxFileName( settings->
GetFilename() ).GetName() ) );
505 [aSettings] (
const std::pair<wxString, COLOR_SETTINGS*>& el )
507 return el.second->GetFilename() == aSettings->GetFilename();
514 if( !aSettings->
Store() )
516 wxLogTrace(
traceSettings, wxT(
"Color scheme %s not modified; skipping save" ),
521 wxASSERT( aSettings->
Contains( aNamespace ) );
523 wxLogTrace(
traceSettings, wxT(
"Saving color scheme %s, preserving %s" ),
527 std::optional<nlohmann::json> backup = aSettings->
GetJson( aNamespace );
533 ( *aSettings->
Internals() )[aNamespace].update( *backup );
543 wxASSERT( aSettings );
553 return owner->GetProjectPath();
568 wxASSERT_MSG(
false, wxT(
"Unknown settings location!" ) );
593 wxDirTraverseResult
OnFile(
const wxString& aSrcFilePath )
override
595 wxFileName file( aSrcFilePath );
600 return wxDIR_CONTINUE;
604 if( file.GetFullName() == wxT(
"installed_packages.json" ) )
605 return wxDIR_CONTINUE;
609 if( file.GetExt() == wxT(
"hotkeys" ) )
610 return wxDIR_CONTINUE;
612 wxString
path = file.GetPath();
615 file.SetPath(
path );
617 wxLogTrace(
traceSettings, wxT(
"Copying %s to %s" ), aSrcFilePath, file.GetFullPath() );
622 return wxDIR_CONTINUE;
625 wxDirTraverseResult
OnDir(
const wxString& dirPath )
override
627 wxFileName dir( dirPath );
630 if( dir.GetName() == wxS(
"colors" ) ||
631 dir.GetName() == wxS(
"3d" ) )
634 wxString
path = dir.GetPath();
639 if( !wxDirExists( dir.GetPath() ) )
640 wxMkdir( dir.GetPath() );
642 return wxDIR_CONTINUE;
656 if(
path.DirExists() )
658 wxFileName common =
path;
659 common.SetName( wxS(
"kicad_common" ) );
660 common.SetExt( wxS(
"json" ) );
662 if( common.Exists() )
664 wxLogTrace(
traceSettings, wxT(
"Path exists and has a kicad_common, continuing!" ) );
677 if( aSourcePath.IsEmpty() )
680 wxLogTrace(
traceSettings, wxT(
"Migrating from path %s" ), aSourcePath );
684 wxDir source_dir( aSourcePath );
686 source_dir.Traverse( traverser );
698 const std::vector<wxString> libKeys = {
699 wxT(
"KICAD6_SYMBOL_DIR" ),
700 wxT(
"KICAD6_3DMODEL_DIR" ),
701 wxT(
"KICAD6_FOOTPRINT_DIR" ),
702 wxT(
"KICAD6_TEMPLATE_DIR" ),
703 wxT(
"KICAD7_SYMBOL_DIR" ),
704 wxT(
"KICAD7_3DMODEL_DIR" ),
705 wxT(
"KICAD7_FOOTPRINT_DIR" ),
706 wxT(
"KICAD7_TEMPLATE_DIR" ),
707 wxT(
"KICAD8_SYMBOL_DIR" ),
708 wxT(
"KICAD8_3DMODEL_DIR" ),
709 wxT(
"KICAD8_FOOTPRINT_DIR" ),
710 wxT(
"KICAD8_TEMPLATE_DIR" ),
713 wxT(
"KICAD_PTEMPLATES" ),
716 wxT(
"KICAD_SYMBOL_DIR" ),
719 for(
const wxString& key : libKeys )
736 std::vector<wxFileName> base_paths;
741 if( wxGetEnv( wxT(
"KICAD_CONFIG_HOME" ),
nullptr ) )
752 wxFileName wxGtkPath;
753 wxGtkPath.AssignDir( wxS(
"~/.config/kicad" ) );
754 wxGtkPath.MakeAbsolute();
755 base_paths.emplace_back( wxGtkPath );
758 wxGtkPath.AssignDir( wxS(
"~/.var/app/org.kicad.KiCad/config/kicad" ) );
759 wxGtkPath.MakeAbsolute();
760 base_paths.emplace_back( wxGtkPath );
768 [&] (
const wxString& aSubDir )
773 wxString sub_path = dir.GetNameWithSep() + aSubDir;
777 aPaths->push_back( sub_path );
778 wxLogTrace(
traceSettings, wxT(
"GetPreviousVersionName: %s is valid" ), sub_path );
783 std::set<wxString> checkedPaths;
785 for(
const wxFileName& base_path : base_paths )
787 if( checkedPaths.count( base_path.GetFullPath() ) )
790 checkedPaths.insert( base_path.GetFullPath() );
792 if( !dir.Open( base_path.GetFullPath() ) )
794 wxLogTrace(
traceSettings, wxT(
"GetPreviousVersionName: could not open base path %s" ),
795 base_path.GetFullPath() );
799 wxLogTrace(
traceSettings, wxT(
"GetPreviousVersionName: checking base path %s" ),
800 base_path.GetFullPath() );
802 if( dir.GetFirst( &subdir, wxEmptyString, wxDIR_DIRS ) )
807 while( dir.GetNext( &subdir ) )
818 wxT(
"GetPreviousVersionName: root path %s is valid" ), dir.GetName() );
819 aPaths->push_back( dir.GetName() );
823 std::erase_if( *aPaths,
824 [](
const wxString& aPath ) ->
bool
826 wxFileName fulldir = wxFileName::DirName( aPath );
827 const wxArrayString& dirs = fulldir.GetDirs();
829 if( dirs.empty() || !fulldir.IsDirReadable() )
832 std::string ver = dirs.back().ToStdString();
840 std::sort( aPaths->begin(), aPaths->end(),
841 [&](
const wxString& a,
const wxString& b ) ->
bool
843 wxFileName aPath = wxFileName::DirName( a );
844 wxFileName bPath = wxFileName::DirName( b );
846 const wxArrayString& aDirs = aPath.GetDirs();
847 const wxArrayString& bDirs = bPath.GetDirs();
855 std::string verA = aDirs.back().ToStdString();
856 std::string verB = bDirs.back().ToStdString();
858 if( !extractVersion( verA ) )
861 if( !extractVersion( verB ) )
864 return compareVersions( verA, verB ) > 0;
867 return aPaths->size() > 0;
873 wxFileName
test( aPath, wxS(
"kicad_common" ) );
878 test.SetExt(
"json" );
880 return test.Exists();
889 path.AppendDir( wxS(
"colors" ) );
891 if( !
path.DirExists() )
893 if( !wxMkdir(
path.GetPath() ) )
896 wxT(
"GetColorSettingsPath(): Path %s missing and could not be created!" ),
901 return path.GetPath();
910 path.AppendDir( wxS(
"toolbars" ) );
912 if( !
path.DirExists() )
914 if( !wxMkdir(
path.GetPath() ) )
917 wxT(
"GetToolbarSettingsPath(): Path %s missing and could not be created!" ),
922 return path.GetPath();
942 wxLogTrace(
traceSettings, wxT(
"compareSettingsVersions: bad input (%s, %s)" ),
951 else if( a_maj > b_maj )
961 else if( a_min > b_min )
975 std::regex re_version(
"(\\d+)\\.(\\d+)" );
978 if( std::regex_match( aVersionString, match, re_version ) )
982 int major = std::stoi( match[1].str() );
983 int minor = std::stoi( match[2].str() );
1008 wxFileName
path( aFullPath );
1013 return path.GetFullPath();
1020 wxFileName
path( fullPath );
1031 if( !lockFile.
Valid() )
1032 wxLogTrace(
traceSettings, wxT(
"Project %s is locked; opening read-only" ), fullPath );
1043 pcbFace->CancelPreload(
true );
1056 [&](
const std::pair<const wxString, PROJECT*>& aEntry )
1058 return aEntry.second == oldProject;
1064 wxLogTrace(
traceSettings, wxT(
"Load project %s" ), fullPath );
1066 std::unique_ptr<PROJECT>
project = std::make_unique<PROJECT>();
1067 project->setProjectFullName( fullPath );
1073 wxFileName projectPath( fullPath );
1077 if( !projectPath.GetPath().IsEmpty() && wxTheApp && wxTheApp->IsGUI() )
1078 wxSetWorkingDirectory( projectPath.GetPath() );
1087 if( projectPath.GetPath().IsEmpty() )
1093 wxFileName vcsContext( projectPath );
1094 vcsContext.MakeAbsolute();
1103 if( lockFile.
Valid() && aSetActive )
1114 wxString fn(
path.GetName() );
1123 m_projects[fullPath]->setLocalSettings( settings );
1143 [&](
const std::unique_ptr<PROJECT>& aPtr )
1145 return aPtr.get() == aProject;
1156 wxLogTrace(
traceSettings, wxT(
"Unload project %s" ), projectPath );
1164 if( wasActiveProject &&
m_kiway )
1167 pcbFace->CancelPreload(
true );
1179 [&](
const std::unique_ptr<PROJECT>& ptr )
1181 return ptr.get() == toRemove;
1189 if( wasActiveProject )
1206 if( wxTheApp && wxTheApp->IsGUI() )
1223 wxLogTrace(
traceSettings, wxT(
"Prj() called with no project loaded" ) );
1225 static PROJECT s_emptyProject;
1226 return s_emptyProject;
1242 && !
m_projects.begin()->second->GetProjectFullName().IsEmpty() );
1257 TEMPLATES::SCOPE::GLOBAL ) )
1260 fieldName, TEMPLATES::SCOPE::GLOBAL );
1270 return it !=
m_projects.end() ? it->second :
nullptr;
1276 std::vector<wxString> ret;
1278 for(
const std::pair<const wxString, PROJECT*>& pair :
m_projects )
1281 if( !pair.first.IsEmpty() )
1282 ret.emplace_back( pair.first );
1294 wxString
path = aFullPath;
1309 project->SaveToFile( projectPath );
1324 if( newName.IsSameAs( oldName ) )
1333 wxFileName fn( newName );
1342 project->SetFilename( fn.GetName() );
1343 project->SaveToFile( fn.GetPath() );
1362 wxString oldName =
project->GetFilename();
1363 wxFileName fn( aFullPath );
1365 bool readOnly =
project->IsReadOnly();
1366 project->SetReadOnly(
false );
1368 project->SetFilename( fn.GetName() );
1369 const bool projectOk =
project->SaveToFile( fn.GetPath() );
1370 project->SetFilename( oldName );
1381 project->SetReadOnly( readOnly );
1390 wxString fn( fullFn.GetName() );
1399 wxString
path( fullFn.GetPath() );
1425 [&file](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
1427 return aPtr.get() == file;
1440 ( *it )->SaveToFile( projectPath );
1454 return wxEmptyString;
1458 if( fullName.IsEmpty() )
1459 return wxEmptyString;
1461 std::string hashHex;
1462 picosha2::hash256_hex_string( fullName.ToStdString( wxConvUTF8 ), hashHex );
1464 return wxString::Format( wxS(
"%s-%s" ), aProject->
GetProjectName(),
1465 wxString::FromUTF8( hashHex.substr( 0, 12 ).c_str() ) );
1471 return aProject ? *aProject :
Prj();
1482 if( activePath.IsSameAs( aProjectPath ) || activePath.IsSameAs( aProjectPath + wxFILE_SEP_PATH ) )
1504 root.AppendDir( wxS(
"backups" ) );
1508 if( !key.IsEmpty() )
1509 root.AppendDir( key );
1511 return root.GetPathWithSep();
1522 wxFileName p(
project.GetProjectPath(), wxEmptyString );
1523 p.AppendDir( wxS(
".history" ) );
1528 root.AppendDir( wxS(
"local_history" ) );
1532 if( !key.IsEmpty() )
1533 root.AppendDir( key );
1535 return root.GetPath();
1543 wxFileName p( aProjectPath, wxEmptyString );
1544 p.AppendDir( wxS(
".history" ) );
1558 return project.GetProjectPath();
1561 root.AppendDir( wxS(
"autosave" ) );
1565 if( !key.IsEmpty() )
1566 root.AppendDir( key );
1568 return root.GetPathWithSep();
1577 wxDateTime timestamp = wxDateTime::Now();
1579 wxString fileName = wxString::Format( wxT(
"%s-%s" ),
Prj().GetProjectName(),
1582 if( !aTarget.IsOk() )
1585 aTarget.SetName( fileName );
1591 wxLogTrace(
traceSettings, wxT(
"Could not create project backup path %s" ),
1592 aTarget.GetPath() );
1596 if( !aTarget.IsDirWritable() )
1598 wxLogTrace(
traceSettings, wxT(
"Backup directory %s is not writable" ),
1599 aTarget.GetPath() );
1603 wxLogTrace(
traceSettings, wxT(
"Backing up project to %s" ), aTarget.GetPath() );
1613 std::function<
bool(
const wxString& )> aCond ) :
1619 wxDirTraverseResult
OnFile(
const wxString& aFile )
override
1622 m_files.emplace_back( aFile );
1624 return wxDIR_CONTINUE;
1627 wxDirTraverseResult
OnDir(
const wxString& aDirName )
override
1629 return wxDIR_CONTINUE;
1655 [&prefix](
const wxString& aFile )
1658 wxString fn( wxFileName( aFile ).GetName() );
1659 fn.Replace( prefix, wxS(
"" ) );
1664 if(
Prj().GetProjectFullName().IsEmpty() )
1673 wxLogTrace(
traceSettings, wxT(
"Could not create backups path %s! Skipping backup" ),
1678 wxFileName backupRoot( backupPath, wxEmptyString, wxEmptyString );
1682 if( !backupRoot.IsDirWritable() )
1684 wxLogTrace(
traceSettings, wxT(
"Backup directory %s is not writable! Skipping backup" ),
1689 wxDir dir( backupPath );
1691 if( !dir.IsOpened() )
1693 wxLogTrace(
traceSettings, wxT(
"Could not open project backups path %s" ), dir.GetName() );
1697 std::vector<wxString> files;
1700 [&modTime](
const wxString& aFile )
1702 return modTime( aFile ).IsValid();
1705 dir.Traverse( traverser, wxT(
"*.zip" ) );
1708 std::sort( files.begin(), files.end(),
1709 [&](
const wxString& aFirst,
const wxString& aSecond ) ->
bool
1711 wxDateTime first = modTime( aFirst );
1712 wxDateTime second = modTime( aSecond );
1714 return first.GetTicks() > second.GetTicks();
1718 if( !files.empty() )
1720 wxDateTime lastTime = modTime( files[0] );
1722 if( lastTime.IsValid() )
1724 wxTimeSpan
delta = wxDateTime::Now() - modTime( files[0] );
1735 if( !backupSuccessful )
1739 files.insert( files.begin(), target.GetFullPath() );
1742 if( files.size() >= 2
1745 wxRemoveFile( files[0] );
1756 wxRemoveFile( files.back() );
1766 wxULongLong totalSize = 0;
1768 for(
const wxString& file : files )
1769 totalSize += wxFileName::GetSize( file );
1771 while( files.size() > 1 && totalSize > limit )
1773 totalSize -= wxFileName::GetSize( files.back() );
1774 wxRemoveFile( files.back() );
1778 if( totalSize > limit )
1780 aReporter.
Report(
_(
"One backup of this project is larger than the total backup size "
1781 "limit. KiCad kept the new backup; increase the limit in "
1790 wxDateTime day = modTime( files[0] );
1793 wxASSERT( day.IsValid() );
1795 std::vector<wxString> filesToDelete;
1797 for(
size_t i = 1; i < files.size(); i++ )
1799 wxDateTime dt = modTime( files[i] );
1801 if( dt.IsSameDate( day ) )
1806 filesToDelete.emplace_back( files[i] );
1815 for(
const wxString& file : filesToDelete )
1816 wxRemoveFile( file );
wxString GetMajorMinorVersion()
Get only the major and minor version in a string major.minor.
Color settings are a bit different than most of the settings objects in that there can be more than o...
void SetName(const wxString &aName)
static std::vector< COLOR_SETTINGS * > CreateBuiltinColorSettings()
Constructs and returns a list of color settings objects based on the built-in color themes.
static const wxString COLOR_BUILTIN_CLASSIC
static const wxString COLOR_BUILTIN_DEFAULT
const wxString & GetName() const
std::function< void(const wxFileName &)> m_action
JSON_DIR_TRAVERSER(std::function< void(const wxFileName &)> aAction)
wxDirTraverseResult OnDir(const wxString &dirPath) override
wxDirTraverseResult OnFile(const wxString &aFilePath) override
std::optional< nlohmann::json > GetJson(const std::string &aPath) const
Fetches a JSON object that is a subset of this JSON_SETTINGS object, using a path of the form "key1....
bool Contains(const std::string &aPath) const
bool IsFileSynced() const
SETTINGS_LOC GetLocation() const
virtual bool LoadFromFile(const wxString &aDirectory="")
Loads the backing file from disk and then calls Load()
virtual const PROJECT * GetOwningProject() const
Project-located settings override this to report the project they belong to so their save path is res...
virtual void Load()
Updates the parameters of this object based on the current JSON document contents.
void SetReadOnly(bool aReadOnly)
JSON_SETTINGS_INTERNALS * Internals()
void SetFilename(const wxString &aFilename)
virtual bool SaveToFile(const wxString &aDirectory="", bool aForce=false)
Calls Store() and then writes the contents of the JSON document to a file.
virtual bool Store()
Stores the current parameters into the JSON document represented by this object Note: this doesn't do...
wxString GetFilename() const
void AbortAsyncLoads()
Abort any async library loading operations in progress.
void ProjectChanged()
Notify all adapters that the project has changed.
Advisory lock over a file, taken by writing a sibling lock file and holding an exclusive lock on it f...
static LOCKFILE Inspect(const wxString &aFilename)
Look at a lock without taking it: nothing is created, nothing is claimed and nothing is removed on re...
wxDirTraverseResult OnDir(const wxString &dirPath) override
MIGRATION_TRAVERSER(const wxString &aSrcDir, const wxString &aDestDir, bool aMigrateTables)
wxDirTraverseResult OnFile(const wxString &aSrcFilePath) override
static wxString CalculateUserSettingsPath(bool aIncludeVer=true, bool aUseEnv=true)
Determines the base path for user settings files.
static wxString GetDefault3rdPartyPath()
Gets the default path for PCM packages.
static bool EnsurePathExists(const wxString &aPath, bool aPathToFile=false)
Attempts to create a given path if it does not exist.
static wxString GetStockDataPath(bool aRespectRunFromBuildDir=true)
Gets the stock (install) data path, which is the base path for things like scripting,...
static wxString GetUserSettingsPath()
Return the user configuration path used to store KiCad's configuration files.
virtual ENV_VAR_MAP & GetLocalEnvVariables() const
virtual LIBRARY_MANAGER & GetLibraryManager() const
static bool Archive(const wxString &aSrcDir, const wxString &aDestFile, REPORTER &aReporter, bool aVerbose=true, bool aIncludeExtraFiles=false)
Create an archive of the project.
static bool AreZipArchivesIdentical(const wxString &aZipFileA, const wxString &aZipFileB, REPORTER &aReporter)
Compare the CRCs of all the files in zip archive to determine whether the archives are identical.
The backing store for a PROJECT, in JSON format.
TEMPLATES m_TemplateFieldNames
Project and global field name templates shared by project editors.
bool ShouldAutoSave() const
void SetProject(PROJECT *aProject)
bool LoadFromFile(const wxString &aDirectory="") override
Loads the backing file from disk and then calls Load()
The project local settings are things that are attached to a particular project, but also might be pa...
bool SaveToFile(const wxString &aDirectory="", bool aForce=false) override
Calls Store() and then writes the contents of the JSON document to a file.
bool ShouldAutoSave() const
Container for project specific data.
virtual void setProjectFile(PROJECT_FILE *aFile)
Set the backing store file for this project.
virtual bool IsReadOnly() const
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
virtual const wxString GetProjectPath() const
Return the full path of the project.
virtual const wxString GetProjectName() const
Return the short name of the project.
virtual PROJECT_LOCAL_SETTINGS & GetLocalSettings() const
virtual void setProjectFullName(const wxString &aFullPathAndName)
Set the full directory, basename, and extension of the project.
A pure virtual class used to derive REPORTER objects from.
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
static int compareVersions(const std::string &aFirst, const std::string &aSecond)
Compare two settings versions, like "5.99" and "6.0".
wxString GetBackupRootForProject(const PROJECT *aProject=nullptr) const
Resolve the backup root directory for a project, honoring the active BACKUP_LOCATION preference.
wxString GetPathForSettingsFile(JSON_SETTINGS *aSettings)
Return the path a given settings file should be loaded from / stored to.
static std::string GetSettingsVersion()
Parse the current KiCad build version and extracts the major and minor revision to use as the name of...
void SaveProjectAs(const wxString &aFullPath, PROJECT *aProject=nullptr)
Set the currently loaded project path and saves it (pointers remain valid).
JSON_SETTINGS * registerSettings(JSON_SETTINGS *aSettings, bool aLoadNow=true)
static wxString GetUserSettingsPath()
A proxy for PATHS::GetUserSettingsPath() rather than fighting swig.
T * RegisterSettings(T *aSettings, bool aLoadNow=true)
Take ownership of the pointer passed in.
void SaveColorSettings(COLOR_SETTINGS *aSettings, const std::string &aNamespace="")
Safely save a COLOR_SETTINGS to disk, preserving any changes outside the given namespace.
void SyncGlobalFieldNameTemplatesToProjects()
Synchronize the global field name templates into every loaded project.
bool MigrateFromPreviousVersion(const wxString &aSourcePath)
Handle migration of the settings from previous KiCad versions.
std::map< wxString, PROJECT * > m_projects
Loaded projects, mapped according to project full name.
static bool extractVersion(const std::string &aVersionString, int *aMajor=nullptr, int *aMinor=nullptr)
Extract the numeric version from a given settings string.
COLOR_SETTINGS * registerColorSettings(const wxString &aFilename, bool aAbsolutePath=false)
COLOR_SETTINGS * GetColorSettings(const wxString &aName)
Retrieve a color settings object that applications can read colors from.
static wxString GetColorSettingsPath()
Return the path where color scheme files are stored; creating it if missing (normally .
COMMON_SETTINGS * GetCommonSettings() const
Retrieve the common settings shared by all applications.
bool SaveProject(const wxString &aFullPath=wxEmptyString, PROJECT *aProject=nullptr)
Save a loaded project.
bool SaveProjectCopy(const wxString &aFullPath, PROJECT *aProject=nullptr)
Save a copy of the current project under the given path.
wxString GetLocalHistoryDirForProject(const PROJECT *aProject=nullptr) const
Resolve the local-history (.history) storage directory for a project.
void ClearFileHistory()
Clear saved file history from all settings files.
wxString GetProjectBackupsPath() const
bool LoadProject(const wxString &aFullPath, bool aSetActive=true)
Load a project or sets up a new project with a specified path.
void ResetToDefaults()
Reset all program settings to defaults.
const PROJECT & resolveProject(const PROJECT *aProject) const
Pick the project to resolve a backup path against, falling back to Prj().
bool SettingsDirectoryValid() const
wxString GetAutosaveRootForProject(const PROJECT *aProject=nullptr) const
Resolve the autosave-files root for a project.
std::map< wxString, PROJECT_FILE * > m_project_files
Loaded project files, mapped according to project full name.
std::unordered_map< wxString, COLOR_SETTINGS * > m_color_settings
PROJECT * GetProjectForPath(const wxString &aProjectPath) const
Return the active project iff its path matches aProjectPath, else nullptr.
COLOR_SETTINGS * loadColorSettingsByName(const wxString &aName)
Attempt to load a color theme by name (the color theme directory and .json ext are assumed).
std::vector< COLOR_SETTINGS * > GetColorSettingsList()
bool IsProjectOpen() const
Helper for checking if we have a project open.
wxString GetLocalHistoryDirForPath(const wxString &aProjectPath) const
Resolve the local-history directory for a project given by its on-disk path.
static wxString GetToolbarSettingsPath()
Return the path where toolbar configuration files are stored; creating it if missing (normally .
bool GetPreviousVersionPaths(std::vector< wxString > *aName=nullptr)
Retrieve the name of the most recent previous KiCad version that can be found in the user settings di...
static bool IsSettingsPathValid(const wxString &aPath)
Check if a given path is probably a valid KiCad configuration directory.
bool IsProjectLoaded(PROJECT *aProject) const
True if aProject is still owned by the manager.
bool BackupProject(REPORTER &aReporter, wxFileName &aTarget) const
Create a backup archive of the current project.
std::vector< std::unique_ptr< PROJECT > > m_projects_list
Loaded projects (ownership here).
void loadAllColorSettings()
PROJECT * GetProject(const wxString &aFullPath) const
Retrieve a loaded project by name.
bool UnloadProject(PROJECT *aProject, bool aSave=true)
Save, unload and unregister the given PROJECT.
std::vector< wxString > GetOpenProjects() const
std::vector< std::unique_ptr< JSON_SETTINGS > > m_settings
bool TriggerBackupIfNeeded(REPORTER &aReporter) const
Call BackupProject() if a new backup is needed according to the current backup policy.
bool m_migrateLibraryTables
If true, the symbol and footprint library tables will be migrated from the previous version.
bool unloadProjectFile(PROJECT *aProject, bool aSave)
Optionally save, unload and unregister the given PROJECT_FILE.
COLOR_SETTINGS * GetMigratedColorSettings()
Return a color theme for storing colors migrated from legacy (5.x and earlier) settings,...
std::unordered_map< size_t, JSON_SETTINGS * > m_app_settings_cache
Cache for app settings.
COLOR_SETTINGS * AddNewColorSettings(const wxString &aFilename)
Register a new color settings object with the given filename.
bool m_ok
True if settings loaded successfully at construction.
void registerBuiltinColorSettings()
PROJECT & Prj() const
A helper while we are not MDI-capable – return the one and only project.
bool loadProjectFile(PROJECT &aProject)
Register a PROJECT_FILE and attempt to load it from disk.
bool IsProjectOpenNotDummy() const
Helper for checking if we have a project open that is not a dummy project.
static wxString backupDateTimeFormat
void ReloadColorSettings()
Re-scan the color themes directory, reloading any changes it finds.
COMMON_SETTINGS * m_common_settings
KIWAY * m_kiway
The kiway this settings manager interacts with.
void FlushAndRelease(JSON_SETTINGS *aSettings, bool aSave=true)
If the given settings object is registered, save it to disk and unregister it.
static wxString projectKeySuffix(const PROJECT *aProject)
Build "<projectname>-<sha256prefix>" suffix used to disambiguate per-project subdirectories under the...
void AddTemplateFieldName(const TEMPLATE_FIELDNAME &aFieldName, SCOPE aScope)
Insert or append a wanted symbol field name into the field names template.
void DeleteFieldNameTemplates(SCOPE aScope)
Delete the contents of a scope.
wxDirTraverseResult OnFile(const wxString &aFile) override
wxDirTraverseResult OnDir(const wxString &aDirName) override
std::vector< wxString > & m_files
VECTOR_INSERT_TRAVERSER(std::vector< wxString > &aVec, std::function< bool(const wxString &)> aCond)
std::function< bool(const wxString &)> m_condition
@ ZIP
Zip archive snapshots; autosave uses recovery files.
@ PROJECT_DIR
Inside the project directory (default)
void DisplayErrorMessage(wxWindow *aParent, const wxString &aText, const wxString &aExtraInfo)
Display an error message with aMessage.
This file is part of the common library.
Functions related to environment variables, including help functions.
void KiCopyFile(const wxString &aSrcPath, const wxString &aDestPath, wxString &aErrors)
static const std::string SymbolLibraryTableFileName
static const std::string ProjectFileExtension
static const std::string FootprintLibraryTableFileName
static const std::string ArchiveFileExtension
std::map< wxString, ENV_VAR_ITEM > ENV_VAR_MAP
@ TOOLBARS
The toolbar directory (e.g. ~/.config/kicad/toolbars/)
@ PROJECT
The settings directory inside a project folder.
@ USER
The main config directory (e.g. ~/.config/kicad/)
@ COLORS
The color scheme directory (e.g. ~/.config/kicad/colors/)
@ NONE
No directory prepended, full path in filename (used for PROJECT_FILE)
This file contains miscellaneous commonly used macros and functions.
KICOMMON_API wxString GetVersionedEnvVarName(const wxString &aBaseName)
Construct a versioned environment variable based on this KiCad major version.
void SetContextPath(const wxString &aPath)
Set the filesystem path used for repository discovery and relative file queries.
PGM_BASE & Pgm()
The global program "get" accessor.
PGM_BASE * PgmOrNull()
Return a reference that can be nullptr when running a shared lib from a script, not from a kicad app.
#define PROJECT_VAR_NAME
A variable name whose value holds the current project directory.
static void reloadFromFile(JSON_SETTINGS *aSettings, const wxString &aPath)
static wxString projectKey(const wxString &aFullPath)
static bool managerMayAutoSave(JSON_SETTINGS *aSettings)
#define PROJECT_BACKUPS_DIR_SUFFIX
Project settings path will be <projectname> + this.
int min_interval
Minimum time, in seconds, between subsequent backups.
unsigned long long limit_total_size
Maximum total size of backups (bytes), 0 for unlimited.
int limit_total_files
Maximum number of backup archives to retain.
BACKUP_LOCATION location
Where backups, history, and autosave files live.
int limit_daily_files
Maximum files to keep per day, 0 for unlimited.
BACKUP_FORMAT format
Backup format (incremental git history vs zip archives)
bool enabled
Automatically back up the project when files are saved.
Implement a participant in the KIWAY alchemy.
Hold a name of a symbol's field, field value, and default visibility.
Definition of file extensions used in Kicad.