KiCad PCB EDA Suite
Loading...
Searching...
No Matches
json_settings.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020 Jon Evans <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#ifndef _JSON_SETTINGS_H
22#define _JSON_SETTINGS_H
23
24#include <core/wx_stl_compat.h>
25
26#include <utility>
27#include <wx/string.h>
28
29#include <functional>
30#include <optional>
31#include <nlohmann/json_fwd.hpp>
32#include <json_conversions.h>
33
34#include <kicommon.h>
35
36class wxConfigBase;
37class NESTED_SETTINGS;
38class PARAM_BASE;
39class PROJECT;
41
42class wxAuiPaneInfo;
43struct BOM_FIELD;
44struct BOM_PRESET;
45struct BOM_FMT_PRESET;
46struct GRID;
47
48namespace KIGFX
49{
50class COLOR4D;
51enum class CROSS_HAIR_MODE : int;
52};
53
54#define traceSettings wxT( "KICAD_SETTINGS" )
55
64
65
68
70{
71public:
72 friend class NESTED_SETTINGS;
73
74 JSON_SETTINGS( const wxString& aFilename, SETTINGS_LOC aLocation, int aSchemaVersion ) :
75 JSON_SETTINGS( aFilename, aLocation, aSchemaVersion, true, true, true )
76 {}
77
78 JSON_SETTINGS( const wxString& aFilename, SETTINGS_LOC aLocation, int aSchemaVersion,
79 bool aCreateIfMissing, bool aCreateIfDefault, bool aWriteFile );
80
81 virtual ~JSON_SETTINGS();
82
83 // We own at least one list of raw pointers. Don't let the compiler fill in copy c'tors that
84 // will only land us in trouble.
85 JSON_SETTINGS( const JSON_SETTINGS& ) = delete;
87
88 wxString GetFilename() const { return m_filename; }
89
90 wxString GetFullFilename() const;
91
92 void SetFilename( const wxString& aFilename ) { m_filename = aFilename; }
93
94 void SetLocation( SETTINGS_LOC aLocation ) { m_location = aLocation; }
96
101 virtual const PROJECT* GetOwningProject() const { return nullptr; }
102
103 void SetLegacyFilename( const wxString& aFilename ) { m_legacy_filename = aFilename; }
104
105 bool IsReadOnly() const { return !m_writeFile; }
106 void SetReadOnly( bool aReadOnly ) { m_writeFile = !aReadOnly; }
107
112
113 nlohmann::json& At( const std::string& aPath );
114 bool Contains( const std::string& aPath ) const;
115
116 JSON_SETTINGS_INTERNALS* Internals();
117
121 virtual void Load();
122
128 virtual bool Store();
129
135 virtual bool LoadFromFile( const wxString& aDirectory = "" );
136
142 virtual bool SaveToFile( const wxString& aDirectory = "", bool aForce = false );
143
147 void ResetToDefaults();
148
155 std::optional<nlohmann::json> GetJson( const std::string& aPath ) const;
156
164 template<typename ValueType>
165 std::optional<ValueType> Get( const std::string& aPath ) const;
166
174 template<typename ValueType>
175 void Set( const std::string& aPath, ValueType aVal );
176
177 virtual std::map<std::string, nlohmann::json> GetFileHistories();
178
188 bool Migrate();
189
196 virtual bool MigrateFromLegacy( wxConfigBase* aLegacyConfig );
197
206 void AddNestedSettings( NESTED_SETTINGS* aSettings );
207
212 void ReleaseNestedSettings( NESTED_SETTINGS* aSettings );
213
214 void SetManager( SETTINGS_MANAGER* aManager )
215 {
216 m_manager = aManager;
217 }
218
225 static bool SetIfPresent( const nlohmann::json& aObj, const std::string& aPath,
226 wxString& aTarget );
227
234 static bool SetIfPresent( const nlohmann::json& aObj, const std::string& aPath, bool& aTarget );
235
242 static bool SetIfPresent( const nlohmann::json& aObj, const std::string& aPath, int& aTarget );
243
250 static bool SetIfPresent( const nlohmann::json& aObj, const std::string& aPath ,
251 unsigned int& aTarget );
252
253 const std::string FormatAsString();
254
255 bool LoadFromRawFile( const wxString& aPath );
256
257protected:
258
267 void registerMigration( int aOldSchemaVersion, int aNewSchemaVersion,
268 std::function<bool(void)> aMigrator );
269
277 template<typename ValueType>
278 bool fromLegacy( wxConfigBase* aConfig, const std::string& aKey, const std::string& aDest );
279
286 bool fromLegacyString( wxConfigBase* aConfig, const std::string& aKey,
287 const std::string& aDest );
288
295 bool fromLegacyColor( wxConfigBase* aConfig, const std::string& aKey,
296 const std::string& aDest );
297
298 virtual wxString getFileExt() const
299 {
300 return wxT( "json" );
301 }
302
303 virtual wxString getLegacyFileExt() const
304 {
305 return wxEmptyString;
306 }
307
315 template<typename ResultType>
316 static ResultType fetchOrDefault( const nlohmann::json& aJson, const std::string& aKey,
317 ResultType aDefault = ResultType() );
318
320 wxString m_filename;
321
324
327
329 std::vector<PARAM_BASE*> m_params;
330
332 std::vector<NESTED_SETTINGS*> m_nested_settings;
333
336
342
345
348
351
354
357
360
363
365 std::map<int, std::pair<int, std::function<bool()>>> m_migrators;
366
367 std::unique_ptr<JSON_SETTINGS_INTERNALS> m_internals;
368};
369
370// Specializations to allow conversion between wxString and std::string via JSON_SETTINGS API
371
372template<> KICOMMON_API std::optional<wxString> JSON_SETTINGS::Get( const std::string& aPath ) const;
373
374template<> KICOMMON_API void JSON_SETTINGS::Set<wxString>( const std::string& aPath, wxString aVal );
375
376// Specializations to allow directly reading/writing wxStrings from JSON
377
378KICOMMON_API void to_json( nlohmann::json& aJson, const wxString& aString );
379
380KICOMMON_API void from_json( const nlohmann::json& aJson, wxString& aString );
381
382extern template std::optional<bool> JSON_SETTINGS::Get<bool>( const std::string& aPath ) const;
383extern template std::optional<double> JSON_SETTINGS::Get<double>( const std::string& aPath ) const;
384extern template std::optional<float> JSON_SETTINGS::Get<float>( const std::string& aPath ) const;
385extern template std::optional<int> JSON_SETTINGS::Get<int>( const std::string& aPath ) const;
386extern template std::optional<unsigned int> JSON_SETTINGS::Get<unsigned int>( const std::string& aPath ) const;
387extern template std::optional<unsigned long long> JSON_SETTINGS::Get<unsigned long long>( const std::string& aPath ) const;
388extern template std::optional<std::string> JSON_SETTINGS::Get<std::string>( const std::string& aPath ) const;
389extern template std::optional<nlohmann::json> JSON_SETTINGS::Get<nlohmann::json>( const std::string& aPath ) const;
390extern template std::optional<KIGFX::COLOR4D> JSON_SETTINGS::Get<KIGFX::COLOR4D>( const std::string& aPath ) const;
391extern template std::optional<BOM_FIELD> JSON_SETTINGS::Get<BOM_FIELD>( const std::string& aPath ) const;
392extern template std::optional<BOM_PRESET> JSON_SETTINGS::Get<BOM_PRESET>( const std::string& aPath ) const;
393extern template std::optional<BOM_FMT_PRESET> JSON_SETTINGS::Get<BOM_FMT_PRESET>( const std::string& aPath ) const;
394extern template std::optional<GRID> JSON_SETTINGS::Get<GRID>( const std::string& aPath ) const;
395extern template std::optional<wxPoint> JSON_SETTINGS::Get<wxPoint>( const std::string& aPath ) const;
396extern template std::optional<wxSize> JSON_SETTINGS::Get<wxSize>( const std::string& aPath ) const;
397extern template std::optional<wxRect> JSON_SETTINGS::Get<wxRect>( const std::string& aPath ) const;
398extern template std::optional<wxAuiPaneInfo> JSON_SETTINGS::Get<wxAuiPaneInfo>( const std::string& aPath ) const;
399extern template std::optional<KIGFX::CROSS_HAIR_MODE> JSON_SETTINGS::Get<KIGFX::CROSS_HAIR_MODE>( const std::string& aPath ) const;
400
401#endif
KICAD_PLUGIN_EXPORT SCENEGRAPH * Load(char const *aFileName)
Read a model file and creates a generic display structure.
virtual wxString getFileExt() const
void Set(const std::string &aPath, ValueType aVal)
Stores a value into the JSON document Will throw an exception if ValueType isn't something that the l...
JSON_SETTINGS & operator=(const JSON_SETTINGS &)=delete
wxString m_filename
The filename (not including path) of this settings file (inicode)
SETTINGS_MANAGER * m_manager
A pointer to the settings manager managing this file (may be null)
SETTINGS_LOC GetLocation() const
bool m_isFutureFormat
Set to true if this settings is loaded from a file with a newer schema version than is known.
std::vector< NESTED_SETTINGS * > m_nested_settings
Nested settings files that live inside this one, if any.
bool m_modified
True if the JSON data store has been written to since the last file write.
bool m_createIfDefault
Whether or not the backing store file should be created if all parameters are still at their default ...
JSON_SETTINGS(const JSON_SETTINGS &)=delete
void SetLocation(SETTINGS_LOC aLocation)
bool m_writeFile
Whether or not the backing store file should be written.
virtual const PROJECT * GetOwningProject() const
Project-located settings override this to report the project they belong to so their save path is res...
void SetManager(SETTINGS_MANAGER *aManager)
bool IsReadOnly() const
void SetReadOnly(bool aReadOnly)
bool m_createIfMissing
Whether or not the backing store file should be created it if doesn't exist.
std::optional< ValueType > Get(const std::string &aPath) const
Fetches a value from within the JSON document.
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
JSON_SETTINGS(const wxString &aFilename, SETTINGS_LOC aLocation, int aSchemaVersion)
bool m_deleteLegacyAfterMigration
Whether or not to delete legacy file after migration.
std::unique_ptr< JSON_SETTINGS_INTERNALS > m_internals
friend class NESTED_SETTINGS
void SetFilename(const wxString &aFilename)
SETTINGS_LOC m_location
The location of this settings file (.
virtual wxString getLegacyFileExt() const
bool m_resetParamsIfMissing
Whether or not to set parameters to their default value if missing from JSON on Load()
void SetLegacyFilename(const wxString &aFilename)
std::map< int, std::pair< int, std::function< bool()> > > m_migrators
A map of starting schema version to a pair of <ending version, migrator function>
int m_schemaVersion
Version of this settings schema.
wxString m_legacy_filename
The filename of the wxConfig legacy file (if different from m_filename)
wxString GetFilename() const
A color representation with 4 components: red, green, blue, alpha.
Definition color4d.h:101
NESTED_SETTINGS is a JSON_SETTINGS that lives inside a JSON_SETTINGS.
Container for project specific data.
Definition project.h:62
@ NONE
Definition eda_shape.h:72
KICOMMON_API void to_json(nlohmann::json &aJson, const wxString &aString)
SETTINGS_LOC
@ 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/)
@ NESTED
Not stored in a file, but inside another JSON_SETTINGS.
KICOMMON_API void from_json(const nlohmann::json &aJson, wxString &aString)
#define KICOMMON_API
Definition kicommon.h:27
The Cairo implementation of the graphics abstraction layer.
Definition eda_group.h:29
Common grid settings, available to every frame.