KiCad PCB EDA Suite
Loading...
Searching...
No Matches
library_manager.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 * @author Jon Evans <[email protected]>
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 LIBRARY_MANAGER_H
22#define LIBRARY_MANAGER_H
23
24#include <future>
25#include <memory>
26#include <mutex>
27#include <shared_mutex>
28
29#include <kicommon.h>
30#include <ki_error.h>
32#include <io/io_base.h>
33
34
35class LIBRARY_MANAGER;
37class PROJECT;
38
39
48
51{
53 std::optional<LIBRARY_ERROR> error = std::nullopt;
54};
55
56
59{
60 std::unique_ptr<IO_BASE> plugin;
61 const LIBRARY_TABLE_ROW* row = nullptr;
63
64 // For an entry in the process-wide globalLibs() cache, the adapter that loaded it and so owns
65 // the lifetime of row. Its destructor evicts the entry; identity is by adapter, not by the
66 // reusable row pointer.
68
69 int modify_hash = -1;
70 std::vector<wxString> available_fields_cache;
71};
72
73
79{
80public:
89
91
92 LIBRARY_MANAGER& Manager() const;
93
95 virtual LIBRARY_TABLE_TYPE Type() const = 0;
96
99
101 std::optional<LIBRARY_TABLE*> ProjectTable() const;
102
103 std::optional<wxString> FindLibraryByURI( const wxString& aURI ) const;
104
106 std::vector<wxString> GetLibraryNames() const;
107
114 bool HasLibrary( const wxString& aNickname, bool aCheckEnabled = false ) const;
115
117 bool DeleteLibrary( const wxString& aNickname );
118
119 std::optional<wxString> GetLibraryDescription( const wxString& aNickname ) const;
120
122 std::vector<LIBRARY_TABLE_ROW*> Rows( LIBRARY_TABLE_SCOPE aScope = LIBRARY_TABLE_SCOPE::BOTH,
123 bool aIncludeInvalid = false ) const;
124
126 std::optional<LIBRARY_TABLE_ROW*> GetRow( const wxString& aNickname,
128
130 std::optional<LIBRARY_TABLE_ROW*> FindRowByURI( const wxString& aUri,
132
134 virtual void ProjectChanged();
135
137 void GlobalTablesChanged( std::initializer_list<LIBRARY_TABLE_TYPE> aChangedTables = {} );
138
145 void ProjectTablesChanged( std::initializer_list<LIBRARY_TABLE_TYPE> aChangedTables = {} );
146
151 void ProjectTablesReloaded( std::initializer_list<LIBRARY_TABLE_TYPE> aChangedTables = {} );
152
153 void CheckTableRow( LIBRARY_TABLE_ROW& aRow );
154
156 void AsyncLoad();
157
158 virtual std::optional<LIB_STATUS> LoadOne( LIB_DATA* aLib ) = 0;
159
161 virtual std::optional<LIB_STATUS> CheckLibrary( LIB_DATA* aLib ) { return LoadOne( aLib ); }
162
164 std::optional<float> AsyncLoadProgress() const;
165
166 void BlockUntilLoaded();
167
170 void AbortAsyncLoad();
171
172 bool IsLibraryLoaded( const wxString& aNickname );
173
175 std::optional<LIB_STATUS> GetLibraryStatus( const wxString& aNickname ) const;
176
178 std::vector<std::pair<wxString, LIB_STATUS>> GetLibraryStatuses() const;
179
181 std::vector<KI_ERROR> GetLibraryLoadErrors() const;
182
183 void ReloadLibraryEntry( const wxString& aNickname,
185
188 std::optional<LIB_STATUS> LoadLibraryEntry( const wxString& aNickname );
189
191 virtual bool IsWritable( const wxString& aNickname ) const;
192
194 bool CreateLibrary( const wxString& aNickname );
195
196 virtual bool SupportsConfigurationDialog( const wxString& aNickname ) const { return false; }
197
198 virtual int ShowConfigurationDialog( const wxString& aNickname, wxWindow* aParent ) const { return wxID_CANCEL; }
199
200 virtual std::optional<LIBRARY_ERROR> LibraryError( const wxString& aNickname ) const;
201
202protected:
203 virtual std::map<wxString, LIB_DATA>& globalLibs() = 0;
204 virtual std::map<wxString, LIB_DATA>& globalLibs() const = 0;
205 virtual std::shared_mutex& globalLibsMutex() = 0;
206 virtual std::shared_mutex& globalLibsMutex() const = 0;
207
211 virtual void enumerateLibrary( LIB_DATA* aLib, const wxString& aUri ) = 0;
212
213 wxString getUri( const LIBRARY_TABLE_ROW* aRow ) const;
214
215 std::optional<const LIB_DATA*> fetchIfLoaded( const wxString& aNickname ) const;
216
217 std::optional<LIB_DATA*> fetchIfLoaded( const wxString& aNickname );
218
220 LIBRARY_RESULT<LIB_DATA*> loadIfNeeded( const wxString& aNickname );
221
222 LIBRARY_RESULT<LIB_DATA*> loadFromScope( const wxString& aNickname,
223 LIBRARY_TABLE_SCOPE aScope,
224 std::map<wxString, LIB_DATA>& aTarget,
225 std::shared_mutex& aMutex );
226
233
235 void abortLoad();
236
244 void resetProjectCache();
245
248
249 virtual IO_BASE* plugin( const LIB_DATA* aRow ) = 0;
250
258 static std::recursive_mutex& pluginMutex( const wxString& aNickname );
259
261
262 // The actual library content is held in an associated IO plugin
263 std::map<wxString, LIB_DATA> m_libraries;
264
265 mutable std::shared_mutex m_librariesMutex;
266
267 std::atomic_bool m_abort;
268 std::vector<std::future<void>> m_futures;
269
270 std::atomic<size_t> m_loadCount{ 0 };
271 std::atomic<size_t> m_loadTotal{ 0 };
272 std::mutex m_loadMutex;
273};
274
275
277{
278public:
280 explicit LIBRARY_MANAGER( const PROJECT* aProject = nullptr );
281
282 const PROJECT& Project() const;
283 bool IsProjectScoped() const { return m_project != nullptr; }
284
286
289
290 static wxString DefaultGlobalTablePath( LIBRARY_TABLE_TYPE aType );
291
292 static wxString StockTablePath( LIBRARY_TABLE_TYPE aType );
293
301 static wxString StockTableTokenizedURI( LIBRARY_TABLE_TYPE aType );
302
313 static wxString StockTableReferenceURI( LIBRARY_TABLE_TYPE aType );
314
315 static bool IsTableValid( const wxString& aPath );
316
318 static bool GlobalTablesValid();
319
321 static std::vector<LIBRARY_TABLE_TYPE> InvalidGlobalTables();
322
323 static bool CreateGlobalTable( LIBRARY_TABLE_TYPE aType, bool aPopulateDefaultLibraries );
324
326 void LoadGlobalTables( std::initializer_list<LIBRARY_TABLE_TYPE> aTablesToLoad = {} );
327
329 void LoadProjectTables( std::initializer_list<LIBRARY_TABLE_TYPE> aTablesToLoad = {} );
330
331 void ReloadTables( LIBRARY_TABLE_SCOPE aScope, std::initializer_list<LIBRARY_TABLE_TYPE> aTablesToLoad = {} );
332
334 void ProjectChanged();
335
339 void AbortAsyncLoads();
340
341 void RegisterAdapter( LIBRARY_TABLE_TYPE aType,
342 std::unique_ptr<LIBRARY_MANAGER_ADAPTER>&& aAdapter );
343
344 bool RemoveAdapter( LIBRARY_TABLE_TYPE aType, LIBRARY_MANAGER_ADAPTER* aAdapter );
345
346 std::optional<LIBRARY_MANAGER_ADAPTER*> Adapter( LIBRARY_TABLE_TYPE aType ) const;
347
356 std::optional<LIBRARY_TABLE*> Table( LIBRARY_TABLE_TYPE aType,
357 LIBRARY_TABLE_SCOPE aScope );
358
366 std::vector<LIBRARY_TABLE_ROW*> Rows( LIBRARY_TABLE_TYPE aType,
368 bool aIncludeInvalid = false ) const;
369
377 std::optional<LIBRARY_TABLE_ROW*> GetRow( LIBRARY_TABLE_TYPE aType, const wxString &aNickname,
379
380 std::optional<LIBRARY_TABLE_ROW*> FindRowByURI( LIBRARY_TABLE_TYPE aType, const wxString &aUri,
382
383 void ReloadLibraryEntry( LIBRARY_TABLE_TYPE aType, const wxString& aNickname,
385
388 std::optional<LIB_STATUS> LoadLibraryEntry( LIBRARY_TABLE_TYPE aType,
389 const wxString& aNickname );
390
391 void LoadProjectTables( const wxString& aProjectPath,
392 std::initializer_list<LIBRARY_TABLE_TYPE> aTablesToLoad = {} );
393
403 std::optional<wxString> GetFullURI( LIBRARY_TABLE_TYPE aType, const wxString& aNickname,
404 bool aSubstituted = false );
405
406 static wxString GetFullURI( const LIBRARY_TABLE_ROW* aRow, bool aSubstituted = false,
407 const PROJECT* aProject = nullptr );
408
409 static wxString ExpandURI( const wxString& aShortURI, const PROJECT& aProject );
410
411 static bool UrisAreEquivalent( const wxString& aURI1, const wxString& aURI2 );
412
424 static bool IsPcmManagedRow( const LIBRARY_TABLE_ROW& aRow );
425
429 void ApplyLibOverrides( LIBRARY_TABLE& aTable );
430
439 void SetLibOverride( const wxString& aTablePath, const wxString& aNickname,
440 bool aDisabled, bool aHidden );
441
443 void ClearLibOverride( const wxString& aTablePath, const wxString& aNickname );
444
445private:
446 void loadTables( const wxString& aTablePath, LIBRARY_TABLE_SCOPE aScope,
447 std::vector<LIBRARY_TABLE_TYPE> aTablesToLoad = {} );
448
449 void loadNestedTables( LIBRARY_TABLE& aTable );
450
452 void applyLibOverrides( LIBRARY_TABLE& aTable );
453
454 static wxString tableFileName( LIBRARY_TABLE_TYPE aType );
455
456 void createEmptyTable( LIBRARY_TABLE_TYPE aType, LIBRARY_TABLE_SCOPE aScope );
457
458 const PROJECT* const m_project;
459 std::map<LIBRARY_TABLE_TYPE, std::unique_ptr<LIBRARY_TABLE>> m_tables;
460
462 std::map<wxString, std::unique_ptr<LIBRARY_TABLE>> m_childTables;
463
464 // TODO: support multiple projects
465 std::map<LIBRARY_TABLE_TYPE, std::unique_ptr<LIBRARY_TABLE>> m_projectTables;
466
467 std::map<LIBRARY_TABLE_TYPE, std::unique_ptr<LIBRARY_MANAGER_ADAPTER>> m_adapters;
468
469 mutable std::mutex m_adaptersMutex;
470
471 typedef std::tuple<LIBRARY_TABLE_TYPE, LIBRARY_TABLE_SCOPE, wxString> ROW_CACHE_KEY;
472
473 std::map<ROW_CACHE_KEY, LIBRARY_TABLE_ROW*> m_rowCache;
474 mutable std::mutex m_rowCacheMutex;
475};
476
477#endif //LIBRARY_MANAGER_H
The interface used by the classes that actually can load IO plugins for the different parts of KiCad ...
virtual std::optional< LIB_STATUS > LoadOne(LIB_DATA *aLib)=0
void resetProjectCache()
Aborts pending loads and resets every project-scope cache entry in place (plugin and row cleared,...
virtual std::shared_mutex & globalLibsMutex() const =0
std::optional< LIBRARY_TABLE * > ProjectTable() const
Retrieves the project library table for this adapter type, or nullopt if one doesn't exist.
virtual void enumerateLibrary(LIB_DATA *aLib, const wxString &aUri)=0
Override in derived class to perform library-specific enumeration.
LIBRARY_TABLE * GlobalTable() const
Retrieves the global library table for this adapter type.
virtual std::shared_mutex & globalLibsMutex()=0
void evictOwnedGlobalEntries()
Erases this adapter's own entries (LIB_DATA::global_owner == this) from the process-wide globalLibs()...
LIBRARY_MANAGER_ADAPTER(LIBRARY_MANAGER &aManager)
Constructs a type-specific adapter into the library manager.
std::vector< LIBRARY_TABLE_ROW * > Rows(LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH, bool aIncludeInvalid=false) const
Like LIBRARY_MANAGER::Rows but filtered to the LIBRARY_TABLE_TYPE of this adapter.
std::optional< LIBRARY_TABLE_ROW * > FindRowByURI(const wxString &aUri, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH) const
Like LIBRARY_MANAGER::FindRowByURI but filtered to the LIBRARY_TABLE_TYPE of this adapter.
wxString getUri(const LIBRARY_TABLE_ROW *aRow) const
virtual std::map< wxString, LIB_DATA > & globalLibs()=0
virtual LIBRARY_TABLE_TYPE Type() const =0
The type of library table this adapter works with.
bool DeleteLibrary(const wxString &aNickname)
Deletes the given library from disk if it exists; returns true if deleted.
LIBRARY_RESULT< LIB_DATA * > loadIfNeeded(const wxString &aNickname)
Fetches a loaded library, triggering a load of that library if it isn't loaded yet.
std::optional< wxString > FindLibraryByURI(const wxString &aURI) const
std::shared_mutex m_librariesMutex
LIBRARY_MANAGER & Manager() const
void abortLoad()
Aborts any async load in progress; blocks until fully done aborting.
std::optional< wxString > GetLibraryDescription(const wxString &aNickname) const
virtual LIBRARY_RESULT< IO_BASE * > createPlugin(const LIBRARY_TABLE_ROW *row)=0
Creates a concrete plugin for the given row.
void GlobalTablesChanged(std::initializer_list< LIBRARY_TABLE_TYPE > aChangedTables={})
Notify the adapter that the global library tables have changed.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
std::optional< LIBRARY_TABLE_ROW * > GetRow(const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope=LIBRARY_TABLE_SCOPE::BOTH) const
Like LIBRARY_MANAGER::GetRow but filtered to the LIBRARY_TABLE_TYPE of this adapter.
std::map< wxString, LIB_DATA > m_libraries
virtual IO_BASE * plugin(const LIB_DATA *aRow)=0
std::vector< wxString > GetLibraryNames() const
Returns a list of library nicknames that are available (skips any that failed to load)
LIBRARY_RESULT< LIB_DATA * > loadFromScope(const wxString &aNickname, LIBRARY_TABLE_SCOPE aScope, std::map< wxString, LIB_DATA > &aTarget, std::shared_mutex &aMutex)
virtual std::optional< LIB_STATUS > CheckLibrary(LIB_DATA *aLib)
Validates that a library is loadable. May not necessarily load the library!
std::vector< std::future< void > > m_futures
virtual bool SupportsConfigurationDialog(const wxString &aNickname) const
static std::recursive_mutex & pluginMutex(const wxString &aNickname)
Serializes access to a library's shared plugin instance so its single mutable cache is not raced by c...
std::atomic< size_t > m_loadTotal
virtual int ShowConfigurationDialog(const wxString &aNickname, wxWindow *aParent) const
virtual std::map< wxString, LIB_DATA > & globalLibs() const =0
std::atomic< size_t > m_loadCount
LIBRARY_MANAGER & m_manager
std::optional< const LIB_DATA * > fetchIfLoaded(const wxString &aNickname) const
static wxString StockTableTokenizedURI(LIBRARY_TABLE_TYPE aType)
const PROJECT *const m_project
std::mutex m_rowCacheMutex
std::map< wxString, std::unique_ptr< LIBRARY_TABLE > > m_childTables
Map of full URI to table object for tables that are referenced by global or project tables.
std::map< ROW_CACHE_KEY, LIBRARY_TABLE_ROW * > m_rowCache
const PROJECT & Project() const
std::mutex m_adaptersMutex
static wxString DefaultGlobalTablePath(LIBRARY_TABLE_TYPE aType)
static std::vector< LIBRARY_TABLE_TYPE > InvalidGlobalTables()
static bool GlobalTablesValid()
std::map< LIBRARY_TABLE_TYPE, std::unique_ptr< LIBRARY_TABLE > > m_projectTables
LIBRARY_MANAGER(const LIBRARY_MANAGER &)=delete
bool IsProjectScoped() const
static bool CreateGlobalTable(LIBRARY_TABLE_TYPE aType, bool aPopulateDefaultLibraries)
void LoadGlobalTables(std::initializer_list< LIBRARY_TABLE_TYPE > aTablesToLoad={})
(Re)loads the global library tables in the given list, or all tables if no list is given
std::map< LIBRARY_TABLE_TYPE, std::unique_ptr< LIBRARY_TABLE > > m_tables
LIBRARY_MANAGER & operator=(const LIBRARY_MANAGER &)=delete
std::tuple< LIBRARY_TABLE_TYPE, LIBRARY_TABLE_SCOPE, wxString > ROW_CACHE_KEY
static wxString StockTableReferenceURI(LIBRARY_TABLE_TYPE aType)
static wxString StockTablePath(LIBRARY_TABLE_TYPE aType)
static bool IsTableValid(const wxString &aPath)
LIBRARY_MANAGER(const PROJECT *aProject=nullptr)
An explicit project is borrowed until this manager and its adapters are destroyed.
std::map< LIBRARY_TABLE_TYPE, std::unique_ptr< LIBRARY_MANAGER_ADAPTER > > m_adapters
Container for project specific data.
Definition project.h:63
void ProjectChanged() override
#define KICOMMON_API
Definition kicommon.h:27
LOAD_STATUS
Status of a library load managed by a library adapter.
tl::expected< ResultType, LIBRARY_ERROR > LIBRARY_RESULT
LIBRARY_TABLE_TYPE
LIBRARY_TABLE_SCOPE
Storage for an actual loaded library (including library content owned by the plugin)
std::vector< wxString > available_fields_cache
LIB_STATUS status
std::unique_ptr< IO_BASE > plugin
const LIBRARY_MANAGER_ADAPTER * global_owner
const LIBRARY_TABLE_ROW * row
The overall status of a loaded or loading library.
std::optional< LIBRARY_ERROR > error
LOAD_STATUS load_status