KiCad PCB EDA Suite
Loading...
Searching...
No Matches
footprint_library_adapter.cpp
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
22
23#include <chrono>
24#include <env_vars.h>
25#include <footprint_info_impl.h>
26#include <thread_pool.h>
27#include <trace_helpers.h>
28#include <footprint.h>
29
30#include <magic_enum.hpp>
31#include <wx/hash.h>
32#include <wx/log.h>
33
34using namespace std::chrono_literals;
35
36
38
40
42
44
46
47
52
53
58
59
61{
62 return ENV_VAR::GetVersionedEnvVarName( wxS( "FOOTPRINT_DIR" ) );
63}
64
65
66void FOOTPRINT_LIBRARY_ADAPTER::enumerateLibrary( LIB_DATA* aLib, const wxString& aUri )
67{
68 wxArrayString namesAS;
69 std::map<std::string, UTF8> options = aLib->row->GetOptionsMap();
70 PCB_IO* plugin = pcbplugin( aLib );
71 wxString nickname = aLib->row->Nickname();
72
73 long long timestamp = plugin->GetLibraryTimestamp( aUri );
74
75 // Hold across the enumerate-then-borrow sequence: GetEnumeratedFootprint returns borrowed
76 // FP_CACHE pointers, so no other thread may rebuild the cache until we finish cloning.
77 std::lock_guard pluginGuard( pluginMutex( nickname ) );
78
79 // FootprintEnumerate populates the plugin's internal FP_CACHE with parsed footprints
80 plugin->FootprintEnumerate( namesAS, aUri, false, &options );
81
82 std::vector<std::unique_ptr<FOOTPRINT>> footprints;
83 footprints.reserve( namesAS.size() );
84
85 // For plugins with internal caches (like kicad_sexpr), GetEnumeratedFootprint returns
86 // a borrowed pointer and ClearCachedFootprints handles cleanup. For other plugins,
87 // GetEnumeratedFootprint allocates new memory that we must delete after cloning.
88 const bool pluginCaches = plugin->CachesEnumeratedFootprints();
89
90 for( const wxString& footprintName : namesAS )
91 {
92 try
93 {
94 const FOOTPRINT* cached = plugin->GetEnumeratedFootprint( aUri, footprintName, &options );
95
96 if( !cached )
97 continue;
98
99 // Preserve disk UUIDs in the cache that serves keep-UUID loads
100 FOOTPRINT* footprint = static_cast<FOOTPRINT*>( cached->Clone() );
101 footprint->SetParent( nullptr );
102 footprint->SetParentGroup( nullptr );
103
104 // For non-caching plugins, delete the allocated footprint now that we've cloned it
105 if( !pluginCaches )
106 delete cached;
107
108 LIB_ID id = footprint->GetFPID();
109 id.SetLibNickname( nickname );
110 footprint->SetFPID( id );
111 footprints.emplace_back( footprint );
112 }
113 catch( IO_ERROR& e )
114 {
115 wxLogTrace( traceLibraries, "FP: %s:%s enumeration error: %s",
116 nickname, footprintName, e.What() );
117 }
118 }
119
120 {
121 std::unique_lock lock( PreloadedFootprintsMutex );
122 PreloadedFootprints.Get()[nickname] = std::move( footprints );
123 PreloadedTimestamps.Get()[nickname] = timestamp;
124 }
125
126 // Clear the plugin's FP_CACHE now that we've copied footprints to PreloadedFootprints.
127 // This eliminates the double-caching that was consuming ~1.2GB of extra RAM.
128 plugin->ClearCachedFootprints( aUri );
129}
130
131
132std::optional<LIB_STATUS> FOOTPRINT_LIBRARY_ADAPTER::LoadOne( LIB_DATA* aLib )
133{
135
136 std::map<std::string, UTF8> options = aLib->row->GetOptionsMap();
137
138 try
139 {
140 std::lock_guard pluginGuard( pluginMutex( aLib->row->Nickname() ) );
141
142 wxArrayString dummyList;
143 pcbplugin( aLib )->FootprintEnumerate( dummyList, getUri( aLib->row ), false, &options );
145 }
146 catch( IO_ERROR& e )
147 {
149 aLib->status.error = LIBRARY_ERROR( e.Problem(), e.Where() );
150 wxLogTrace( traceLibraries, "FP: %s: plugin threw exception: %s", aLib->row->Nickname(), e.What() );
151 }
152
153 return aLib->status;
154}
155
156
157std::optional<LIB_STATUS> FOOTPRINT_LIBRARY_ADAPTER::LoadOne( const wxString& nickname )
158{
160
161 if( result.has_value() )
162 return LoadOne( *result );
163
164 return LIB_STATUS{
165 .load_status = LOAD_STATUS::LOAD_ERROR,
166 .error = LIBRARY_ERROR( { result.error() } )
167 };
168}
169
170
171std::vector<FOOTPRINT*> FOOTPRINT_LIBRARY_ADAPTER::GetFootprints( const wxString& aNickname, bool aBestEfforts )
172{
173 std::vector<FOOTPRINT*> footprints;
174
175 std::shared_lock lock( PreloadedFootprintsMutex );
176 auto it = PreloadedFootprints.Get().find( aNickname );
177
178 if( it == PreloadedFootprints.Get().end() )
179 return footprints;
180
181 footprints.reserve( it->second.size() );
182
183 for( const auto& fp : it->second )
184 footprints.push_back( fp.get() );
185
186 return footprints;
187}
188
189
190
191std::vector<wxString> FOOTPRINT_LIBRARY_ADAPTER::GetFootprintNames( const wxString& aNickname, bool aBestEfforts )
192{
193 // TODO(JE) can we kill wxArrayString in internal API?
194 wxArrayString namesAS;
195 std::vector<wxString> names;
196
197 if( std::optional<const LIB_DATA*> maybeLib = fetchIfLoaded( aNickname ) )
198 {
199 const LIB_DATA* lib = *maybeLib;
200 std::map<std::string, UTF8> options = lib->row->GetOptionsMap();
201
202 try
203 {
204 std::lock_guard pluginGuard( pluginMutex( aNickname ) );
205
206 pcbplugin( lib )->FootprintEnumerate( namesAS, getUri( lib->row ), true, &options );
207 }
208 catch( IO_ERROR& e )
209 {
210 wxLogTrace( traceLibraries, "FP: Exception enumerating library %s: %s", lib->row->Nickname(), e.What() );
211 }
212 }
213
214 for( const wxString& name : namesAS )
215 names.emplace_back( name );
216
217 return names;
218}
219
220
221long long FOOTPRINT_LIBRARY_ADAPTER::GenerateTimestamp( const wxString* aNickname )
222{
223 long long hash = 0;
224
225 if( aNickname )
226 {
227 wxCHECK( HasLibrary( *aNickname, true ), hash );
228
229 if( std::optional<const LIB_DATA*> r = fetchIfLoaded( *aNickname ); r.has_value() )
230 {
231 PCB_IO* plugin = dynamic_cast<PCB_IO*>( ( *r )->plugin.get() );
232 wxCHECK( plugin, hash );
233 return plugin->GetLibraryTimestamp( LIBRARY_MANAGER::GetFullURI( ( *r )->row, true ) )
234 + wxHashTable::MakeKey( *aNickname );
235 }
236 }
237
238 for( const wxString& nickname : GetLibraryNames() )
239 {
240 if( std::optional<const LIB_DATA*> r = fetchIfLoaded( nickname ); r.has_value() )
241 {
242 wxCHECK2( ( *r )->plugin->IsPCB_IO(), continue );
243 PCB_IO* plugin = static_cast<PCB_IO*>( ( *r )->plugin.get() );
244 hash += plugin->GetLibraryTimestamp( LIBRARY_MANAGER::GetFullURI( ( *r )->row, true ) )
245 + wxHashTable::MakeKey( nickname );
246 }
247 }
248
249 return hash;
250}
251
252
254{
255 std::optional<LIB_DATA*> maybeLib = fetchIfLoaded( aNickname );
256
257 if( !maybeLib )
258 return;
259
260 LIB_DATA* lib = *maybeLib;
261 PCB_IO* plugin = dynamic_cast<PCB_IO*>( lib->plugin.get() );
262
263 if( !plugin )
264 return;
265
266 wxString uri = getUri( lib->row );
267 long long currentTimestamp = plugin->GetLibraryTimestamp( uri );
268
269 {
270 std::shared_lock lock( PreloadedFootprintsMutex );
271 auto tsIt = PreloadedTimestamps.Get().find( aNickname );
272
273 if( tsIt != PreloadedTimestamps.Get().end() && tsIt->second == currentTimestamp )
274 return;
275
276 wxLogTrace( traceLibraries, "FP: %s changed on disk, re-enumerating", aNickname );
277 }
278
279 enumerateLibrary( lib, uri );
280}
281
282
284{
285 for( const wxString& nickname : GetLibraryNames() )
286 {
287 // An unreadable library must not stop the others, nor escape into the caller.
288 try
289 {
290 RefreshLibraryIfChanged( nickname );
291 }
292 catch( const IO_ERROR& e )
293 {
294 wxLogTrace( traceLibraries, "FP: %s: refresh failed: %s", nickname, e.What() );
295 }
296 }
297}
298
299
300bool FOOTPRINT_LIBRARY_ADAPTER::FootprintExists( const wxString& aNickname, const wxString& aName )
301{
302 if( std::optional<const LIB_DATA*> maybeLib = fetchIfLoaded( aNickname ) )
303 {
304 const LIB_DATA* lib = *maybeLib;
305 std::map<std::string, UTF8> options = lib->row->GetOptionsMap();
306
307 std::lock_guard pluginGuard( pluginMutex( aNickname ) );
308
309 return pcbplugin( lib )->FootprintExists( getUri( lib->row ), aName, &options );
310 }
311
312 return false;
313}
314
315
316FOOTPRINT* FOOTPRINT_LIBRARY_ADAPTER::LoadFootprint( const wxString& aNickname, const wxString& aName, bool aKeepUUID )
317{
318 // First check if the footprint is in PreloadedFootprints and clone from there.
319 // This avoids re-parsing the file and keeps FP_CACHE from being repopulated.
320 {
321 std::shared_lock lock( PreloadedFootprintsMutex );
322 auto libIt = PreloadedFootprints.Get().find( aNickname );
323
324 if( libIt != PreloadedFootprints.Get().end() )
325 {
326 for( const auto& fp : libIt->second )
327 {
328 if( fp->GetFPID().GetLibItemName() == UTF8( aName ) )
329 {
331
332 if( aKeepUUID )
333 copy = static_cast<FOOTPRINT*>( fp->Clone() );
334 else
335 copy = static_cast<FOOTPRINT*>( fp->Duplicate( IGNORE_PARENT_GROUP ) );
336
337 copy->SetParent( nullptr );
338 return copy;
339 }
340 }
341 }
342 }
343
344 // Footprint not found in PreloadedFootprints, fall back to plugin.
345 // This re-parses the file but is needed for footprints not yet enumerated.
346 if( std::optional<const LIB_DATA*> lib = fetchIfLoaded( aNickname ) )
347 {
348 try
349 {
350 std::lock_guard pluginGuard( pluginMutex( aNickname ) );
351
352 if( std::unique_ptr<FOOTPRINT> footprint =
353 pcbplugin( *lib )->FootprintLoad( getUri( ( *lib )->row ), aName, aKeepUUID ) )
354 {
355 LIB_ID id = footprint->GetFPID();
356 id.SetLibNickname( ( *lib )->row->Nickname() );
357 footprint->SetFPID( id );
358 return footprint.release();
359 }
360 }
361 catch( const IO_ERROR& ioe )
362 {
363 wxLogTrace( traceLibraries, "LoadFootprint: error loading %s:%s: %s", aNickname, aName, ioe.What() );
364 }
365 }
366 else
367 {
368 wxLogTrace( traceLibraries, "LoadFootprint: requested library %s not loaded", aNickname );
369 }
370
371 return nullptr;
372}
373
374
376{
377 wxString nickname = aFootprintId.GetLibNickname();
378 wxString footprintName = aFootprintId.GetLibItemName();
379
380 if( nickname.size() )
381 return LoadFootprint( nickname, footprintName, aKeepUUID );
382
383 // nickname is empty, sequentially search (alphabetically) all libs/nicks for first match:
384 for( const wxString& library : GetLibraryNames() )
385 {
386 // FootprintLoad() returns NULL on not found, does not throw exception
387 // unless there's an IO_ERROR.
388 if( FOOTPRINT* ret = LoadFootprint( library, footprintName, aKeepUUID ) )
389 return ret;
390 }
391
392 return nullptr;
393}
394
395
397 const FOOTPRINT* aFootprint,
398 bool aOverwrite )
399{
400 wxCHECK( aFootprint, SAVE_SKIPPED );
401
402 if( std::optional<const LIB_DATA*> lib = fetchIfLoaded( aNickname ) )
403 {
404 // Serialize the load-check / save / cache-update sequence against a concurrent rebuild.
405 std::lock_guard pluginGuard( pluginMutex( aNickname ) );
406
407 if( !aOverwrite )
408 {
409 wxString fpname = aFootprint->GetFPID().GetLibItemName();
410
411 try
412 {
413 std::unique_ptr<FOOTPRINT> existing =
414 pcbplugin( *lib )->FootprintLoad( getUri( ( *lib )->row ), fpname, false );
415
416 if( existing )
417 return SAVE_SKIPPED;
418 }
419 catch( IO_ERROR& e )
420 {
421 wxLogTrace( traceLibraries, "SaveFootprint: error checking for existing footprint %s: %s",
422 aFootprint->GetFPIDAsString(), e.What() );
423 return SAVE_SKIPPED;
424 }
425 }
426
427 try
428 {
429 pcbplugin( *lib )->FootprintSave( getUri( ( *lib )->row ), aFootprint );
430 }
431 catch( IO_ERROR& e )
432 {
433 // Re-throw rather than returning SAVE_SKIPPED; swallowing a write failure (read-only
434 // file, full disk) would report a successful save while the file is unchanged.
435 wxLogTrace( traceLibraries, "SaveFootprint: error saving %s: %s",
436 aFootprint->GetFPIDAsString(), e.What() );
437 throw;
438 }
439
440 {
441 std::unique_lock lock( PreloadedFootprintsMutex );
442 auto it = PreloadedFootprints.Get().find( aNickname );
443
444 if( it != PreloadedFootprints.Get().end() )
445 {
446 wxString fpName = aFootprint->GetFPID().GetLibItemName();
447
448 if( aOverwrite )
449 {
450 auto& footprints = it->second;
451 footprints.erase( std::remove_if( footprints.begin(), footprints.end(),
452 [&fpName]( const std::unique_ptr<FOOTPRINT>& fp )
453 {
454 return fp->GetFPID().GetLibItemName().wx_str() == fpName;
455 } ),
456 footprints.end() );
457 }
458
459 // Must match what FootprintSave() just wrote, UUIDs included
460 FOOTPRINT* clone = static_cast<FOOTPRINT*>( aFootprint->Clone() );
461 clone->SetParent( nullptr );
462 clone->SetParentGroup( nullptr );
463
464 LIB_ID id = clone->GetFPID();
465 id.SetLibNickname( aNickname );
466 clone->SetFPID( id );
467
468 it->second.emplace_back( clone );
469 }
470 }
471
472 return SAVE_OK;
473 }
474 else
475 {
476 wxLogTrace( traceLibraries, "SaveFootprint: requested library %s not loaded", aNickname );
477 return SAVE_SKIPPED;
478 }
479}
480
481
482void FOOTPRINT_LIBRARY_ADAPTER::DeleteFootprint( const wxString& aNickname, const wxString& aFootprintName )
483{
484 if( std::optional<const LIB_DATA*> lib = fetchIfLoaded( aNickname ) )
485 {
486 std::lock_guard pluginGuard( pluginMutex( aNickname ) );
487
488 try
489 {
490 pcbplugin( *lib )->FootprintDelete( getUri( ( *lib )->row ), aFootprintName );
491 }
492 catch( IO_ERROR& e )
493 {
494 wxLogTrace( traceLibraries, "DeleteFootprint: error deleting %s:%s: %s", aNickname,
495 aFootprintName, e.What() );
496 return;
497 }
498
499 {
500 std::unique_lock lock( PreloadedFootprintsMutex );
501 auto it = PreloadedFootprints.Get().find( aNickname );
502
503 if( it != PreloadedFootprints.Get().end() )
504 {
505 auto& footprints = it->second;
506 footprints.erase( std::remove_if( footprints.begin(), footprints.end(),
507 [&aFootprintName]( const std::unique_ptr<FOOTPRINT>& fp )
508 {
509 return fp->GetFPID().GetLibItemName().wx_str() == aFootprintName;
510 } ),
511 footprints.end() );
512 }
513 }
514 }
515 else
516 {
517 wxLogTrace( traceLibraries, "DeleteFootprint: requested library %s not loaded", aNickname );
518 }
519}
520
521
523{
524 // Route through fetchIfLoaded() so LOAD_ERROR sentinel entries, which carry a null
525 // plugin, are filtered out instead of dereferenced.
526 if( std::optional<const LIB_DATA*> lib = fetchIfLoaded( aLib ) )
527 {
528 std::lock_guard pluginGuard( pluginMutex( aLib ) );
529
530 return ( *lib )->plugin->IsLibraryWritable( getUri( ( *lib )->row ) );
531 }
532
533 return false;
534}
535
536
538{
540
541 if( type == PCB_IO_MGR::NESTED_TABLE )
542 {
543 wxString msg;
544 wxFileName fileName( m_manager.GetFullURI( row, true ) );
545
546 if( fileName.FileExists() )
547 return tl::unexpected( LIBRARY_TABLE_OK() );
548 else
549 msg = wxString::Format( _( "Nested table '%s' not found." ), row->URI() );
550
551 return tl::unexpected( LIBRARY_ERROR( msg ) );
552 }
553 else if( type == PCB_IO_MGR::PCB_FILE_UNKNOWN )
554 {
555 wxLogTrace( traceLibraries, "FP: Plugin type %s is unknown!", row->Type() );
556 wxString msg = wxString::Format( _( "Unknown library type %s " ), row->Type() );
557 return tl::unexpected( LIBRARY_ERROR( msg ) );
558 }
559
561 wxCHECK( plugin, tl::unexpected( LIBRARY_ERROR( _( "Internal error" ) ) ) );
562
563 wxLogTrace( traceLibraries, "FP: Library %s (%s) plugin created", row->Nickname(),
564 magic_enum::enum_name( row->Scope() ) );
565
566 return plugin;
567}
568
569
571{
572 // Note: can't use dynamic_cast across compile units on Mac
573 wxCHECK( aRow->plugin->IsPCB_IO(), nullptr );
574 PCB_IO* ret = static_cast<PCB_IO*>( aRow->plugin.get() );
575 return ret;
576}
const char * name
virtual void SetParentGroup(EDA_GROUP *aGroup)
Definition eda_item.h:115
virtual void SetParent(EDA_ITEM *aParent)
Definition eda_item.cpp:153
bool IsFootprintLibWritable(const wxString &aNickname)
Return true if the library given by aNickname is writable.
void DeleteFootprint(const wxString &aNickname, const wxString &aFootprintName)
Deletes the aFootprintName from the library given by aNickname.
std::vector< FOOTPRINT * > GetFootprints(const wxString &aNickname, bool aBestEfforts=false)
Retrieves a list of footprints contained in a given loaded library.
void RefreshLibraryIfChanged(const wxString &aNickname)
Checks whether the library on disk has changed since it was last enumerated into PreloadedFootprints ...
static LEAK_AT_EXIT< std::shared_mutex > GlobalLibraryMutex
void enumerateLibrary(LIB_DATA *aLib, const wxString &aUri) override
Override in derived class to perform library-specific enumeration.
IO_BASE * plugin(const LIB_DATA *aRow) override
SAVE_T SaveFootprint(const wxString &aNickname, const FOOTPRINT *aFootprint, bool aOverwrite=true)
Write aFootprint to an existing library given by aNickname.
std::vector< wxString > GetFootprintNames(const wxString &aNickname, bool aBestEfforts=false)
Retrieves a list of footprint names contained in a given loaded library.
FOOTPRINT * LoadFootprint(const wxString &aNickname, const wxString &aName, bool aKeepUUID)
Load a FOOTPRINT having aName from the library given by aNickname.
static LEAK_AT_EXIT< std::map< wxString, LIB_DATA > > GlobalLibraries
static LEAK_AT_EXIT< std::map< wxString, long long > > PreloadedTimestamps
Filesystem timestamps from when PreloadedFootprints was last populated, guarded by PreloadedFootprint...
static PCB_IO * pcbplugin(const LIB_DATA *aRow)
FOOTPRINT * LoadFootprintWithOptionalNickname(const LIB_ID &aFootprintId, bool aKeepUUID)
Load a footprint having aFootprintId with possibly an empty nickname.
LIBRARY_RESULT< IO_BASE * > createPlugin(const LIBRARY_TABLE_ROW *row) override
Creates a concrete plugin for the given row.
FOOTPRINT_LIBRARY_ADAPTER(LIBRARY_MANAGER &aManager)
long long GenerateTimestamp(const wxString *aNickname)
Generates a filesystem timestamp / hash value for library(ies)
std::optional< LIB_STATUS > LoadOne(LIB_DATA *aLib) override
Loads or reloads the given library, if it exists.
SAVE_T
The set of return values from SaveSymbol() below.
static LEAK_AT_EXIT< std::map< wxString, std::vector< std::unique_ptr< FOOTPRINT > > > > PreloadedFootprints
Storage for preloaded footprints, indexed by library nickname.
bool FootprintExists(const wxString &aNickname, const wxString &aName)
static std::shared_mutex PreloadedFootprintsMutex
void SetFPID(const LIB_ID &aFPID)
Definition footprint.h:474
EDA_ITEM * Clone() const override
Invoke a function on all children.
wxString GetFPIDAsString() const
Definition footprint.h:479
const LIB_ID & GetFPID() const
Definition footprint.h:473
virtual bool IsPCB_IO() const
Work-around for lack of dynamic_cast across compile units on Mac.
Definition io_base.h:84
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
virtual const wxString Problem() const
what was the problem?
virtual const wxString Where() const
where did the Problem() occur?
A wrapper for static data that should not be destroyed at program exit.
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.
wxString getUri(const LIBRARY_TABLE_ROW *aRow) const
LIBRARY_RESULT< LIB_DATA * > loadIfNeeded(const wxString &aNickname)
Fetches a loaded library, triggering a load of that library if it isn't loaded yet.
bool HasLibrary(const wxString &aNickname, bool aCheckEnabled=false) const
Test for the existence of aNickname in the library tables.
std::vector< wxString > GetLibraryNames() const
Returns a list of library nicknames that are available (skips any that failed to load)
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...
LIBRARY_MANAGER & m_manager
std::optional< const LIB_DATA * > fetchIfLoaded(const wxString &aNickname) const
std::optional< wxString > GetFullURI(LIBRARY_TABLE_TYPE aType, const wxString &aNickname, bool aSubstituted=false)
Return the full location specifying URI for the LIB, either in original UI form or in environment var...
LIBRARY_TABLE_SCOPE Scope() const
std::map< std::string, UTF8 > GetOptionsMap() const
const wxString & Type() const
const wxString & URI() const
const wxString & Nickname() const
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
int SetLibNickname(const UTF8 &aLibNickname)
Override the logical library name portion of the LIB_ID to aLibNickname.
Definition lib_id.cpp:113
const UTF8 & GetLibItemName() const
Definition lib_id.h:98
const UTF8 & GetLibNickname() const
Return the logical library name portion of a LIB_ID.
Definition lib_id.h:83
static PCB_FILE_T EnumFromStr(const wxString &aFileType)
Return the PCB_FILE_T from the corresponding plugin type name: "kicad", "legacy", etc.
PCB_FILE_T
The set of file types that the PCB_IO_MGR knows about, and for which there has been a plugin written,...
Definition pcb_io_mgr.h:52
@ PCB_FILE_UNKNOWN
0 is not a legal menu id on Mac
Definition pcb_io_mgr.h:53
static PCB_IO * FindPlugin(PCB_FILE_T aFileType)
Return a #PLUGIN which the caller can use to import, export, save, or load design documents.
A base class that BOARD loading and saving plugins should derive from.
Definition pcb_io.h:76
virtual std::unique_ptr< FOOTPRINT > FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr)
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PC...
Definition pcb_io.cpp:160
virtual void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr)
Return a list of footprint names contained within the library at aLibraryPath.
Definition pcb_io.cpp:112
virtual bool FootprintExists(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr)
Check for the existence of a footprint.
Definition pcb_io.cpp:152
virtual void FootprintDelete(const wxString &aLibraryPath, const wxString &aFootprintName, const std::map< std::string, UTF8 > *aProperties=nullptr)
Delete aFootprintName from the library at aLibraryPath.
Definition pcb_io.cpp:177
virtual void FootprintSave(const wxString &aLibraryPath, const FOOTPRINT *aFootprint, const std::map< std::string, UTF8 > *aProperties=nullptr)
Write aFootprint to an existing library located at aLibraryPath.
Definition pcb_io.cpp:169
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
Definition utf8.h:67
#define _(s)
#define IGNORE_PARENT_GROUP
Definition eda_item.h:55
Functions related to environment variables, including help functions.
const wxChar *const traceLibraries
Flag to enable library table and library manager tracing.
tl::expected< ResultType, LIBRARY_ERROR > LIBRARY_RESULT
KICOMMON_API wxString GetVersionedEnvVarName(const wxString &aBaseName)
Construct a versioned environment variable based on this KiCad major version.
Definition env_vars.cpp:78
Storage for an actual loaded library (including library content owned by the plugin)
LIB_STATUS status
std::unique_ptr< IO_BASE > plugin
const LIBRARY_TABLE_ROW * row
The overall status of a loaded or loading library.
std::optional< LIBRARY_ERROR > error
LOAD_STATUS load_status
wxString result
Test unit parsing edge cases and error handling.
wxLogTrace helper definitions.