KiCad PCB EDA Suite
Loading...
Searching...
No Matches
graphics_import_mgr.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 (C) 2016 CERN
5 * @author Maciej Suminski <[email protected]>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU 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, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#include "graphics_import_mgr.h"
26
27#include <core/kicad_algo.h>
28#include <eda_item.h>
29#include "dxf_import_plugin.h"
30#include "svg_import_plugin.h"
31
32#include <wx/regex.h>
33
35{
36 // This is the full list of types, from which we'll subtract our blacklist
37 static const TYPE_LIST all_types = {
38 DXF,
39 SVG,
40 };
41
42 std::copy_if( all_types.begin(), all_types.end(), std::back_inserter( m_importableTypes ),
43 [&aBlacklist]( const GFX_FILE_T& arg )
44 {
45 return !alg::contains( aBlacklist, arg );
46 } );
47}
48
49
50std::unique_ptr<GRAPHICS_IMPORT_PLUGIN> GRAPHICS_IMPORT_MGR::GetPlugin( GFX_FILE_T aType ) const
51{
52 std::unique_ptr<GRAPHICS_IMPORT_PLUGIN> ret;
53
54 switch( aType )
55 {
56 case DXF: ret = std::make_unique<DXF_IMPORT_PLUGIN>(); break;
57
58 case SVG: ret = std::make_unique<SVG_IMPORT_PLUGIN>(); break;
59
60 default: throw std::runtime_error( "Unhandled graphics format" ); break;
61 }
62
63 return ret;
64}
65
66
67std::unique_ptr<GRAPHICS_IMPORT_PLUGIN> GRAPHICS_IMPORT_MGR::GetPluginByExt(
68 const wxString& aExtension ) const
69{
70 for( auto fileType : GetImportableFileTypes() )
71 {
72 auto plugin = GetPlugin( fileType );
73 auto fileExtensions = plugin->GetFileExtensions();
74
75 if( compareFileExtensions( aExtension.ToStdString(), fileExtensions ) )
76 return plugin;
77 }
78
79 return {};
80}
GFX_FILE_T
< List of handled file types.
std::unique_ptr< GRAPHICS_IMPORT_PLUGIN > GetPluginByExt(const wxString &aExtension) const
Returns a plugin instance for a specific file type.
std::vector< GFX_FILE_T > TYPE_LIST
TYPE_LIST GetImportableFileTypes() const
Returns a plugin that handles a specific file extension.
GRAPHICS_IMPORT_MGR(const TYPE_LIST &aBlacklist)
Construct an import plugin manager, with a specified list of filetypes that are not permitted (can be...
std::unique_ptr< GRAPHICS_IMPORT_PLUGIN > GetPlugin(GFX_FILE_T aType) const
bool compareFileExtensions(const std::string &aExtension, const std::vector< std::string > &aReference, bool aCaseSensitive)
Compare the given extension against the reference extensions to see if it matches any of the referenc...
MODEL3D_FORMAT_TYPE fileType(const char *aFileName)