forked from eranif/codelite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexternaltools.cpp
292 lines (253 loc) · 10.3 KB
/
externaltools.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
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2008 by Eran Ifrah
// file name : externaltools.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 "externaltools.h"
#include "ExternalToolsManager.h"
#include "ExternalToolsProcessManager.h"
#include "async_executable_cmd.h"
#include "clKeyboardManager.h"
#include "clToolBarButton.h"
#include "cl_aui_tb_are.h"
#include "codelite_events.h"
#include "dirsaver.h"
#include "environmentconfig.h"
#include "event_notifier.h"
#include "externaltooldlg.h"
#include "file_logger.h"
#include "globals.h"
#include "macromanager.h"
#include "plugin_version.h"
#include "processreaderthread.h"
#include "workspace.h"
#include <algorithm>
#include <wx/app.h>
#include <wx/aui/framemanager.h>
#include <wx/bitmap.h>
#include <wx/log.h>
#include <wx/menu.h>
#include <wx/msgdlg.h>
#include <wx/xrc/xmlres.h>
static ExternalToolsPlugin* thePlugin = NULL;
struct DecSort {
bool operator()(const ToolInfo& t1, const ToolInfo& t2) { return t1.GetName().CmpNoCase(t2.GetName()) < 0; }
};
// Define the plugin entry point
CL_PLUGIN_API IPlugin* CreatePlugin(IManager* manager)
{
if(thePlugin == 0) {
thePlugin = new ExternalToolsPlugin(manager);
}
return thePlugin;
}
CL_PLUGIN_API PluginInfo* GetPluginInfo()
{
static PluginInfo info;
info.SetAuthor("Eran Ifrah");
info.SetName("ExternalTools");
info.SetDescription(_("A plugin that allows user to launch external tools from within CodeLite"));
info.SetVersion("v1.0");
return &info;
}
CL_PLUGIN_API int GetPluginInterfaceVersion() { return PLUGIN_INTERFACE_VERSION; }
ExternalToolsPlugin::ExternalToolsPlugin(IManager* manager)
: IPlugin(manager)
, topWin(NULL)
, m_parentMenu(NULL)
{
ToolsTaskManager::Instance(); // Ensure that we allocate the process manager
m_longName = _("A plugin that allows user to launch external tools from within CodeLite");
m_shortName = "ExternalTools";
topWin = m_mgr->GetTheApp();
topWin->Bind(wxEVT_MENU, &ExternalToolsPlugin::OnSettings, this, XRCID("external_tools_settings"));
topWin->Bind(wxEVT_MENU, &ExternalToolsPlugin::OnShowRunningTools, this, XRCID("external_tools_monitor"));
for(int i = 0; i < MAX_TOOLS; i++) {
wxString winid = wxString::Format("external_tool_%d", i);
topWin->Connect(wxXmlResource::GetXRCID(winid.c_str()), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(ExternalToolsPlugin::OnLaunchExternalTool), NULL, this);
}
// Register keyboard shortcuts
for(int i = 0; i < MAX_TOOLS; i++) {
clKeyboardShortcut accel;
if(i <= 9) {
accel.FromString(wxString::Format("Ctrl-Shift-%d", i));
}
clKeyboardManager::Get()->AddAccelerator(wxString::Format("external_tool_%d", i), _("External Tools"),
wxString::Format(_("External Tool %d"), i), accel);
}
// Bind the "OnFileSave" event
EventNotifier::Get()->Bind(wxEVT_FILE_SAVED, &ExternalToolsPlugin::OnFileSave, this);
// Load the tools from the configuraton file
m_mgr->GetConfigTool()->ReadObject("ExternalTools", &m_externalTools);
}
ExternalToolsPlugin::~ExternalToolsPlugin() {}
void ExternalToolsPlugin::CreateToolBar(clToolBarGeneric* toolbar)
{
// support both toolbars icon size
auto images = toolbar->GetBitmapsCreateIfNeeded();
toolbar->AddSpacer();
toolbar->AddButton(XRCID("external_tools_settings"), images->Add("tools"), _("Configure external tools..."));
toolbar->AddButton(XRCID("external_tools_monitor"), images->Add("monitor"), _("Show Running Tools..."));
DoRecreateToolbar();
}
void ExternalToolsPlugin::CreatePluginMenu(wxMenu* pluginsMenu)
{
m_parentMenu = pluginsMenu;
DoCreatePluginMenu();
}
void ExternalToolsPlugin::HookPopupMenu(wxMenu* menu, MenuType type)
{
wxUnusedVar(menu);
wxUnusedVar(type);
}
void ExternalToolsPlugin::UnPlug()
{
EventNotifier::Get()->Unbind(wxEVT_FILE_SAVED, &ExternalToolsPlugin::OnFileSave, this);
topWin->Unbind(wxEVT_MENU, &ExternalToolsPlugin::OnSettings, this, XRCID("external_tools_settings"));
topWin->Unbind(wxEVT_MENU, &ExternalToolsPlugin::OnShowRunningTools, this, XRCID("external_tools_monitor"));
for(int i = 0; i < MAX_TOOLS; ++i) {
wxString winid = wxString::Format("external_tool_%d", i);
topWin->Disconnect(wxXmlResource::GetXRCID(winid.c_str()), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(ExternalToolsPlugin::OnLaunchExternalTool), NULL, this);
}
// now that all the event handlers have been disconneted, kill all the running tools
ToolsTaskManager::Release();
}
void ExternalToolsPlugin::OnSettings(wxCommandEvent& e)
{
ExternalToolDlg dlg(m_mgr->GetTheApp()->GetTopWindow(), m_mgr);
dlg.SetTools(m_externalTools.GetTools());
if(dlg.ShowModal() == wxID_OK) {
// Update the cache
m_externalTools.SetTools(dlg.GetTools());
// and the file system as well
m_mgr->GetConfigTool()->WriteObject("ExternalTools", &m_externalTools);
CallAfter(&ExternalToolsPlugin::OnRecreateTB);
}
}
void ExternalToolsPlugin::OnRecreateTB()
{
DoRecreateToolbar();
DoCreatePluginMenu();
}
void ExternalToolsPlugin::OnLaunchExternalTool(wxCommandEvent& e)
{
for(size_t i = 0; i < m_externalTools.GetTools().size(); i++) {
const ToolInfo& ti = m_externalTools.GetTools()[i];
if(wxXmlResource::GetXRCID(ti.GetId().c_str()) == e.GetId()) {
ToolsTaskManager::Instance()->StartTool(ti);
}
}
}
void ExternalToolsPlugin::DoRecreateToolbar()
{
int size = m_mgr->GetToolbarIconSize();
std::vector<ToolInfo> tools = m_externalTools.GetTools();
std::sort(tools.begin(), tools.end(), DecSort());
auto toolbar = clGetManager()->GetToolBar();
auto images = toolbar->GetBitmapsCreateIfNeeded();
size_t cogIndex = images->Add("cog");
// Remove the old tools
for(size_t i = 0; i < 10; ++i) {
wxString xrcid;
xrcid << "external_tool_" << i;
toolbar->DeleteById(wxXmlResource::GetXRCID(xrcid));
}
// Add the tools
int where = XRCID("external_tools_monitor");
for(size_t i = 0; i < tools.size(); i++) {
const ToolInfo& ti = tools[i];
wxFileName icon24(ti.GetIcon24());
wxFileName icon16(ti.GetIcon16());
size_t bmp_index = cogIndex;
if(size == 24) {
if(icon24.FileExists()) {
wxBitmap bmp;
bmp.LoadFile(icon24.GetFullPath(), wxBITMAP_TYPE_PNG);
if(bmp.IsOk()) {
bmp_index = images->Add(bmp, icon24.GetFullPath());
}
}
} else {
if(icon16.FileExists()) {
wxBitmap bmp;
bmp.LoadFile(icon16.GetFullPath(), wxBITMAP_TYPE_PNG);
if(bmp.IsOk()) {
bmp_index = images->Add(bmp, icon16.GetFullPath());
}
}
}
toolbar->AddTool(wxXmlResource::GetXRCID(ti.GetId()), ti.GetName(), bmp_index);
}
toolbar->Realize();
}
void ExternalToolsPlugin::DoCreatePluginMenu()
{
const int MENU_ID = 28374;
if(m_parentMenu) {
// destroy the old menu entries
if(m_parentMenu->FindItem(MENU_ID)) {
m_parentMenu->Destroy(MENU_ID);
}
wxMenu* menu = new wxMenu();
wxMenuItem* item(NULL);
item = new wxMenuItem(menu, XRCID("external_tools_settings"), _("Configure external tools..."), wxEmptyString,
wxITEM_NORMAL);
menu->Append(item);
item = new wxMenuItem(menu, XRCID("external_tools_monitor"), _("Show Running Tools..."), wxEmptyString,
wxITEM_NORMAL);
menu->Append(item);
menu->AppendSeparator();
// Loop and append the tools already defined
std::vector<ToolInfo> tools = m_externalTools.GetTools();
std::sort(tools.begin(), tools.end(), DecSort());
for(size_t i = 0; i < tools.size(); i++) {
ToolInfo ti = tools.at(i);
item = new wxMenuItem(menu, wxXmlResource::GetXRCID(ti.GetId().c_str()), ti.GetName(), wxEmptyString,
wxITEM_NORMAL);
menu->Append(item);
}
m_parentMenu->Append(MENU_ID, _("External Tools"), menu);
}
}
void ExternalToolsPlugin::OnShowRunningTools(wxCommandEvent& e)
{
wxUnusedVar(e);
ExternalToolsManager dlg(EventNotifier::Get()->TopFrame());
dlg.ShowModal();
}
void ExternalToolsPlugin::OnFileSave(clCommandEvent& event)
{
event.Skip(); // always skip
// Get list of tools that should be triggered when a file is being saved
const std::vector<ToolInfo>& tools = m_externalTools.GetTools();
for(const ToolInfo& tool : tools) {
if(tool.IsCallOnFileSave()) {
// Run this tool
ToolInfo ti = tool;
wxString filename = event.GetFileName();
::WrapWithQuotes(filename);
ToolsTaskManager::Instance()->StartTool(ti, filename);
}
}
}