KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
import_proj.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) 2019 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
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 along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include "import_proj.h"
23#include <macros.h>
24#include <string_utils.h>
25#include <richio.h>
26
27#include <wx/fileconf.h>
28#include <wx/msgdlg.h>
29#include <wx/wfstream.h>
30
31#include <kiway.h>
32#include <kiway_player.h>
33#include <kicad_manager_frame.h>
34#include <pcb_edit_frame.h>
35#include <sch_edit_frame.h>
36
37#include <symbol_lib_table.h>
38#include <fp_lib_table.h>
39
40#include <sch_io/sch_io_mgr.h>
41#include <pcb_io/pcb_io_mgr.h>
42#include <project_sch.h>
43#include <project_pcb.h>
44
49
50#include <wx/log.h>
51
52
54 const std::vector<wxString>& aSchFileExtensions,
55 const std::vector<wxString>& aPcbFileExtensions ) :
56 m_frame( aFrame ),
57 m_schExtenstions( aSchFileExtensions ), m_pcbExtenstions( aPcbFileExtensions )
58{
59}
60
61
63{
64 // Append a new directory with the same name of the project file
65 // Keep iterating until we find an empty directory
66 wxString newDir = m_TargetProj.GetName();
67 int attempt = 0;
68
69 m_TargetProj.AppendDir( newDir );
70
71 while( m_TargetProj.DirExists() )
72 {
73 m_TargetProj.RemoveLastDir();
74 wxString suffix = wxString::Format( "_%d", ++attempt );
75 m_TargetProj.AppendDir( newDir + suffix );
76 }
77}
78
79
80void IMPORT_PROJ_HELPER::OutputCopyError( const wxFileName& aSrc, const wxFileName& aFileCopy )
81{
82 wxString msg;
83 msg.Printf( _( "Cannot copy file '%s'\n"
84 "to '%s'\n"
85 "The project cannot be imported." ),
86 aSrc.GetFullPath(), aFileCopy.GetFullPath() );
87
88 wxMessageDialog fileCopyErrorDlg( m_frame, msg, _( "Error" ), wxOK_DEFAULT | wxICON_ERROR );
89 fileCopyErrorDlg.ShowModal();
90}
91
92
94{
95 wxString m_file;
96
97public:
98 SCOPED_FILE_REMOVER( const wxString& aFile ) : m_file( aFile ) {}
99 ~SCOPED_FILE_REMOVER() { wxRemoveFile( m_file ); }
100};
101
102
103void IMPORT_PROJ_HELPER::ImportIndividualFile( KICAD_T aFT, int aImportedFileType )
104{
105 FRAME_T frame_type;
106 wxString appImportFile;
107 std::vector<wxString> neededExts;
108
109 switch( aFT )
110 {
111 case SCHEMATIC_T:
112 neededExts = m_schExtenstions;
113 frame_type = FRAME_SCH;
114 break;
115
116 case PCB_T:
117 neededExts = m_pcbExtenstions;
118 frame_type = FRAME_PCB_EDITOR;
119 break;
120
121 default: return;
122 }
123
124 std::vector<SCOPED_FILE_REMOVER> copiedFiles;
125
126 for( wxString ext : neededExts )
127 {
128 if( ext == wxS( "INPUT" ) )
129 ext = m_InputFile.GetExt();
130
131 wxFileName candidate = m_InputFile;
132 candidate.SetExt( ext );
133
134 if( !candidate.FileExists() )
135 continue;
136
137 wxFileName targetFile( m_TargetProj.GetPath(), candidate.GetName(), candidate.GetExt() );
138
139 if( !targetFile.FileExists() )
140 {
141 bool copied = wxCopyFile( candidate.GetFullPath(), targetFile.GetFullPath(), false );
142
143 if( copied )
144 {
145 // Will be auto-removed
146 copiedFiles.emplace_back( targetFile.GetFullPath() );
147 }
148 }
149
150 // Pick the first file to pass to application
151 if( appImportFile.empty() && targetFile.FileExists() )
152 appImportFile = targetFile.GetFullPath();
153 }
154
155 if( appImportFile.empty() )
156 return;
157
158 doImport( appImportFile, frame_type, aImportedFileType );
159}
160
161
162void IMPORT_PROJ_HELPER::doImport( const wxString& aFile, FRAME_T aFrameType, int aImportedFileType )
163{
164 KIWAY_PLAYER* frame = m_frame->Kiway().Player( aFrameType, true );
165
166 std::stringstream ss;
167 ss << aImportedFileType << '\n' << TO_UTF8( aFile );
168
169 for( const auto& [key, value] : m_properties )
170 ss << '\n' << key << '\n' << value.wx_str();
171
172 std::string packet = ss.str();
173 frame->Kiway().ExpressMail( aFrameType, MAIL_IMPORT_FILE, packet, m_frame );
174
175 if( !frame->IsShownOnScreen() )
176 frame->Show( true );
177
178 // On Windows, Raise() does not bring the window on screen, when iconized
179 if( frame->IsIconized() )
180 frame->Iconize( false );
181
182 frame->Raise();
183}
184
185
187{
188 wxFileName fname = m_InputFile;
189
190 if( fname.GetExt() == wxS( "epro" ) || fname.GetExt() == wxS( "zip" ) )
191 {
192 nlohmann::json project = EASYEDAPRO::ReadProjectOrDeviceFile( fname.GetFullPath() );
193
194 std::map<wxString, EASYEDAPRO::PRJ_SCHEMATIC> prjSchematics = project.at( "schematics" );
195 std::map<wxString, EASYEDAPRO::PRJ_BOARD> prjBoards = project.at( "boards" );
196 std::map<wxString, wxString> prjPcbNames = project.at( "pcbs" );
197
198 std::vector<IMPORT_PROJECT_DESC> toImport =
200
201 if( toImport.size() > 1 )
202 toImport = DIALOG_IMPORT_CHOOSE_PROJECT::RunModal( m_frame, toImport );
203
204 if( toImport.size() == 1 )
205 {
206 const IMPORT_PROJECT_DESC& desc = toImport[0];
207
208 m_properties["pcb_id"] = desc.PCBId;
209 m_properties["sch_id"] = desc.SchematicId;
210 }
211 else
212 {
213 m_properties["pcb_id"] = "";
214 m_properties["sch_id"] = "";
215 }
216 }
217}
218
219
220void IMPORT_PROJ_HELPER::addLocalLibraries( const std::set<wxString>& aNames, FRAME_T aFrameType )
221{
222 KIWAY_PLAYER* frame = m_frame->Kiway().Player( aFrameType, true );
223
224 std::stringstream ss;
225
226 for( const wxString& name : aNames )
227 {
228 wxFileName fname( name );
229 fname.MakeAbsolute( m_InputFile.GetPath() );
230 ss << TO_UTF8( fname.GetFullPath() ) << '\n';
231 }
232
233 std::string packet = ss.str();
234 frame->Kiway().ExpressMail( aFrameType, MAIL_ADD_LOCAL_LIB, packet, m_frame );
235}
236
237
239{
240 wxFFileInputStream stream( m_InputFile.GetFullPath() );
241
242 if( !stream.IsOk() )
243 return;
244
245 wxFileConfig config( stream );
246 wxString groupname;
247 long groupid;
248
249 std::set<wxString> sch_file;
250 std::set<wxString> pcb_file;
251 std::set<wxString> sch_libs;
252 std::set<wxString> pcb_libs;
253
254 for( bool more = config.GetFirstGroup( groupname, groupid ); more;
255 more = config.GetNextGroup( groupname, groupid ) )
256 {
257 if( !groupname.StartsWith( wxS( "Document" ) ) )
258 continue;
259
260 wxString number = groupname.Mid( 8 );
261 long docNumber;
262
263 if( !number.ToLong( &docNumber ) )
264 continue;
265
266 wxString path = config.Read( groupname + wxS( "/DocumentPath" ), wxEmptyString );
267
268 if( path.empty() )
269 continue;
270
271 wxFileName fname( path );
272
273 if( !fname.IsAbsolute() )
274 fname.MakeAbsolute( m_InputFile.GetPath() );
275
276 if( !fname.GetExt().CmpNoCase( "PCBDOC" ) )
277 pcb_file.insert( fname.GetFullPath() );
278
279 if( !fname.GetExt().CmpNoCase( "SCHDOC" ) )
280 sch_file.insert( fname.GetFullPath() );
281
282 if( !fname.GetExt().CmpNoCase( "PCBLIB" ) )
283 pcb_libs.insert( fname.GetFullPath() );
284
285 if( !fname.GetExt().CmpNoCase( "SCHLIB" ) )
286 sch_libs.insert( fname.GetFullPath() );
287 }
288
289 addLocalLibraries( sch_libs, FRAME_SCH );
291
292 m_properties["project_file"] = m_InputFile.GetFullPath();
293
294 int ii = 0;
295
296 for( auto& path : sch_file )
297 {
298 std::string key = "sch" + std::to_string( ii++ );
299 m_properties[key] = path.ToStdString();
300 }
301
302 if( !sch_file.empty() )
303 doImport( "", FRAME_SCH, SCH_IO_MGR::SCH_ALTIUM );
304
305 if( !pcb_file.empty() )
307}
308
309
310void IMPORT_PROJ_HELPER::ImportFiles( int aImportedSchFileType, int aImportedPcbFileType )
311{
312 m_properties.clear();
313
314 if( aImportedSchFileType == SCH_IO_MGR::SCH_EASYEDAPRO
315 || aImportedPcbFileType == PCB_IO_MGR::EASYEDAPRO )
316 {
318 }
319 else if( aImportedSchFileType == SCH_IO_MGR::SCH_ALTIUM
320 || aImportedPcbFileType == PCB_IO_MGR::ALTIUM_DESIGNER )
321 {
323 return;
324 }
325
326 ImportIndividualFile( SCHEMATIC_T, aImportedSchFileType );
327 ImportIndividualFile( PCB_T, aImportedPcbFileType );
328}
const char * name
Definition: DXF_plotter.cpp:59
static std::vector< IMPORT_PROJECT_DESC > RunModal(wxWindow *aParent, const std::vector< IMPORT_PROJECT_DESC > &aProjectDesc)
Create and show a dialog (modal) and returns the data from it after completion.
wxFileName m_TargetProj
Definition: import_proj.h:58
void EasyEDAProProjectHandler()
IMPORT_PROJ_HELPER(KICAD_MANAGER_FRAME *aframe, const std::vector< wxString > &aSchFileExtensions, const std::vector< wxString > &aPcbFileExtensions)
Definition: import_proj.cpp:53
std::map< std::string, UTF8 > m_properties
Definition: import_proj.h:63
void FindEmptyTargetDir()
Appends a new directory with the name of the project file Keep iterating until an empty directory is ...
Definition: import_proj.cpp:62
std::vector< wxString > m_pcbExtenstions
Definition: import_proj.h:69
KICAD_MANAGER_FRAME * m_frame
Definition: import_proj.h:61
void ImportFiles(int aImportedSchFileType, int aImportedPcbFileType)
Converts imported files to kicad type files.
void OutputCopyError(const wxFileName &aSrc, const wxFileName &aFileCopy)
Definition: import_proj.cpp:80
void addLocalLibraries(const std::set< wxString > &aLibName, FRAME_T aFrameType)
void ImportIndividualFile(KICAD_T aKicad_T, int aImportedFileType)
wxFileName m_InputFile
Definition: import_proj.h:57
std::vector< wxString > m_schExtenstions
Definition: import_proj.h:68
void doImport(const wxString &aFile, FRAME_T aFrameType, int aImportedFileType)
The main KiCad project manager frame.
KIWAY & Kiway() const
Return a reference to the KIWAY that this object has an opportunity to participate in.
Definition: kiway_holder.h:55
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
Definition: kiway_player.h:65
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
Definition: kiway.cpp:406
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr)
Send aPayload to aDestination from aSource.
Definition: kiway.cpp:527
@ ALTIUM_DESIGNER
Definition: pcb_io_mgr.h:62
SCOPED_FILE_REMOVER(const wxString &aFile)
Definition: import_proj.cpp:98
#define _(s)
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
Definition: frame_type.h:33
@ FRAME_PCB_EDITOR
Definition: frame_type.h:42
@ FRAME_SCH
Definition: frame_type.h:34
This file contains miscellaneous commonly used macros and functions.
@ MAIL_IMPORT_FILE
Definition: mail_type.h:48
@ MAIL_ADD_LOCAL_LIB
Definition: mail_type.h:54
std::vector< IMPORT_PROJECT_DESC > ProjectToSelectorDialog(const nlohmann::json &aProject, bool aPcbOnly=false, bool aSchOnly=false)
nlohmann::json ReadProjectOrDeviceFile(const wxString &aZipFileName)
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Definition: string_utils.h:403
Describes how non-KiCad boards and schematics should be imported as KiCad projects.
bool copied
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition: typeinfo.h:78
@ PCB_T
Definition: typeinfo.h:82
@ SCHEMATIC_T
Definition: typeinfo.h:204
Definition of file extensions used in Kicad.