KiCad PCB EDA Suite
Loading...
Searching...
No Matches
io_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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20
21#ifndef IO_BASE_H_
22#define IO_BASE_H_
23
24#include <map>
25#include <vector>
26#include <string>
27
28#include <kicommon.h>
29#include <core/utf8.h>
30#include <wx/string.h>
32
33class REPORTER;
35class DIALOG_SHIM;
36class wxWindow;
37
39{
40public:
45 {
46 wxString m_Description;
47
49 std::vector<std::string> m_FileExtensions;
50
52 std::vector<std::string> m_ExtensionsInDir;
53 bool m_IsFile;
54 bool m_CanRead;
56
57 IO_FILE_DESC( const wxString& aDescription, const std::vector<std::string>& aFileExtensions,
58 const std::vector<std::string>& aExtsInFolder = {}, bool aIsFile = true,
59 bool aCanRead = true, bool aCanWrite = true ) :
60 m_Description( aDescription ),
61 m_FileExtensions( aFileExtensions ), m_ExtensionsInDir( aExtsInFolder ),
62 m_IsFile( aIsFile ), m_CanRead( aCanRead ), m_CanWrite( aCanWrite )
63 {
64 }
65
66 IO_FILE_DESC() : IO_FILE_DESC( wxEmptyString, {} ) {}
67
71 wxString FileFilter() const;
72
73 operator bool() const { return !m_Description.empty(); }
74 };
75
76 virtual ~IO_BASE() = default;
77
81 const wxString& GetName() const { return m_name; }
82
86 virtual void SetReporter( REPORTER* aReporter ) { m_reporter = aReporter; }
87
91 virtual void SetProgressReporter( PROGRESS_REPORTER* aReporter )
92 {
93 m_progressReporter = aReporter;
94 }
95
97 // Library-related functions
99
105 virtual const IO_FILE_DESC GetLibraryDesc() const = 0;
106
114 virtual const IO_FILE_DESC GetLibraryFileDesc() const { return GetLibraryDesc(); }
115
120 virtual bool CanReadLibrary( const wxString& aFileName ) const;
121
138 virtual void CreateLibrary( const wxString& aLibraryPath,
139 const std::map<std::string, UTF8>* aProperties = nullptr );
140
158 virtual bool DeleteLibrary( const wxString& aLibraryPath,
159 const std::map<std::string, UTF8>* aProperties = nullptr );
160
171 virtual bool IsLibraryWritable( const wxString& aLibraryPath );
172
197 virtual void GetLibraryOptions( std::map<std::string, UTF8>* aListToAppendTo ) const;
198
199
204 virtual bool SupportsConfigurationDialog() const { return false; }
205
210 virtual DIALOG_SHIM* CreateConfigurationDialog( wxWindow* aParent ) { return nullptr; }
211
212 virtual void Report( const wxString& aText, SEVERITY aSeverity = RPT_SEVERITY_UNDEFINED );
213
214 virtual void AdvanceProgressPhase();
215
216protected:
217 // Delete the zero-argument base constructor to force proper construction
218 IO_BASE() = delete;
219
223 IO_BASE( const wxString& aName ) :
224 m_name( aName ),
225 m_reporter( nullptr ),
226 m_progressReporter( nullptr )
227 {
228 }
229
230
232 wxString m_name;
233
236
239};
240
241#endif // IO_BASE_H_
Dialog helper object to sit in the inheritance tree between wxDialog and any class written by wxFormB...
Definition dialog_shim.h:68
IO_BASE()=delete
const wxString & GetName() const
Return a brief hard coded name for this IO interface.
Definition io_base.h:81
REPORTER * m_reporter
Reporter to log errors/warnings to, may be nullptr.
Definition io_base.h:235
wxString m_name
Name of the IO loader.
Definition io_base.h:232
virtual const IO_FILE_DESC GetLibraryFileDesc() const
Get the descriptor for the individual library elements that this IO plugin operates on.
Definition io_base.h:114
IO_BASE(const wxString &aName)
Definition io_base.h:223
virtual bool SupportsConfigurationDialog() const
Definition io_base.h:204
virtual ~IO_BASE()=default
virtual const IO_FILE_DESC GetLibraryDesc() const =0
Get the descriptor for the library container that this IO plugin operates on.
virtual void SetReporter(REPORTER *aReporter)
Set an optional reporter for warnings/errors.
Definition io_base.h:86
virtual void SetProgressReporter(PROGRESS_REPORTER *aReporter)
Set an optional progress reporter.
Definition io_base.h:91
PROGRESS_REPORTER * m_progressReporter
Progress reporter to track the progress of the operation, may be nullptr.
Definition io_base.h:238
virtual DIALOG_SHIM * CreateConfigurationDialog(wxWindow *aParent)
Definition io_base.h:210
A progress reporter interface for use in multi-threaded environments.
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:73
#define KICOMMON_API
Definition kicommon.h:28
SEVERITY
@ RPT_SEVERITY_UNDEFINED
Container that describes file type info.
Definition io_base.h:45
std::vector< std::string > m_ExtensionsInDir
Definition io_base.h:52
IO_FILE_DESC(const wxString &aDescription, const std::vector< std::string > &aFileExtensions, const std::vector< std::string > &aExtsInFolder={}, bool aIsFile=true, bool aCanRead=true, bool aCanWrite=true)
Definition io_base.h:57
bool m_IsFile
Whether the library is a folder or a file.
Definition io_base.h:53
wxString m_Description
Description shown in the file picker dialog.
Definition io_base.h:46
bool m_CanWrite
Whether the IO can write this file type.
Definition io_base.h:55
std::vector< std::string > m_FileExtensions
Filter used for file pickers if m_IsFile is true.
Definition io_base.h:49
bool m_CanRead
Whether the IO can read this file type.
Definition io_base.h:54