KiCad PCB EDA Suite
Loading...
Searching...
No Matches
lib_table_base.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) 2010-2012 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
5 * Copyright (C) 2012 Wayne Stambaugh <[email protected]>
6 * Copyright (C) 2012-2021 KiCad Developers, see change_log.txt for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#ifndef _LIB_TABLE_BASE_H_
27#define _LIB_TABLE_BASE_H_
28
29#include <map>
30#include <boost/ptr_container/ptr_vector.hpp>
31#include <memory>
32#include <mutex>
33#include <shared_mutex>
34#include <project.h>
35#include <richio.h>
36#include <kicommon.h>
37
38class OUTPUTFORMATTER;
39class LIB_TABLE_LEXER;
40class LIB_ID;
41class LIB_TABLE_ROW;
42class LIB_TABLE_GRID;
43class LIB_TABLE;
44class IO_ERROR;
45class wxWindow;
46
47
48typedef boost::ptr_vector< LIB_TABLE_ROW > LIB_TABLE_ROWS;
49typedef LIB_TABLE_ROWS::iterator LIB_TABLE_ROWS_ITER;
50typedef LIB_TABLE_ROWS::const_iterator LIB_TABLE_ROWS_CITER;
51
52
59
60
68{
69public:
70 virtual ~LIB_TABLE_IO() = default;
71
78 virtual std::unique_ptr<LINE_READER> GetReader( const wxString& aURI ) const = 0;
79
83 virtual bool CanSaveToUri( const wxString& aURI ) const = 0;
84
91 virtual bool UrisAreEquivalent( const wxString& aURI1, const wxString& aURI2 ) const = 0;
92
96 virtual std::unique_ptr<OUTPUTFORMATTER> GetWriter( const wxString& aURI ) const = 0;
97};
98
99
106{
107public:
108 FILE_LIB_TABLE_IO() = default;
109
110 std::unique_ptr<LINE_READER> GetReader( const wxString& aURI ) const override;
111
112 bool CanSaveToUri( const wxString& aURI ) const override;
113
114 bool UrisAreEquivalent( const wxString& aURI1, const wxString& aURI2 ) const override;
115
116 std::unique_ptr<OUTPUTFORMATTER> GetWriter( const wxString& aURI ) const override;
117};
118
119
125{
126public:
128 enabled( true ),
129 visible( true ),
130 m_loaded( false ),
131 m_parent( nullptr )
132 {
133 }
134
136 {
137 }
138
139 LIB_TABLE_ROW( const wxString& aNick, const wxString& aURI, const wxString& aOptions,
140 const wxString& aDescr = wxEmptyString, LIB_TABLE* aParent = nullptr ) :
141 nickName( aNick ),
142 description( aDescr ),
143 enabled( true ),
144 visible( true ),
145 m_loaded( false ),
146 m_parent( aParent )
147 {
148 properties.reset();
149 SetOptions( aOptions );
150 SetFullURI( aURI );
151 }
152
153 bool operator==( const LIB_TABLE_ROW& r ) const;
154
155 bool operator!=( const LIB_TABLE_ROW& r ) const { return !( *this == r ); }
156
160 const wxString& GetNickName() const { return nickName; }
161
165 void SetNickName( const wxString& aNickName ) { nickName = aNickName; }
166
170 bool GetIsLoaded() const { return m_loaded; }
171
175 void SetLoaded( bool aLoaded ) { m_loaded = aLoaded; };
176
180 bool GetIsEnabled() const { return enabled; }
181
185 void SetEnabled( bool aEnabled = true ) { enabled = aEnabled; }
186
187 bool GetIsVisible() const { return visible; }
188
189 void SetVisible( bool aVisible = true ) { visible = aVisible; }
190
191 virtual bool Refresh() { return false; }
192
196 virtual const wxString GetType() const = 0;
197
202 virtual void SetType( const wxString& aType ) = 0;
203
204 virtual bool SupportsSettingsDialog() const { return false; }
205
206 virtual void ShowSettingsDialog( wxWindow* aParent ) const {}
207
214 const wxString GetFullURI( bool aSubstituted = false ) const;
215
219 void SetFullURI( const wxString& aFullURI );
220
225 const wxString& GetOptions() const { return options; }
226
230 void SetOptions( const wxString& aOptions );
231
235 const wxString& GetDescr() const { return description; }
236
240 void SetDescr( const wxString& aDescr ) { description = aDescr; }
241
242 LIB_TABLE* GetParent() const { return m_parent; }
243
244 void SetParent( LIB_TABLE* aParent ) { m_parent = aParent; }
245
246 std::mutex& GetMutex() { return m_loadMutex; }
247
252 const std::map<std::string, UTF8>* GetProperties() const { return properties.get(); }
253
262 void Format( OUTPUTFORMATTER* out, int nestLevel ) const;
263
265 {
266 return do_clone();
267 }
268
269protected:
271 nickName( aRow.nickName ),
272 uri_user( aRow.uri_user ),
273 options( aRow.options ),
274 description( aRow.description ),
275 enabled( aRow.enabled ),
276 visible( aRow.visible ),
277 m_loaded( aRow.m_loaded ),
278 m_parent( aRow.m_parent )
279 {
280 if( aRow.properties )
281 properties = std::make_unique<std::map<std::string, UTF8>>( *aRow.properties.get() );
282 else
283 properties.reset();
284 }
285
286 void operator=( const LIB_TABLE_ROW& aRow );
287
288private:
289 virtual LIB_TABLE_ROW* do_clone() const = 0;
290
291 void setProperties( std::map<std::string, UTF8>* aProperties );
292
293 wxString nickName;
294 wxString uri_user;
295 wxString options;
296 wxString description;
297
298 bool enabled = true;
299 bool visible = true;
300 bool m_loaded = false;
302
303 std::unique_ptr<std::map<std::string, UTF8>> properties;
304
305 std::mutex m_loadMutex;
306};
307
308
355{
356public:
369 virtual void Parse( LIB_TABLE_LEXER* aLexer ) = 0;
370
381 virtual void Format( OUTPUTFORMATTER* aOutput, int aIndentLevel ) const = 0;
382
393 LIB_TABLE( LIB_TABLE* aFallBackTable = nullptr,
394 std::unique_ptr<LIB_TABLE_IO> aTableIo = nullptr );
395
396 virtual ~LIB_TABLE();
397
404 bool operator==( const LIB_TABLE& r ) const
405 {
406 if( m_rows.size() == r.m_rows.size() )
407 {
408 unsigned i;
409
410 for( i = 0; i < m_rows.size() && m_rows[i] == r.m_rows[i]; ++i )
411 ;
412
413 if( i == m_rows.size() )
414 return true;
415 }
416
417 return false;
418 }
419
420 bool operator!=( const LIB_TABLE& r ) const { return !( *this == r ); }
421
425 unsigned GetCount() const
426 {
427 return m_rows.size();
428 }
429
435 LIB_TABLE_ROW& At( unsigned aIndex )
436 {
437 return m_rows[aIndex];
438 }
439
443 const LIB_TABLE_ROW& At( unsigned aIndex ) const
444 {
445 return m_rows[aIndex];
446 }
447
456 bool IsEmpty( bool aIncludeFallback = true );
457
462 const wxString GetDescription( const wxString& aNickname );
463
470 bool HasLibrary( const wxString& aNickname, bool aCheckEnabled = false ) const;
471
478 bool HasLibraryWithPath( const wxString& aPath ) const;
479
484 std::vector<wxString> GetLogicalLibs();
485
489 wxString GetFullURI( const wxString& aLibNickname, bool aExpandEnvVars = true ) const;
490
503 bool InsertRow( LIB_TABLE_ROW* aRow, bool doReplace = false );
504
510 bool RemoveRow( const LIB_TABLE_ROW* aRow );
511
516 bool ReplaceRow( size_t aIndex, LIB_TABLE_ROW* aRow );
517
524 bool ChangeRowOrder( size_t aIndex, int aOffset );
525
529 void TransferRows( LIB_TABLE_ROWS& aRowsList );
530
535 const LIB_TABLE_ROW* FindRowByURI( const wxString& aURI );
536
545 void Load( const wxString& aFileName );
546
552 void Save( const wxString& aFileName ) const;
553
566 static std::map<std::string, UTF8>* ParseOptions( const std::string& aOptionsList );
567
578 static UTF8 FormatOptions( const std::map<std::string, UTF8>* aProperties );
579
585 int GetVersion() const
586 {
587 return m_version;
588 }
589
590protected:
591 /*
592 * Do not make this public. It MUST be called with a lock already in place.
593 */
594 void clear();
595
604 LIB_TABLE_ROW* findRow( const wxString& aNickname, bool aCheckIfEnabled = false ) const;
605
609 bool doInsertRow( LIB_TABLE_ROW* aRow, bool doReplace = false );
610
617 bool migrate();
618
619 /*
620 * Do not make this public. It MUST be called with a lock already in place.
621 */
622 void reindex();
623
624protected:
625 // Injected I/O interface
626 std::unique_ptr<LIB_TABLE_IO> m_io;
627
629
631 mutable int m_version;
632
634 // TODO: This should really be private; but the lib table grids re-use it
635 // (without using m_rowsMap).
637
639 std::map<wxString, LIB_TABLE_ROWS_ITER> m_rowsMap;
640
642 mutable std::shared_mutex m_mutex;
643};
644
645#endif // _LIB_TABLE_BASE_H_
KICAD_PLUGIN_EXPORT SCENEGRAPH * Load(char const *aFileName)
reads a model file and creates a generic display structure
bool operator==(const wxAuiPaneInfo &aLhs, const wxAuiPaneInfo &aRhs)
Implementations of LIB_TABLE_IO for file-based I/O.
FILE_LIB_TABLE_IO()=default
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
This abstract base class mixes any object derived from LIB_TABLE into wxGridTableBase so the result c...
LIB_TABLE_IO abstracts the file I/O operations for the library table loading and saving.
virtual std::unique_ptr< OUTPUTFORMATTER > GetWriter(const wxString &aURI) const =0
Save the given table to the given URI.
virtual ~LIB_TABLE_IO()=default
virtual std::unique_ptr< LINE_READER > GetReader(const wxString &aURI) const =0
Create a reader for the given URI.
virtual bool CanSaveToUri(const wxString &aURI) const =0
Check if the given URI is writable.
virtual bool UrisAreEquivalent(const wxString &aURI1, const wxString &aURI2) const =0
Compare two URIs for equivalence.
Hold a record identifying a library accessed by the appropriate plug in object in the LIB_TABLE.
std::unique_ptr< std::map< std::string, UTF8 > > properties
const wxString & GetOptions() const
Return the options string, which may hold a password or anything else needed to instantiate the under...
std::mutex & GetMutex()
wxString nickName
const wxString & GetDescr() const
Return the description of the library referenced by this row.
virtual LIB_TABLE_ROW * do_clone() const =0
bool GetIsLoaded() const
void SetVisible(bool aVisible=true)
void operator=(const LIB_TABLE_ROW &aRow)
wxString options
void SetNickName(const wxString &aNickName)
Change the logical name of this library, useful for an editor.
wxString uri_user
what user entered from UI or loaded from disk
LIB_TABLE * GetParent() const
bool operator!=(const LIB_TABLE_ROW &r) const
virtual const wxString GetType() const =0
Return the type of library represented by this row.
const std::map< std::string, UTF8 > * GetProperties() const
Return the constant #PROPERTIES for this library (LIB_TABLE_ROW).
wxString description
void SetEnabled(bool aEnabled=true)
Change the enabled status of this library.
void SetDescr(const wxString &aDescr)
Change the description of the library referenced by this row.
virtual void ShowSettingsDialog(wxWindow *aParent) const
void SetParent(LIB_TABLE *aParent)
virtual bool Refresh()
LIB_TABLE_ROW(const LIB_TABLE_ROW &aRow)
void SetLoaded(bool aLoaded)
Mark the row as being a loaded library.
virtual ~LIB_TABLE_ROW()
LIB_TABLE * m_parent
Pointer to the table this row lives in (maybe null)
virtual void SetType(const wxString &aType)=0
Change the type of library represented by this row that must be implemented in the derived object to ...
const wxString & GetNickName() const
std::mutex m_loadMutex
LIB_TABLE_ROW(const wxString &aNick, const wxString &aURI, const wxString &aOptions, const wxString &aDescr=wxEmptyString, LIB_TABLE *aParent=nullptr)
LIB_TABLE_ROW * clone() const
bool GetIsEnabled() const
virtual bool SupportsSettingsDialog() const
bool GetIsVisible() const
Manage LIB_TABLE_ROW records (rows), and can be searched based on library nickname.
std::shared_mutex m_mutex
Mutex to protect access to the rows vector.
std::map< wxString, LIB_TABLE_ROWS_ITER > m_rowsMap
this is a non-owning index into the LIB_TABLE_ROWS table
int m_version
Versioning to handle importing old tables.
LIB_TABLE_ROW & At(unsigned aIndex)
Get the 'n'th LIB_TABLE_ROW object.
bool operator==(const LIB_TABLE &r) const
Compares this table against another.
LIB_TABLE_ROWS m_rows
Owning set of rows.
virtual void Format(OUTPUTFORMATTER *aOutput, int aIndentLevel) const =0
Generate the table in s-expression format to aOutput with an indentation level of aIndentLevel.
LIB_TABLE * m_fallBack
unsigned GetCount() const
Get the number of rows contained in the table.
virtual void Parse(LIB_TABLE_LEXER *aLexer)=0
Parse the #LIB_TABLE_LEXER s-expression library table format into the appropriate LIB_TABLE_ROW objec...
std::unique_ptr< LIB_TABLE_IO > m_io
bool operator!=(const LIB_TABLE &r) const
const LIB_TABLE_ROW & At(unsigned aIndex) const
Get the 'n'th LIB_TABLE_ROW object.
int GetVersion() const
Returns the version number (0 if unset)
An interface used to output 8 bit text in a convenient way.
Definition: richio.h:322
A PROJECT can hold stuff it knows nothing about, in the form of _ELEM derivatives.
Definition: project.h:93
An 8 bit string that is assuredly encoded in UTF8, and supplies special conversion support to and fro...
Definition: utf8.h:72
#define KICOMMON_API
Definition: kicommon.h:28
boost::ptr_vector< LIB_TABLE_ROW > LIB_TABLE_ROWS
LIB_TABLE_ROWS::iterator LIB_TABLE_ROWS_ITER
LIB_TABLE_ROWS::const_iterator LIB_TABLE_ROWS_CITER
KICOMMON_API LIB_TABLE_ROW * new_clone(const LIB_TABLE_ROW &aRow)
Allows boost pointer containers to make clones of the data stored in them.
void Format(OUTPUTFORMATTER *out, int aNestLevel, int aCtl, const CPTREE &aTree)
Output a PTREE into s-expression format via an OUTPUTFORMATTER derivative.
Definition: ptree.cpp:200