forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNewProjectWizard.cpp
465 lines (399 loc) · 15.6 KB
/
NewProjectWizard.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : NewProjectWizard.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "NewProjectWizard.h"
#include "globals.h"
#include "editor_config.h"
#include "pluginmanager.h"
#include "build_settings_config.h"
#include "compiler.h"
#include "workspace.h"
#include "debuggermanager.h"
#include <wx/filename.h>
#include <wx/dirdlg.h>
#include <wx/msgdlg.h>
class NewProjectDlgData : public SerializedObject
{
size_t m_flags;
int m_category;
wxString m_lastSelection;
public:
enum {
NpSeparateDirectory = 0x00000001
};
public:
NewProjectDlgData()
: m_flags(NpSeparateDirectory)
, m_category(-1) {
}
virtual ~NewProjectDlgData() {
}
void DeSerialize(Archive& arch) {
arch.Read(wxT("m_flags"), m_flags);
arch.Read(wxT("m_category"), m_category);
arch.Read(wxT("m_lastSelection"), m_lastSelection);
}
void Serialize(Archive& arch) {
arch.Write(wxT("m_flags"), m_flags);
arch.Write(wxT("m_category"), m_category);
arch.Write(wxT("m_lastSelection"), m_lastSelection);
}
void SetFlags(size_t flags) {
this->m_flags = flags;
}
size_t GetFlags() const {
return m_flags;
}
void SetCategory(int category) {
this->m_category = category;
}
int GetCategory() const {
return m_category;
}
void SetLastSelection(const wxString& lastSelection) {
this->m_lastSelection = lastSelection;
}
const wxString& GetLastSelection() const {
return m_lastSelection;
}
};
// ------------------------------------------------------------
// ------------------------------------------------------------
class NewProjectClientData : public wxClientData
{
ProjectPtr m_project;
wxString m_templateName;
public:
NewProjectClientData(ProjectPtr project, const wxString & templateName = wxEmptyString)
: m_templateName(templateName)
{
m_project = project;
if (m_project && m_templateName.IsEmpty() ) {
// use the project name
m_templateName = m_project->GetName();
}
}
virtual ~NewProjectClientData() {
m_project = NULL;
}
void setProject(const ProjectPtr& project) {
this->m_project = project;
}
const ProjectPtr& getProject() const {
return m_project;
}
void SetTemplate(const wxString& templateName) {
this->m_templateName = templateName;
}
const wxString& GetTemplate() const {
return m_templateName;
}
};
// ------------------------------------------------------------
// ------------------------------------------------------------
NewProjectWizard::NewProjectWizard(wxWindow* parent, const clNewProjectEvent::Template::Vec_t& additionalTemplates)
: NewProjectWizardBase(parent)
{
m_additionalTemplates = additionalTemplates;
NewProjectDlgData info;
EditorConfigST::Get()->ReadObject(wxT("NewProjectDlgData"), &info);
NewProjImgList images;
// Get list of project templates
wxImageList *lstImages (NULL);
GetProjectTemplateList(PluginManager::Get(), m_list, &m_mapImages, &lstImages);
wxDELETE(lstImages);
// Populate the dataview model
m_dataviewTemplatesModel->Clear();
std::map<wxString, wxDataViewItem> categoryMap;
// list of compilers
wxArrayString compilerChoices;
// list of debuggers
wxArrayString debuggerChoices;
// Place the plugins on top
for ( size_t i=0; i<m_additionalTemplates.size(); ++i ) {
// Add the category if not exists
const clNewProjectEvent::Template& newTemplate = m_additionalTemplates.at(i);
if ( !newTemplate.m_toolchain.IsEmpty() ) {
compilerChoices.Add( newTemplate.m_toolchain );
}
if ( !newTemplate.m_debugger.IsEmpty() ) {
debuggerChoices.Add( newTemplate.m_debugger );
}
wxString category = newTemplate.m_category;
if ( categoryMap.count( category ) == 0 ) {
wxVector<wxVariant> cols;
wxBitmap bmp = wxXmlResource::Get()->LoadBitmap( newTemplate.m_categoryPng );
if ( !bmp.IsOk() ) {
bmp = images.Bitmap("gear16");
}
cols.push_back( DVTemplatesModel::CreateIconTextVariant(category, bmp) );
categoryMap[category] = m_dataviewTemplatesModel->AppendItem(wxDataViewItem(0), cols);
}
{
wxVector<wxVariant> cols;
wxBitmap bmp = wxXmlResource::Get()->LoadBitmap( newTemplate.m_templatePng );
if ( !bmp.IsOk() ) {
bmp = images.Bitmap("gear16");
}
cols.push_back( DVTemplatesModel::CreateIconTextVariant(newTemplate.m_template, bmp) );
m_dataviewTemplatesModel->AppendItem(categoryMap[category], cols, new NewProjectClientData(NULL, newTemplate.m_template));
}
}
wxDataViewItem selection;
std::list<ProjectPtr>::iterator iter = m_list.begin();
for (; iter != m_list.end(); ++iter) {
wxVector<wxVariant> cols;
wxString internalType = (*iter)->GetProjectInternalType();
if (internalType.IsEmpty()) internalType = _("Others");
if ( categoryMap.count( internalType ) == 0 ) {
cols.clear();
wxIcon icn;
icn.CopyFromBitmap( images.Bitmap("gear16") );
wxDataViewIconText ict(internalType, icn);
wxVariant v;
v << ict;
cols.push_back( v );
categoryMap[internalType] = m_dataviewTemplatesModel->AppendItem(wxDataViewItem(0), cols);
}
wxString imgId = (*iter)->GetProjectIconName();
cols.clear();
wxIcon icn;
icn.CopyFromBitmap( images.Bitmap(imgId) );
wxDataViewIconText ict((*iter)->GetName(), icn);
wxVariant v;
v << ict;
cols.push_back( v );
wxDataViewItem item = m_dataviewTemplatesModel->AppendItem(categoryMap[internalType], cols, new NewProjectClientData( *iter ) );
if ( (*iter)->GetName() == info.GetLastSelection() ) {
selection = item;
}
}
// Aet list of compilers from configuration file
BuildSettingsConfigCookie cookie;
CompilerPtr cmp = BuildSettingsConfigST::Get()->GetFirstCompiler(cookie);
while (cmp) {
compilerChoices.Add(cmp->GetName());
cmp = BuildSettingsConfigST::Get()->GetNextCompiler(cookie);
}
m_choiceCompiler->Append( compilerChoices );
if (compilerChoices.IsEmpty() == false) {
m_choiceCompiler->SetSelection(0);
}
m_textCtrlProjectPath->SetValue( WorkspaceST::Get()->GetWorkspaceFileName().GetPath());
// Get list of debuggers
wxArrayString knownDebuggers = DebuggerMgr::Get().GetAvailableDebuggers();
debuggerChoices.insert( debuggerChoices.end(), knownDebuggers.begin(), knownDebuggers.end());
m_choiceDebugger->Append( debuggerChoices );
if ( !m_choiceDebugger->IsEmpty() ) {
m_choiceDebugger->SetSelection( 0 );
}
m_cbSeparateDir->SetValue( info.GetFlags() & NewProjectDlgData::NpSeparateDirectory );
// Make sure the old selection is restored
if ( selection.IsOk() ) {
m_dataviewTemplates->Select(selection);
m_dataviewTemplates->EnsureVisible(selection);
NewProjectClientData* cd = dynamic_cast<NewProjectClientData*>( m_dataviewTemplatesModel->GetClientObject(selection) );
if ( cd ) {
m_projectData.m_srcProject = cd->getProject();
}
}
UpdateProjectPage();
}
NewProjectWizard::~NewProjectWizard()
{
// Keep the options
NewProjectDlgData info;
size_t flags (0);
if(m_cbSeparateDir->IsChecked())
flags |= NewProjectDlgData::NpSeparateDirectory;
info.SetFlags(flags);
wxDataViewItem sel = m_dataviewTemplates->GetSelection();
if ( sel.IsOk() ) {
NewProjectClientData *cd = dynamic_cast<NewProjectClientData*>(m_dataviewTemplatesModel->GetClientObject(sel));
if ( cd && cd->getProject() ) {
info.SetLastSelection( cd->getProject()->GetName() ) ;
} else if ( cd ) {
info.SetLastSelection( cd->GetTemplate() );
}
}
EditorConfigST::Get()->WriteObject(wxT("NewProjectDlgData"), &info);
}
void NewProjectWizard::UpdateFullFileName()
{
wxString projectPath;
projectPath << m_textCtrlProjectPath->GetValue();
projectPath = projectPath.Trim().Trim(false);
wxString tmpSep( wxFileName::GetPathSeparator() );
if ( !projectPath.EndsWith(tmpSep) && projectPath.IsEmpty() == false ) {
projectPath << wxFileName::GetPathSeparator();
}
if ( m_txtProjName->GetValue().Trim().Trim(false).IsEmpty() ) {
m_stxtFullFileName->SetLabel(wxEmptyString);
return;
}
if ( m_cbSeparateDir->IsChecked()) {
//append the workspace name
projectPath << m_txtProjName->GetValue();
projectPath << wxFileName::GetPathSeparator();
}
projectPath << m_txtProjName->GetValue();
projectPath << wxT(".project");
m_stxtFullFileName->SetLabel( projectPath );
}
void NewProjectWizard::UpdateProjectPage()
{
//update the description
if ( m_projectData.m_srcProject ) {
wxString desc = m_projectData.m_srcProject->GetDescription();
desc = desc.Trim().Trim(false);
desc.Replace(wxT("\t"), wxT(" "));
// m_txtDescription->SetValue( desc );
// select the correct compiler
ProjectSettingsPtr settings = m_projectData.m_srcProject->GetSettings();
if (settings) {
ProjectSettingsCookie ck;
BuildConfigPtr buildConf = settings->GetFirstBuildConfiguration(ck);
if (buildConf) {
m_choiceCompiler->SetStringSelection( buildConf->GetCompilerType() );
m_choiceCompiler->SetStringSelection( buildConf->GetDebuggerType() );
}
}
}
}
void NewProjectWizard::OnBrowseProjectPath(wxCommandEvent& event)
{
wxUnusedVar(event);
wxString path(m_textCtrlProjectPath->GetValue());
wxString new_path = ::wxDirSelector(_("Select Project Path:"), path, wxDD_DEFAULT_STYLE, wxDefaultPosition, this);
if (new_path.IsEmpty() == false) {
static wxString INVALID_CHARS = " ,'()";
if ( new_path.find_first_of(INVALID_CHARS) != wxString::npos ) {
int answer = ::wxMessageBox(wxString() << _("The selected project path '") << new_path << _("'\nContains some invalid characters\nContinue anyways?"), "CodeLite", wxYES_NO|wxCANCEL|wxICON_WARNING, this);
if ( answer != wxYES ) {
return;
}
}
m_textCtrlProjectPath->SetValue(new_path);
}
}
void NewProjectWizard::OnItemSelected(wxDataViewEvent& event)
{
NewProjectClientData* cd = dynamic_cast<NewProjectClientData*>(m_dataviewTemplatesModel->GetClientObject(event.GetItem()));
if ( cd ) {
m_projectData.m_srcProject = cd->getProject();
m_projectData.m_sourceTemplate = cd->GetTemplate();
UpdateProjectPage();
}
}
void NewProjectWizard::OnProjectNameChanged(wxCommandEvent& event)
{
wxUnusedVar( event );
UpdateFullFileName();
}
void NewProjectWizard::OnProjectPathUpdated(wxCommandEvent& event)
{
wxUnusedVar( event );
UpdateFullFileName();
}
void NewProjectWizard::OnFinish(wxWizardEvent& event)
{
wxFileName fn( m_stxtFullFileName->GetLabel() );
// Ensure that the target folder exists
fn.Mkdir(wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL);
// make sure that there is no conflict in files between the template project and the selected path
if (m_projectData.m_srcProject) {
ProjectPtr p = m_projectData.m_srcProject;
wxString base_dir( fn.GetPath() );
std::vector<wxFileName> files;
p->GetFiles(files);
for (size_t i=0; i<files.size(); ++i) {
wxFileName f = files.at(i);
wxString new_file = base_dir + wxT("/") + f.GetFullName();
if ( wxFileName::FileExists(new_file) ) {
// this file already - notify the user
wxString msg;
msg << _("The File '") << f.GetFullName() << _("' already exists at the target directory '") << base_dir << wxT("'\n");
msg << _("Please select a different project path\n");
msg << _("The file '") << f.GetFullName() << _("' is part of the template project [") << p->GetName() << wxT("]");
wxMessageBox(msg, _("CodeLite"), wxOK|wxICON_HAND);
event.Veto();
return;
}
}
}
m_projectData.m_name = m_txtProjName->GetValue();
m_projectData.m_path = fn.GetPath();
m_projectData.m_cmpType = m_choiceCompiler->GetStringSelection();
m_projectData.m_debuggerType = m_choiceDebugger->GetStringSelection();
event.Skip();
}
void NewProjectWizard::OnPageChanging(wxWizardEvent& event)
{
if ( event.GetDirection() ) {
// -------------------------------------------------------
// Switching from the Templates page
// -------------------------------------------------------
if ( event.GetPage() == m_wizardPageTemplate ) {
if ( !CheckProjectTemplate() ) {
event.Veto();
return;
}
} else if ( event.GetPage() == m_wizardPageDetails ) {
if( !CheckProjectName() || !CheckProjectPath() ) {
event.Veto();
return;
}
}
}
event.Skip();
}
bool NewProjectWizard::CheckProjectName()
{
wxString projectName = m_txtProjName->GetValue();
projectName.Trim().Trim(false);
if(projectName.find_first_not_of(wxT("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_")) != wxString::npos || projectName.IsEmpty() ) {
wxMessageBox(_("Project name can only contain alpha numeric characters and/or the underscore '_'"), "CodeLite", wxOK | wxICON_WARNING | wxCENTER, this);
return false;
}
return true;
}
bool NewProjectWizard::CheckProjectPath()
{
wxFileName fn(m_textCtrlProjectPath->GetValue());
if ( !fn.Exists() ) {
wxMessageBox(_("Invalid project path selected: ") + fn.GetPath(), "CodeLite", wxOK | wxICON_WARNING |wxCENTER, this);
return false;
}
return true;
}
bool NewProjectWizard::CheckProjectTemplate()
{
// Make sure we have a selection
wxDataViewItem sel = m_dataviewTemplates->GetSelection();
if ( !sel.IsOk() || !dynamic_cast<NewProjectClientData*>(m_dataviewTemplatesModel->GetClientObject(sel) ) ) {
::wxMessageBox(_("Please select a template from the list"), "CodeLite", wxOK|wxCENTER|wxICON_WARNING, this);
return false;
}
return true;
}