forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvn_console.cpp
278 lines (237 loc) · 8.85 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
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 The CodeLite Team
// file name : svn_console.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 <wx/app.h>
#include "environmentconfig.h"
#include "editor_config.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 "globals.h"
#include "processreaderthread.h"
#include "subversion2.h"
#include "lexer_configuration.h"
#include "notebook_ex.h"
#include "event_notifier.h"
#include <wx/regex.h>
#include <wx/settings.h>
//-------------------------------------------------------------
SvnConsole::SvnConsole(wxStyledTextCtrl* stc, Subversion2* plugin)
: m_sci(stc)
, m_process(NULL)
, m_plugin(plugin)
, m_inferiorEnd(0)
{
m_sci->SetLexer(wxSTC_LEX_NULL);
m_sci->StyleClearAll();
m_sci->SetUndoCollection(false); // dont allow undo/redo
DoInitializeFontsAndColours();
EventNotifier::Get()->Connect(
wxEVT_CL_THEME_CHANGED, wxCommandEventHandler(SvnConsole::OnThemeChanged), NULL, this);
Bind(wxEVT_ASYNC_PROCESS_OUTPUT, &SvnConsole::OnReadProcessOutput, this);
Bind(wxEVT_ASYNC_PROCESS_TERMINATED, &SvnConsole::OnProcessEnd, this);
}
SvnConsole::~SvnConsole()
{
EventNotifier::Get()->Disconnect(
wxEVT_CL_THEME_CHANGED, wxCommandEventHandler(SvnConsole::OnThemeChanged), NULL, this);
}
void SvnConsole::OnReadProcessOutput(clProcessEvent& event)
{
m_output.Append(event.GetOutput());
wxString s = event.GetOutput().Lower();
if(m_currCmd.printProcessOutput) AppendText(event.GetOutput());
static wxRegEx reUsername("username[ \t]*:", wxRE_DEFAULT | wxRE_ICASE);
wxArrayString lines = wxStringTokenize(s, wxT("\n"), wxTOKEN_STRTOK);
if(!lines.IsEmpty() && lines.Last().StartsWith(wxT("password for '"))) {
m_output.Clear();
wxString pass = wxGetPasswordFromUser(event.GetOutput(), wxT("Subversion"));
if(!pass.IsEmpty() && m_process) {
m_process->WriteToConsole(pass);
}
} else if(!lines.IsEmpty() && reUsername.IsValid() && reUsername.Matches(lines.Last())) {
// Prompt the user for "Username:"
wxString username = ::wxGetTextFromUser(event.GetOutput(), "Subversion");
if(!username.IsEmpty() && m_process) {
m_process->Write(username + "\n");
}
}
}
void SvnConsole::OnProcessEnd(clProcessEvent& event)
{
wxDELETE(m_process);
if(m_currCmd.handler) {
// command ended successfully, invoke the "success" callback
m_currCmd.handler->Process(m_output);
AppendText(wxT("-----\n"));
delete m_currCmd.handler;
}
// do we have more commands to process?
if(!m_queue.empty()) {
DoProcessNextCommand();
} else {
// Do some cleanup
m_output.Clear();
m_url.Clear();
m_currCmd.clean();
}
}
void
SvnConsole::ExecuteURL(const wxString& cmd, const wxString& url, SvnCommandHandler* handler, bool printProcessOutput)
{
DoExecute(cmd, handler, wxT(""), printProcessOutput);
m_url = url;
}
void SvnConsole::Execute(const wxString& cmd,
const wxString& workingDirectory,
SvnCommandHandler* handler,
bool printProcessOutput,
bool showConsole)
{
DoExecute(cmd, handler, workingDirectory, printProcessOutput, showConsole);
}
void SvnConsole::AppendText(const wxString& text)
{
// Make sure that the carete is at the end
m_sci->SetSelectionEnd(m_sci->GetLength());
m_sci->SetSelectionStart(m_sci->GetLength());
m_sci->SetCurrentPos(m_sci->GetLength());
// Append the text
m_sci->AppendText(text);
m_sci->SetSelectionEnd(m_sci->GetLength());
m_sci->SetSelectionStart(m_sci->GetLength());
m_sci->SetCurrentPos(m_sci->GetLength());
m_sci->EnsureCaretVisible();
m_inferiorEnd = m_sci->GetLength();
}
void SvnConsole::Clear()
{
m_sci->ClearAll();
m_inferiorEnd = 0;
DoInitializeFontsAndColours();
}
void SvnConsole::Stop()
{
if(m_process) {
delete m_process;
m_process = NULL;
}
AppendText(_("Aborted.\n"));
AppendText(wxT("--------\n"));
}
bool SvnConsole::IsRunning() { return m_process != NULL; }
bool SvnConsole::IsEmpty() { return m_sci->GetText().IsEmpty(); }
void SvnConsole::EnsureVisible() { m_plugin->EnsureVisible(); }
void SvnConsole::DoProcessNextCommand()
{
// If another process is running, we try again when the process is termianted
if(m_process) {
return;
}
if(m_queue.empty()) return;
// Remove the command from the queue
SvnConsoleCommand* command = m_queue.front();
m_queue.pop_front();
m_output.Clear();
m_currCmd.clean();
m_currCmd = *command;
// Delete it
wxDELETE(command);
EnsureVisible();
// Print the command?
AppendText("[" + m_currCmd.workingDirectory + "] " + m_currCmd.cmd + wxT("\n"));
// Wrap the command in the OS Shell
wxString cmdShell(m_currCmd.cmd);
// Apply the environment variables before executing the command
wxStringMap_t om;
om.insert(std::make_pair("LC_ALL", "C"));
bool useOverrideMap = m_plugin->GetSettings().GetFlags() & SvnUsePosixLocale;
EnvSetter env(m_plugin->GetManager()->GetEnv(), useOverrideMap ? &om : NULL);
m_process = CreateAsyncProcess(this,
cmdShell,
m_currCmd.showConsole ? IProcessCreateConsole : IProcessCreateWithHiddenConsole,
m_currCmd.workingDirectory);
if(!m_process) {
AppendText(_("Failed to launch Subversion client.\n"));
return;
}
m_sci->SetFocus();
}
void SvnConsole::DoExecute(const wxString& cmd,
SvnCommandHandler* handler,
const wxString& workingDirectory,
bool printProcessOutput,
bool showConsole)
{
SvnConsoleCommand* consoleCommand = new SvnConsoleCommand();
consoleCommand->cmd = cmd.c_str();
consoleCommand->handler = handler;
consoleCommand->printProcessOutput = printProcessOutput;
consoleCommand->workingDirectory = workingDirectory.c_str();
consoleCommand->showConsole = showConsole;
m_queue.push_back(consoleCommand);
DoProcessNextCommand();
}
void SvnConsole::OnCharAdded(wxStyledTextEvent& event)
{
if(event.GetKey() == '\n') {
// an enter was inserted
// take the last inserted line and send it to the m_process
wxString line = m_sci->GetTextRange(m_inferiorEnd, m_sci->GetLength());
line.Trim();
if(m_process) {
m_process->Write(line);
}
}
event.Skip();
}
void SvnConsole::OnUpdateUI(wxStyledTextEvent& event)
{
// if(m_sci->GetCurrentPos() < m_inferiorEnd) {
// m_sci->SetCurrentPos(m_inferiorEnd);
// m_sci->SetSelectionStart(m_inferiorEnd);
// m_sci->SetSelectionEnd(m_inferiorEnd);
// m_sci->EnsureCaretVisible();
//}
event.Skip();
}
void SvnConsole::OnKeyDown(wxKeyEvent& event) { event.Skip(); }
void SvnConsole::DoInitializeFontsAndColours()
{
for(int i = 0; i <= wxSTC_STYLE_DEFAULT; i++) {
wxFont defFont = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
defFont.SetFamily(wxFONTFAMILY_TELETYPE);
m_sci->StyleSetBackground(i, DrawingUtils::GetOutputPaneBgColour());
m_sci->StyleSetForeground(i, DrawingUtils::GetOutputPaneFgColour());
m_sci->StyleSetFont(i, defFont);
}
}
void SvnConsole::OnThemeChanged(wxCommandEvent& e)
{
e.Skip();
DoInitializeFontsAndColours();
}