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 The KiCad Developers, see AUTHORS.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 LibraryExists() const = 0;
192
193 virtual bool Refresh() { return false; }
194
198 virtual const wxString GetType() const = 0;
199
204 virtual void SetType( const wxString& aType ) = 0;
205
206 virtual bool SupportsSettingsDialog() const { return false; }
207
208 virtual void ShowSettingsDialog( wxWindow* aParent ) const {}
209
216 const wxString GetFullURI( bool aSubstituted = false ) const;
217
221 void SetFullURI( const wxString& aFullURI );
222
227 const wxString& GetOptions() const { return options; }
228
232 void SetOptions( const wxString& aOptions );
233
237 const wxString& GetDescr() const { return description; }
238
242 void SetDescr( const wxString& aDescr ) { description = aDescr; }
243
244 LIB_TABLE* GetParent() const { return m_parent; }
245
246 void SetParent( LIB_TABLE* aParent ) { m_parent = aParent; }
247
248 std::mutex& GetMutex() { return m_loadMutex; }
249
254 const std::map<std::string, UTF8>* GetProperties() const { return properties.get(); }
255
264 void Format( OUTPUTFORMATTER* out, int nestLevel ) const;
265
267 {
268 return do_clone();
269 }
270
271protected:
273 nickName( aRow.nickName ),
274 uri_user( aRow.uri_user ),
275 options( aRow.options ),
276 description( aRow.description ),
277 enabled( aRow.enabled ),
278 visible( aRow.visible ),
279 m_loaded( aRow.m_loaded ),
280 m_parent( aRow.m_parent )
281 {
282 if( aRow.properties )
283 properties = std::make_unique<std::map<std::string, UTF8>>( *aRow.properties.get() );
284 else
285 properties.reset();
286 }
287
288 void operator=( const LIB_TABLE_ROW& aRow );
289
290private:
291 virtual LIB_TABLE_ROW* do_clone() const = 0;
292
293 void setProperties( std::map<std::string, UTF8>* aProperties );
294
295private:
296 wxString nickName;
297 wxString uri_user;
298 wxString options;
299 wxString description;
300
301 bool enabled = true;
302 bool visible = true;
303 bool m_loaded = false;
305
306 std::unique_ptr<std::map<std::string, UTF8>> properties;
307
308 std::mutex m_loadMutex;
309};
310
311
358{
359public:
372 virtual void Parse( LIB_TABLE_LEXER* aLexer ) = 0;
373
384 virtual void Format( OUTPUTFORMATTER* aOutput, int aIndentLevel ) const = 0;
385
396 LIB_TABLE( LIB_TABLE* aFallBackTable = nullptr,
397 std::unique_ptr<LIB_TABLE_IO> aTableIo = nullptr );
398
399 virtual ~LIB_TABLE();
400
407 bool operator==( const LIB_TABLE& r ) const
408 {
409 if( m_rows.size() == r.m_rows.size() )
410 {
411 unsigned i;
412
413 for( i = 0; i < m_rows.size() && m_rows[i] == r.m_rows[i]; ++i )
414 ;
415
416 if( i == m_rows.size() )
417 return true;
418 }
419
420 return false;
421 }
422
423 bool operator!=( const LIB_TABLE& r ) const { return !( *this == r ); }
424
428 unsigned GetCount() const
429 {
430 return m_rows.size();
431 }
432
438 LIB_TABLE_ROW& At( unsigned aIndex )
439 {
440 return m_rows[aIndex];
441 }
442
446 const LIB_TABLE_ROW& At( unsigned aIndex ) const
447 {
448 return m_rows[aIndex];
449 }
450
459 bool IsEmpty( bool aIncludeFallback = true );
460
465 const wxString GetDescription( const wxString& aNickname );
466
473 bool HasLibrary( const wxString& aNickname, bool aCheckEnabled = false ) const;
474
481 bool HasLibraryWithPath( const wxString& aPath ) const;
482
487 std::vector<wxString> GetLogicalLibs();
488
492 wxString GetFullURI( const wxString& aLibNickname, bool aExpandEnvVars = true ) const;
493
506 bool InsertRow( LIB_TABLE_ROW* aRow, bool doReplace = false );
507
513 bool RemoveRow( const LIB_TABLE_ROW* aRow );
514
519 bool ReplaceRow( size_t aIndex, LIB_TABLE_ROW* aRow );
520
527 bool ChangeRowOrder( size_t aIndex, int aOffset );
528
532 void TransferRows( LIB_TABLE_ROWS& aRowsList );
533
538 const LIB_TABLE_ROW* FindRowByURI( const wxString& aURI );
539
548 void Load( const wxString& aFileName );
549
555 void Save( const wxString& aFileName ) const;
556
569 static std::map<std::string, UTF8>* ParseOptions( const std::string& aOptionsList );
570
581 static UTF8 FormatOptions( const std::map<std::string, UTF8>* aProperties );
582
588 int GetVersion() const
589 {
590 return m_version;
591 }
592
593protected:
594 /*
595 * Do not make this public. It MUST be called with a lock already in place.
596 */
597 void clear();
598
607 LIB_TABLE_ROW* findRow( const wxString& aNickname, bool aCheckIfEnabled = false ) const;
608
612 bool doInsertRow( LIB_TABLE_ROW* aRow, bool doReplace = false );
613
620 bool migrate();
621
622 /*
623 * Do not make this public. It MUST be called with a lock already in place.
624 */
625 void reindex();
626
627protected:
628 // Injected I/O interface
629 std::unique_ptr<LIB_TABLE_IO> m_io;
630
632
634 mutable int m_version;
635
637 // TODO: This should really be private; but the lib table grids re-use it
638 // (without using m_rowsMap).
640
642 std::map<wxString, LIB_TABLE_ROWS_ITER> m_rowsMap;
643
645 mutable std::shared_mutex m_mutex;
646};
647
648#endif // _LIB_TABLE_BASE_H_
KICAD_PLUGIN_EXPORT SCENEGRAPH * Load(char const *aFileName)
Read 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()
virtual bool LibraryExists() const =0
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:198