forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvn_console.cpp
292 lines (233 loc) · 8.51 KB
/
svn_console.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
#include <wx/app.h>
#include "environmentconfig.h"
#include <wx/textdlg.h>
#include "svn_console.h"
#include "subversion_strings.h"
#include <wx/tokenzr.h>
#include <wx/aui/framemanager.h>
#include <wx/xrc/xmlres.h>
#include "processreaderthread.cpp"
#include "globals.h"
#include "processreaderthread.h"
#include "subversion2.h"
//-------------------------------------------------------------
BEGIN_EVENT_TABLE(SvnConsole, SvnShellBase)
EVT_COMMAND(wxID_ANY, wxEVT_PROC_DATA_READ, SvnConsole::OnReadProcessOutput)
EVT_COMMAND(wxID_ANY, wxEVT_PROC_TERMINATED, SvnConsole::OnProcessEnd )
END_EVENT_TABLE()
SvnConsole::SvnConsole(wxWindow *parent, Subversion2* plugin)
: SvnShellBase(parent)
, m_handler(NULL)
, m_process(NULL)
, m_plugin (plugin)
, m_printProcessOutput(true)
{
m_sci->SetLexer(wxSCI_LEX_SVN);
m_sci->StyleClearAll();
for (int i=0; i<=wxSCI_STYLE_DEFAULT; i++) {
m_sci->StyleSetBackground(i, wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
m_sci->StyleSetForeground(i, *wxBLACK);
}
wxFont defFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
wxFont font(defFont.GetPointSize(), wxFONTFAMILY_TELETYPE, wxNORMAL, wxNORMAL);
m_sci->StyleSetFont(0, font);
m_sci->SetHotspotActiveUnderline (true);
m_sci->SetHotspotActiveForeground(true, wxT("BLUE"));
m_sci->SetHotspotSingleLine(true);
m_sci->SetMarginType(1, wxSCI_MARGIN_SYMBOL);
m_sci->SetMarginMask(4, wxSCI_MASK_FOLDERS);
m_sci->SetMarginWidth(0, 0);
m_sci->SetMarginWidth(1, 0);
m_sci->SetMarginWidth(2, 0);
m_sci->SetWrapMode(wxSCI_WRAP_CHAR);
m_sci->SetWrapStartIndent(4);
m_sci->SetWrapVisualFlags(2);
m_sci->SetScrollWidthTracking(true);
/////////////////////////////////////////////////////////////////////////////
// Set SVN styles
/////////////////////////////////////////////////////////////////////////////
m_sci->StyleSetForeground ( wxSCI_LEX_SVN_INFO, wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT) );
m_sci->StyleSetBackground ( wxSCI_LEX_SVN_INFO, wxSystemSettings::GetColour (wxSYS_COLOUR_WINDOW ) );
m_sci->StyleSetForeground ( wxSCI_LEX_SVN_ADDED, wxT("FOREST GREEN") );
m_sci->StyleSetBackground ( wxSCI_LEX_SVN_ADDED, wxSystemSettings::GetColour (wxSYS_COLOUR_WINDOW ) );
m_sci->StyleSetForeground ( wxSCI_LEX_SVN_MERGED, wxT("FOREST GREEN") );
m_sci->StyleSetBackground ( wxSCI_LEX_SVN_MERGED, wxSystemSettings::GetColour (wxSYS_COLOUR_WINDOW ) );
m_sci->StyleSetForeground ( wxSCI_LEX_SVN_UPDATED, wxT("FOREST GREEN") );
m_sci->StyleSetBackground ( wxSCI_LEX_SVN_UPDATED, wxSystemSettings::GetColour (wxSYS_COLOUR_WINDOW ) );
m_sci->StyleSetForeground ( wxSCI_LEX_SVN_CONFLICT, wxT("RED") );
m_sci->StyleSetBackground ( wxSCI_LEX_SVN_CONFLICT, wxSystemSettings::GetColour (wxSYS_COLOUR_WINDOW ) );
m_sci->StyleSetForeground ( wxSCI_LEX_SVN_DELETED, wxT("FOREST GREEN") );
m_sci->StyleSetBackground ( wxSCI_LEX_SVN_DELETED, wxSystemSettings::GetColour ( wxSYS_COLOUR_WINDOW ) );
m_sci->StyleSetFont ( wxSCI_LEX_SVN_INFO, font );
m_sci->StyleSetFont ( wxSCI_LEX_SVN_ADDED, font );
m_sci->StyleSetFont ( wxSCI_LEX_SVN_MERGED, font );
m_sci->StyleSetFont ( wxSCI_LEX_SVN_UPDATED, font );
m_sci->StyleSetFont ( wxSCI_LEX_SVN_CONFLICT, font );
m_sci->StyleSetFont ( wxSCI_LEX_SVN_DELETED, font );
m_sci->SetReadOnly(true);
}
SvnConsole::~SvnConsole()
{
}
void SvnConsole::OnReadProcessOutput(wxCommandEvent& event)
{
ProcessEventData *ped = (ProcessEventData *)event.GetClientData();
if (ped) {
m_output.Append(ped->GetData().c_str());
}
wxString s (ped->GetData());
s.MakeLower();
if (m_printProcessOutput)
AppendText( ped->GetData() );
if (s.Contains(wxT("(r)eject, accept (t)emporarily or accept (p)ermanently"))) {
AppendText( wxT("\n(Answering 'p')\n") );
m_process->Write(wxT("p"));
wxString message;
message << wxT(" ***********************************************\n");
message << wxT(" * MESSAGE: *\n");
message << wxT(" * Terminating SVN process. *\n");
message << wxT(" * Please run cleanup from the Subversion View,*\n");
message << wxT(" * And re-try again *\n");
message << wxT(" ***********************************************\n");
wxThread::Sleep(100);
AppendText( message );
m_process->Terminate();
}
delete ped;
}
void SvnConsole::OnProcessEnd(wxCommandEvent& event)
{
ProcessEventData *ped = (ProcessEventData *)event.GetClientData();
delete ped;
if ( m_process ) {
delete m_process;
m_process = NULL;
}
if (m_handler) {
if (m_handler->TestLoginRequired(m_output)) {
// re-issue the last command but this time with login dialog
m_handler->GetPlugin()->GetConsole()->AppendText(wxT("Authentication failed. Retrying...\n"));
// If we got a URL use it
if(m_url.IsEmpty() == false)
m_handler->ProcessLoginRequiredForURL(m_url);
else
m_handler->ProcessLoginRequired(m_workingDirectory);
} else if (m_handler->TestVerificationFailed(m_output)) {
m_handler->GetPlugin()->GetConsole()->AppendText(wxT("Server certificate verification failed. Retrying...\n"));
m_handler->ProcessVerificationRequired();
} else {
// command ended successfully, invoke the "success" callback
m_handler->Process(m_output);
AppendText(wxT("-----\n"));
}
delete m_handler;
m_handler = NULL;
}
m_workingDirectory.Clear();
m_url.Clear();
}
bool SvnConsole::ExecuteURL(const wxString& cmd, const wxString& url, SvnCommandHandler* handler, bool printProcessOutput)
{
if(!DoExecute(cmd, handler, wxT(""), printProcessOutput))
return false;
m_url = url;
return true;
}
bool SvnConsole::Execute(const wxString& cmd, const wxString& workingDirectory, SvnCommandHandler* handler, bool printProcessOutput)
{
if(!DoExecute(cmd, handler, workingDirectory, printProcessOutput))
return false;
m_workingDirectory = workingDirectory;
return true;
}
void SvnConsole::AppendText(const wxString& text)
{
m_sci->SetReadOnly(false);
m_sci->SetSelectionEnd(m_sci->GetLength());
m_sci->SetSelectionStart(m_sci->GetLength());
m_sci->SetCurrentPos(m_sci->GetLength());
wxString noPasswordText(text);
int where = noPasswordText.Find(wxT("--password \""));
if(where != wxNOT_FOUND) {
where += wxStrlen(wxT("--password \""));
wxString password = noPasswordText.Mid(where);
password = password.BeforeFirst(wxT('"'));
noPasswordText.Replace(password, wxT("******"));
}
m_sci->AppendText(noPasswordText);
m_sci->SetSelectionEnd(m_sci->GetLength());
m_sci->SetSelectionStart(m_sci->GetLength());
m_sci->SetCurrentPos(m_sci->GetLength());
m_sci->EnsureCaretVisible();
m_sci->SetReadOnly(true);
}
void SvnConsole::Clear()
{
m_sci->SetReadOnly(false);
m_sci->ClearAll();
m_sci->SetReadOnly(true);
}
void SvnConsole::Stop()
{
if (m_process) {
delete m_process;
m_process = NULL;
}
AppendText(wxT("Aborted.\n"));
AppendText(wxT("--------\n"));
}
bool SvnConsole::IsRunning()
{
return m_process != NULL;
}
bool SvnConsole::IsEmpty()
{
return m_sci->GetText().IsEmpty();
}
void SvnConsole::EnsureVisible()
{
// Make sure that the Output View pane is visible
wxAuiPaneInfo &info = m_plugin->GetManager()->GetDockingManager()->GetPane(wxT("Output View"));
if (info.IsOk() && !info.IsShown()) {
info.Show();
m_plugin->GetManager()->GetDockingManager()->Update();
}
// Select the Subversion tab
wxBookCtrlBase *book = m_plugin->GetManager()->GetOutputPaneNotebook();
for(size_t i=0; i<book->GetPageCount(); i++) {
if(book->GetPage(i) == m_plugin->GetConsole()) {
book->SetSelection(i);
}
}
}
bool SvnConsole::DoExecute(const wxString& cmd, SvnCommandHandler* handler, const wxString &workingDirectory, bool printProcessOutput)
{
m_workingDirectory.Clear();
m_url.Clear();
m_printProcessOutput = printProcessOutput;
if (m_process) {
// another process is already running...
AppendText(svnANOTHER_PROCESS_RUNNING);
if (handler)
delete handler;
return false;
}
m_output.Clear();
m_handler = handler;
EnsureVisible();
// Print the command?
AppendText(cmd + wxT("\n"));
// Wrap the command in the OS Shell
wxString cmdShell (cmd);
// Apply the environment variables before executing the command
StringMap om;
om[wxT("LC_ALL")] = wxT("C");
bool useOverrideMap = m_plugin->GetSettings().GetFlags() & SvnUsePosixLocale;
EnvSetter env(m_plugin->GetManager()->GetEnv(), useOverrideMap ? &om : NULL);
m_process = CreateAsyncProcess(this, cmdShell, IProcessCreateDefault, workingDirectory);
if (!m_process) {
AppendText(wxT("Failed to launch Subversion client.\n"));
return false;
}
return true;
}