27#include <wx/fileconf.h>
29#include <wx/wfstream.h>
54 const std::vector<wxString>& aSchFileExtensions,
55 const std::vector<wxString>& aPcbFileExtensions ) :
57 m_schExtenstions( aSchFileExtensions ), m_pcbExtenstions( aPcbFileExtensions )
74 wxString suffix = wxString::Format(
"_%d", ++attempt );
83 msg.Printf(
_(
"Cannot copy file '%s'\n"
85 "The project cannot be imported." ),
86 aSrc.GetFullPath(), aFileCopy.GetFullPath() );
88 wxMessageDialog fileCopyErrorDlg(
m_frame, msg,
_(
"Error" ), wxOK_DEFAULT | wxICON_ERROR );
89 fileCopyErrorDlg.ShowModal();
106 wxString appImportFile;
107 std::vector<wxString> neededExts;
124 std::vector<SCOPED_FILE_REMOVER> copiedFiles;
126 for( wxString ext : neededExts )
128 if( ext == wxS(
"INPUT" ) )
132 candidate.SetExt( ext );
134 if( !candidate.FileExists() )
137 wxFileName targetFile(
m_TargetProj.GetPath(), candidate.GetName(), candidate.GetExt() );
139 if( !targetFile.FileExists() )
141 bool copied = wxCopyFile( candidate.GetFullPath(), targetFile.GetFullPath(),
false );
146 copiedFiles.emplace_back( targetFile.GetFullPath() );
151 if( appImportFile.empty() && targetFile.FileExists() )
152 appImportFile = targetFile.GetFullPath();
155 if( appImportFile.empty() )
158 doImport( appImportFile, frame_type, aImportedFileType );
166 std::stringstream ss;
167 ss << aImportedFileType <<
'\n' <<
TO_UTF8( aFile );
170 ss <<
'\n' << key <<
'\n' << value.wx_str();
172 std::string packet = ss.str();
175 if( !frame->IsShownOnScreen() )
179 if( frame->IsIconized() )
180 frame->Iconize(
false );
190 if( fname.GetExt() == wxS(
"epro" ) || fname.GetExt() == wxS(
"zip" ) )
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" );
198 std::vector<IMPORT_PROJECT_DESC> toImport =
201 if( toImport.size() > 1 )
204 if( toImport.size() == 1 )
224 std::stringstream ss;
226 for(
const wxString&
name : aNames )
228 wxFileName fname(
name );
230 ss <<
TO_UTF8( fname.GetFullPath() ) <<
'\n';
233 std::string packet = ss.str();
240 wxFFileInputStream stream(
m_InputFile.GetFullPath() );
245 wxFileConfig
config( stream );
249 std::set<wxString> sch_file;
250 std::set<wxString> pcb_file;
251 std::set<wxString> sch_libs;
252 std::set<wxString> pcb_libs;
254 for(
bool more =
config.GetFirstGroup( groupname, groupid ); more;
255 more =
config.GetNextGroup( groupname, groupid ) )
257 if( !groupname.StartsWith( wxS(
"Document" ) ) )
260 wxString number = groupname.Mid( 8 );
263 if( !number.ToLong( &docNumber ) )
266 wxString
path =
config.Read( groupname + wxS(
"/DocumentPath" ), wxEmptyString );
271 wxFileName fname(
path );
273 if( !fname.IsAbsolute() )
276 if( !fname.GetExt().CmpNoCase(
"PCBDOC" ) )
277 pcb_file.insert( fname.GetFullPath() );
279 if( !fname.GetExt().CmpNoCase(
"SCHDOC" ) )
280 sch_file.insert( fname.GetFullPath() );
282 if( !fname.GetExt().CmpNoCase(
"PCBLIB" ) )
283 pcb_libs.insert( fname.GetFullPath() );
285 if( !fname.GetExt().CmpNoCase(
"SCHLIB" ) )
286 sch_libs.insert( fname.GetFullPath() );
296 for(
auto&
path : sch_file )
298 std::string key =
"sch" + std::to_string( ii++ );
302 if( !sch_file.empty() )
305 if( !pcb_file.empty() )
314 if( aImportedSchFileType == SCH_IO_MGR::SCH_EASYEDAPRO
319 else if( aImportedSchFileType == SCH_IO_MGR::SCH_ALTIUM
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.
void EasyEDAProProjectHandler()
IMPORT_PROJ_HELPER(KICAD_MANAGER_FRAME *aframe, const std::vector< wxString > &aSchFileExtensions, const std::vector< wxString > &aPcbFileExtensions)
std::map< std::string, UTF8 > m_properties
void FindEmptyTargetDir()
Appends a new directory with the name of the project file Keep iterating until an empty directory is ...
std::vector< wxString > m_pcbExtenstions
void AltiumProjectHandler()
KICAD_MANAGER_FRAME * m_frame
void ImportFiles(int aImportedSchFileType, int aImportedPcbFileType)
Converts imported files to kicad type files.
void OutputCopyError(const wxFileName &aSrc, const wxFileName &aFileCopy)
void addLocalLibraries(const std::set< wxString > &aLibName, FRAME_T aFrameType)
void ImportIndividualFile(KICAD_T aKicad_T, int aImportedFileType)
std::vector< wxString > m_schExtenstions
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.
A wxFrame capable of the OpenProjectFiles function, meaning it can load a portion of a KiCad project.
virtual KIWAY_PLAYER * Player(FRAME_T aFrameType, bool doCreate=true, wxTopLevelWindow *aParent=nullptr)
Return the KIWAY_PLAYER* given a FRAME_T.
virtual void ExpressMail(FRAME_T aDestination, MAIL_T aCommand, std::string &aPayload, wxWindow *aSource=nullptr)
Send aPayload to aDestination from aSource.
SCOPED_FILE_REMOVER(const wxString &aFile)
FRAME_T
The set of EDA_BASE_FRAME derivatives, typically stored in EDA_BASE_FRAME::m_Ident.
This file contains miscellaneous commonly used macros and functions.
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.
Describes how non-KiCad boards and schematics should be imported as KiCad projects.
KICAD_T
The set of class identification values stored in EDA_ITEM::m_structType.
Definition of file extensions used in Kicad.