25#include <wx/filename.h>
26#include <wx/snglinst.h>
27#include <wx/stdpaths.h>
54 m_headless( aHeadless ),
56 m_common_settings( nullptr ),
58 m_migrateLibraryTables( true )
79 if( !wxFileExists( commonSettings.GetFullPath() ) )
94 for( std::unique_ptr<JSON_SETTINGS>& settings :
m_settings )
105 std::unique_ptr<JSON_SETTINGS> ptr( aSettings );
107 ptr->SetManager(
this );
109 wxLogTrace(
traceSettings, wxT(
"Registered new settings object <%s>" ),
110 ptr->GetFullFilename() );
124 std::vector<JSON_SETTINGS*> toLoad;
128 []( std::unique_ptr<JSON_SETTINGS>& aSettings )
130 return aSettings.get();
141 [&aSettings](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
143 return aPtr.get() == aSettings;
174 [&aSettings](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
176 return aPtr.get() == aSettings;
181 wxLogTrace(
traceSettings, wxT(
"Saving %s" ), ( *it )->GetFullFilename() );
190 [&aSettings](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
192 return aPtr.get() == aSettings;
197 wxLogTrace(
traceSettings, wxT(
"Flush and release %s" ), ( *it )->GetFullFilename() );
203 size_t typeHash =
typeid( *tmp ).hash_code();
221 [&aName](
const std::pair<wxString, COLOR_SETTINGS*>& p )
223 return p.second->GetName().Lower() == aName.Lower();
254 wxLogTrace(
traceSettings, wxT(
"Attempting to load color theme %s" ), aName );
258 if( !fn.IsOk() || !fn.Exists() )
260 wxLogTrace(
traceSettings, wxT(
"Theme file %s.json not found, falling back to user" ),
267 if( settings->
GetFilename() != aName.ToStdString() )
269 wxLogTrace(
traceSettings, wxT(
"Warning: stored filename is actually %s, " ),
290 wxDirTraverseResult
OnFile(
const wxString& aFilePath )
override
292 wxFileName file( aFilePath );
294 if( file.GetExt() == wxS(
"json" ) )
297 return wxDIR_CONTINUE;
300 wxDirTraverseResult
OnDir(
const wxString& dirPath )
override
302 return wxDIR_CONTINUE;
322 if( aName.EndsWith( wxT(
".json" ) ) )
334 settings->
SetName( wxT(
"User" ) );
354 wxFileName third_party_path;
358 if( it != env.end() && !it->second.GetValue().IsEmpty() )
359 third_party_path.SetPath( it->second.GetValue() );
363 third_party_path.AppendDir( wxS(
"colors" ) );
366 wxDir third_party_colors_dir( third_party_path.GetFullPath() );
381 [&](
const wxFileName& aFilename )
387 if( system_colors_dir.IsOpened() )
388 system_colors_dir.Traverse( readOnlyLoader );
390 if( third_party_colors_dir.IsOpened() )
391 third_party_colors_dir.Traverse( readOnlyLoader );
393 if( colors_dir.IsOpened() )
394 colors_dir.Traverse( loader );
409 [aSettings] (
const std::pair<wxString, COLOR_SETTINGS*>& el )
411 return el.second->GetFilename() == aSettings->GetFilename();
418 if( !aSettings->
Store() )
420 wxLogTrace(
traceSettings, wxT(
"Color scheme %s not modified; skipping save" ),
425 wxASSERT( aSettings->
Contains( aNamespace ) );
427 wxLogTrace(
traceSettings, wxT(
"Saving color scheme %s, preserving %s" ),
431 std::optional<nlohmann::json> backup = aSettings->
GetJson( aNamespace );
437 ( *aSettings->
Internals() )[aNamespace].update( *backup );
447 wxASSERT( aSettings );
451 case SETTINGS_LOC::USER:
454 case SETTINGS_LOC::PROJECT:
458 case SETTINGS_LOC::COLORS:
461 case SETTINGS_LOC::TOOLBARS:
464 case SETTINGS_LOC::NONE:
468 wxASSERT_MSG(
false, wxT(
"Unknown settings location!" ) );
493 wxDirTraverseResult
OnFile(
const wxString& aSrcFilePath )
override
495 wxFileName file( aSrcFilePath );
500 return wxDIR_CONTINUE;
504 if( file.GetFullName() == wxT(
"installed_packages.json" ) )
505 return wxDIR_CONTINUE;
509 if( file.GetExt() == wxT(
"hotkeys" ) )
510 return wxDIR_CONTINUE;
512 wxString
path = file.GetPath();
515 file.SetPath(
path );
517 wxLogTrace(
traceSettings, wxT(
"Copying %s to %s" ), aSrcFilePath, file.GetFullPath() );
522 return wxDIR_CONTINUE;
525 wxDirTraverseResult
OnDir(
const wxString& dirPath )
override
527 wxFileName dir( dirPath );
530 if( dir.GetName() == wxS(
"colors" ) ||
531 dir.GetName() == wxS(
"3d" ) )
534 wxString
path = dir.GetPath();
539 wxMkdir( dir.GetFullPath() );
541 return wxDIR_CONTINUE;
554 wxLogTrace(
traceSettings, wxT(
"Using settings path %s" ),
path.GetFullPath() );
562 if( !
path.DirExists() )
564 wxLogTrace(
traceSettings, wxT(
"Path didn't exist; creating it" ) );
565 path.Mkdir( wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL );
568 wxLogTrace(
traceSettings, wxT(
"Settings migration not checked; running headless" ) );
572 if(
path.DirExists() )
574 wxFileName common =
path;
575 common.SetName( wxS(
"kicad_common" ) );
576 common.SetExt( wxS(
"json" ) );
578 if( common.Exists() )
580 wxLogTrace(
traceSettings, wxT(
"Path exists and has a kicad_common, continuing!" ) );
590 wxLogTrace(
traceSettings, wxT(
"Migration dialog canceled; exiting" ) );
594 if( !
path.DirExists() )
596 wxLogTrace(
traceSettings, wxT(
"Path didn't exist; creating it" ) );
597 path.Mkdir( wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL );
602 wxLogTrace(
traceSettings, wxT(
"No migration source given; starting with defaults" ) );
611 source_dir.Traverse( traverser );
623 const std::vector<wxString> libKeys = {
624 wxT(
"KICAD6_SYMBOL_DIR" ),
625 wxT(
"KICAD6_3DMODEL_DIR" ),
626 wxT(
"KICAD6_FOOTPRINT_DIR" ),
627 wxT(
"KICAD6_TEMPLATE_DIR" ),
628 wxT(
"KICAD7_SYMBOL_DIR" ),
629 wxT(
"KICAD7_3DMODEL_DIR" ),
630 wxT(
"KICAD7_FOOTPRINT_DIR" ),
631 wxT(
"KICAD7_TEMPLATE_DIR" ),
632 wxT(
"KICAD8_SYMBOL_DIR" ),
633 wxT(
"KICAD8_3DMODEL_DIR" ),
634 wxT(
"KICAD8_FOOTPRINT_DIR" ),
635 wxT(
"KICAD8_TEMPLATE_DIR" ),
638 wxT(
"KICAD_PTEMPLATES" ),
641 wxT(
"KICAD_SYMBOL_DIR" ),
644 for(
const wxString& key : libKeys )
661 std::vector<wxFileName> base_paths;
666 if( wxGetEnv( wxT(
"KICAD_CONFIG_HOME" ),
nullptr ) )
677 wxFileName wxGtkPath;
678 wxGtkPath.AssignDir( wxS(
"~/.config/kicad" ) );
679 wxGtkPath.MakeAbsolute();
680 base_paths.emplace_back( wxGtkPath );
683 wxGtkPath.AssignDir( wxS(
"~/.var/app/org.kicad.KiCad/config/kicad" ) );
684 wxGtkPath.MakeAbsolute();
685 base_paths.emplace_back( wxGtkPath );
692 auto check_dir = [&] (
const wxString& aSubDir )
697 wxString sub_path = dir.GetNameWithSep() + aSubDir;
701 aPaths->push_back( sub_path );
702 wxLogTrace(
traceSettings, wxT(
"GetPreviousVersionName: %s is valid" ), sub_path );
707 std::set<wxString> checkedPaths;
709 for(
const wxFileName& base_path : base_paths )
711 if( checkedPaths.count( base_path.GetFullPath() ) )
714 checkedPaths.insert( base_path.GetFullPath() );
716 if( !dir.Open( base_path.GetFullPath() ) )
718 wxLogTrace(
traceSettings, wxT(
"GetPreviousVersionName: could not open base path %s" ),
719 base_path.GetFullPath() );
723 wxLogTrace(
traceSettings, wxT(
"GetPreviousVersionName: checking base path %s" ),
724 base_path.GetFullPath() );
726 if( dir.GetFirst( &subdir, wxEmptyString, wxDIR_DIRS ) )
731 while( dir.GetNext( &subdir ) )
742 wxT(
"GetPreviousVersionName: root path %s is valid" ), dir.GetName() );
743 aPaths->push_back( dir.GetName() );
749 wxFileName fulldir = wxFileName::DirName( aPath );
750 const wxArrayString& dirs = fulldir.GetDirs();
752 if( dirs.empty() || !fulldir.IsDirReadable() )
755 std::string ver = dirs.back().ToStdString();
763 std::sort( aPaths->begin(), aPaths->end(),
764 [&](
const wxString& a,
const wxString& b ) ->
bool
766 wxFileName aPath = wxFileName::DirName( a );
767 wxFileName bPath = wxFileName::DirName( b );
769 const wxArrayString& aDirs = aPath.GetDirs();
770 const wxArrayString& bDirs = bPath.GetDirs();
778 std::string verA = aDirs.back().ToStdString();
779 std::string verB = bDirs.back().ToStdString();
781 if( !extractVersion( verA ) )
784 if( !extractVersion( verB ) )
787 return compareVersions( verA, verB ) >= 0;
790 return aPaths->size() > 0;
796 wxFileName
test( aPath, wxS(
"kicad_common" ) );
801 test.SetExt(
"json" );
803 return test.Exists();
812 path.AppendDir( wxS(
"colors" ) );
814 if( !
path.DirExists() )
816 if( !wxMkdir(
path.GetPath() ) )
819 wxT(
"GetColorSettingsPath(): Path %s missing and could not be created!" ),
824 return path.GetPath();
833 path.AppendDir( wxS(
"toolbars" ) );
835 if( !
path.DirExists() )
837 if( !wxMkdir(
path.GetPath() ) )
840 wxT(
"GetToolbarSettingsPath(): Path %s missing and could not be created!" ),
845 return path.GetPath();
865 wxLogTrace(
traceSettings, wxT(
"compareSettingsVersions: bad input (%s, %s)" ),
874 else if( a_maj > b_maj )
884 else if( a_min > b_min )
898 std::regex re_version(
"(\\d+)\\.(\\d+)" );
901 if( std::regex_match( aVersionString, match, re_version ) )
905 int major = std::stoi( match[1].str() );
906 int minor = std::stoi( match[2].str() );
929 wxFileName
path( aFullPath );
934 wxString fullPath =
path.GetFullPath();
942 bool readOnly =
false;
945 if( !lockFile.
Valid() )
947 wxLogTrace(
traceSettings, wxT(
"Project %s is locked; opening read-only" ), fullPath );
959 [&](
const std::unique_ptr<PROJECT>& ptr )
961 return ptr.get() == oldProject;
968 wxLogTrace(
traceSettings, wxT(
"Load project %s" ), fullPath );
970 std::unique_ptr<PROJECT>
project = std::make_unique<PROJECT>();
971 project->setProjectFullName( fullPath );
977 wxFileName projectPath( fullPath );
981 if( !projectPath.GetPath().IsEmpty() && wxTheApp && wxTheApp->IsGUI() )
982 wxSetWorkingDirectory( projectPath.GetPath() );
989 project->SetReadOnly( readOnly ||
project->GetProjectFile().IsReadOnly() );
991 if( lockFile && aSetActive )
998 wxString fn(
path.GetName() );
1007 m_projects[fullPath]->setLocalSettings( settings );
1025 wxLogTrace(
traceSettings, wxT(
"Unload project %s" ), projectPath );
1031 [&](
const std::unique_ptr<PROJECT>& ptr )
1033 return ptr.get() == toRemove;
1041 if( wasActiveProject )
1079 && !
m_projects.begin()->second->GetProjectFullName().IsEmpty() );
1094 std::vector<wxString> ret;
1096 for(
const std::pair<const wxString, PROJECT*>& pair :
m_projects )
1099 if( !pair.first.IsEmpty() )
1100 ret.emplace_back( pair.first );
1112 wxString
path = aFullPath;
1127 project->SaveToFile( projectPath );
1141 if( aFullPath.IsSameAs( oldName ) )
1150 wxFileName fn( aFullPath );
1159 project->SetFilename( fn.GetName() );
1160 project->SaveToFile( fn.GetPath() );
1179 wxString oldName =
project->GetFilename();
1180 wxFileName fn( aFullPath );
1182 bool readOnly =
project->IsReadOnly();
1183 project->SetReadOnly(
false );
1185 project->SetFilename( fn.GetName() );
1186 project->SaveToFile( fn.GetPath() );
1187 project->SetFilename( oldName );
1195 project->SetReadOnly( readOnly );
1202 wxString fn( fullFn.GetName() );
1211 wxString
path( fullFn.GetPath() );
1233 [&file](
const std::unique_ptr<JSON_SETTINGS>& aPtr )
1235 return aPtr.get() == file;
1247 ( *it )->SaveToFile( projectPath );
1269 wxDateTime timestamp = wxDateTime::Now();
1271 wxString fileName = wxString::Format( wxT(
"%s-%s" ),
Prj().GetProjectName(),
1274 if( !aTarget.IsOk() )
1277 aTarget.SetName( fileName );
1281 wxString
test = aTarget.GetPath();
1283 if( !aTarget.DirExists() && !wxMkdir( aTarget.GetPath() ) )
1285 wxLogTrace(
traceSettings, wxT(
"Could not create project backup path %s" ),
1286 aTarget.GetPath() );
1290 if( !aTarget.IsDirWritable() )
1292 wxLogTrace(
traceSettings, wxT(
"Backup directory %s is not writable" ),
1293 aTarget.GetPath() );
1297 wxLogTrace(
traceSettings, wxT(
"Backing up project to %s" ), aTarget.GetPath() );
1307 std::function<
bool(
const wxString& )> aCond ) :
1313 wxDirTraverseResult
OnFile(
const wxString& aFile )
override
1316 m_files.emplace_back( aFile );
1318 return wxDIR_CONTINUE;
1321 wxDirTraverseResult
OnDir(
const wxString& aDirName )
override
1323 return wxDIR_CONTINUE;
1343 [&prefix](
const wxString& aFile )
1346 wxString fn( wxFileName( aFile ).GetName() );
1347 fn.Replace( prefix, wxS(
"" ) );
1352 wxFileName projectPath(
Prj().GetProjectPath() );
1355 if( !projectPath.IsOk() || !projectPath.Exists() || !projectPath.IsDirWritable() )
1360 if( !wxDirExists( backupPath ) )
1362 wxLogTrace(
traceSettings, wxT(
"Backup path %s doesn't exist, creating it" ), backupPath );
1364 if( !wxMkdir( backupPath ) )
1366 wxLogTrace(
traceSettings, wxT(
"Could not create backups path! Skipping backup" ) );
1371 wxDir dir( backupPath );
1373 if( !dir.IsOpened() )
1375 wxLogTrace(
traceSettings, wxT(
"Could not open project backups path %s" ), dir.GetName() );
1379 std::vector<wxString> files;
1382 [&modTime](
const wxString& aFile )
1384 return modTime( aFile ).IsValid();
1387 dir.Traverse( traverser, wxT(
"*.zip" ) );
1390 std::sort( files.begin(), files.end(),
1391 [&](
const wxString& aFirst,
const wxString& aSecond ) ->
bool
1393 wxDateTime first = modTime( aFirst );
1394 wxDateTime second = modTime( aSecond );
1396 return first.GetTicks() > second.GetTicks();
1400 if( !files.empty() )
1402 wxDateTime lastTime = modTime( files[0] );
1404 if( lastTime.IsValid() )
1406 wxTimeSpan
delta = wxDateTime::Now() - modTime( files[0] );
1417 if( !backupSuccessful )
1421 files.insert( files.begin(), target.GetFullPath() );
1424 if( files.size() >= 2
1427 wxRemoveFile( files[0] );
1438 wxRemoveFile( files.back() );
1446 wxULongLong totalSize = 0;
1448 for(
const wxString& file : files )
1449 totalSize += wxFileName::GetSize( file );
1451 while( !files.empty() && totalSize >
static_cast<wxULongLong
>( settings.
limit_total_size ) )
1453 totalSize -= wxFileName::GetSize( files.back() );
1454 wxRemoveFile( files.back() );
1462 wxDateTime day = modTime( files[0] );
1465 wxASSERT( day.IsValid() );
1467 std::vector<wxString> filesToDelete;
1469 for(
size_t i = 1; i < files.size(); i++ )
1471 wxDateTime dt = modTime( files[i] );
1473 if( dt.IsSameDate( day ) )
1478 filesToDelete.emplace_back( files[i] );
1487 for(
const wxString& file : filesToDelete )
1488 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_DEFAULT
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
SETTINGS_LOC GetLocation() const
virtual bool LoadFromFile(const wxString &aDirectory="")
Loads the backing file from disk and then calls Load()
virtual void Load()
Updates the parameters of this object based on the current JSON document contents.
void SetReadOnly(bool aReadOnly)
wxString GetFullFilename() const
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
virtual void ProjectChanged()
Calls ProjectChanged() on all KIWAY_PLAYERs.
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 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
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.
bool ShouldAutoSave() const
void SetProject(PROJECT *aProject)
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.
static int compareVersions(const std::string &aFirst, const std::string &aSecond)
Compare two settings versions, like "5.99" and "6.0".
std::unique_ptr< LOCKFILE > m_project_lock
Lock for loaded project (expand to multiple once we support MDI).
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.
COLOR_SETTINGS * GetColorSettings(const wxString &aName="user")
Retrieve a color settings object that applications can read colors from.
T * RegisterSettings(T *aSettings, bool aLoadNow=true)
Take ownership of the pointer passed in.
void SaveProjectCopy(const wxString &aFullPath, PROJECT *aProject=nullptr)
Save a copy of the current project under the given path.
bool MigrateIfNeeded()
Handle the initialization of the user settings directory and migration from previous KiCad versions a...
wxString m_migration_source
void SaveColorSettings(COLOR_SETTINGS *aSettings, const std::string &aNamespace="")
Safely save a COLOR_SETTINGS to disk, preserving any changes outside the given namespace.
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)
bool m_headless
True if running outside a UI context.
SETTINGS_MANAGER(bool aHeadless=false)
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.
wxString GetProjectBackupsPath() const
bool LoadProject(const wxString &aFullPath, bool aSetActive=true)
Load a project or sets up a new project with a specified path.
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
COLOR_SETTINGS * loadColorSettingsByName(const wxString &aName)
Attempt to load a color theme by name (the color theme directory and .json ext are assumed).
bool IsProjectOpen() const
Helper for checking if we have a project open.
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 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.
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
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 LegacyProjectFileExtension
static const std::string FootprintLibraryTableFileName
static const std::string ArchiveFileExtension
std::map< wxString, ENV_VAR_ITEM > ENV_VAR_MAP
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 delete_if(_Container &__c, _Function &&__f)
Deletes all values from __c for which __f returns true.
PGM_BASE & Pgm()
The global program "get" accessor.
#define PROJECT_VAR_NAME
A variable name whose value holds the current project directory.
#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.
int limit_daily_files
Maximum files to keep per day, 0 for unlimited.
bool enabled
Automatically back up the project when files are saved.
Definition of file extensions used in Kicad.