-
Notifications
You must be signed in to change notification settings - Fork 0
/
magellan.js
290 lines (265 loc) · 8.37 KB
/
magellan.js
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
define(function(require, exports, module) {
main.consumes = ["Plugin", "net", "menus", "ui", "commands", "terminal", "Dialog", "c9", "dialog.file", "proc", "util", "fs", "console", "Form", "tabManager"];
main.provides = ["magellan"];
return main;
function main(options, imports, register) {
var Plugin = imports.Plugin;
var c9 = imports.c9;
var menus = imports.menus;
var ui = imports.ui;
var commands = imports.commands;
var fileDialog = imports["dialog.file"];
var Dialog = imports.Dialog;
var Form = imports.Form;
var proc = imports.proc;
var tabManager = imports.tabManager;
var join = require("path").join;
var basename = require("path").basename;
var dirname = require("path").dirname;
var relative = require("path").relative;
var buildform, dataflowform;
/***** Initialization *****/
var plugin = new Plugin("snlab.org", main.consumes);
var emit = plugin.getEmitter();
var buildSelector = new Dialog("snlab.org", main.consumes, {
name: "magellan-build-selector",
allowClose: true,
modal: true,
title: "Example Builder"
});
var generateDataFlow = new Dialog("snlab.org", main.consumes, {
name: "magellan-generate-dataflow",
allowClose: true,
modal: true,
title: "Generate Data Flow"
});
function addMenuItems() {
menus.addItemByPath("Tools/Magellan", null, 500, plugin);
menus.addItemByPath("Tools/Magellan/Build", new ui.item({
command: "magellan_build_example"
}), 520, plugin);
menus.addItemByPath("Tools/Magellan/Generate Data Flow Graph", new ui.item({
command: "magellan_generate_dataflow"
}), 530, plugin);
}
function addNewCommand() {
commands.addCommands([
{
name: "magellan_build_example",
group: "Magellan",
exec: magellanBuild
},
{
name: "magellan_generate_dataflow",
group: "Magellan",
exec: magellanGenerate
}
], plugin);
}
function load() {
// Add Test Item
addMenuItems();
// Add Test Command
addNewCommand();
}
/***** Methods *****/
function magellanBuild() {
buildSelector.show();
}
function magellanGenerate() {
generateDataFlow.show();
}
/***** Lifecycle *****/
buildSelector.on("draw", function(e) {
buildform = new Form({
rowHeight: 30,
colwidth: 100,
edge: "0 0 0 0",
form: [
{
title: "Source Path",
name: "sourcepath",
message: "Input source path for compiling",
realtime: true,
type: "textbox"
},
{
type: "button",
title: "",
caption: "Select",
onclick: function() {
fileDialog.show("Select Jave Source Path", "", function(path, stat, done) {
done();
buildform.getElement("sourcepath").childNodes[1].setAttribute("value", path);
}, {}, {
chooseCaption: "Select",
hideFileInput: true
});
}
},
{
title: "Source File",
name: "sourcefile",
message: "Input source file for compiling",
realtime: true,
type: "textbox"
},
{
type: "button",
title: "",
caption: "Select",
onclick: function() {
fileDialog.show("Select Jave Source File", "", function(path, stat, done) {
buildform.getElement("sourcefile").childNodes[1].setAttribute("value", path);
done();
}, {}, {
createFolderButton: false,
showFilesCheckbox: true,
hideFileInput: false,
chooseCaption: "Select"
});
}
},
{
type: "submit",
caption: "Build",
margin: "10 20 5 20",
width: 140,
"default": true,
onclick: function() {
var args = buildform.toJson();
proc.execFile("javac", {
args: ["-sourcepath", join(c9.workspaceDir, args.sourcepath),
"-d", join(c9.workspaceDir, args.sourcepath, "../classes"), join(c9.workspaceDir, args.sourcefile)],
cwd: c9.workspaceDir
}, function(err, stdout, stderr) {
if (err) throw err;
});
buildSelector.hide();
}
}
]
});
buildform.attachTo(e.html);
});
buildSelector.on("show", function() {
buildform.reset();
});
generateDataFlow.on("draw", function(e) {
dataflowform = new Form({
rowHeight: 30,
colwidth: 100,
edge: "0 0 0 0",
form: [
{
title: "Class Path",
name: "classpath",
message: "Class path of input class",
realtime: true,
type: "textbox"
},
{
type: "button",
title: "",
caption: "Select",
onclick: function() {
fileDialog.show("Select Jave Class Path", "", function(path, stat, done) {
done();
dataflowform.getElement("classpath").childNodes[1].setAttribute("value", path);
}, {}, {
chooseCaption: "Select",
hideFileInput: true
});
}
},
{
title: "Class File",
name: "classfile",
message: "Input class file for dataflow generation",
realtime: true,
type: "textbox"
},
{
type: "button",
title: "",
caption: "Select",
onclick: function() {
fileDialog.show("Select Jave Class File", "", function(path, stat, done) {
dataflowform.getElement("classfile").childNodes[1].setAttribute("value", path);
done();
}, {}, {
createFolderButton: false,
showFilesCheckbox: true,
hideFileInput: false,
chooseCaption: "Select"
});
}
},
{
title: "Stage Number",
name: "stagenum",
min: "1",
realtime: true,
type: "spinner"
},
{
type: "submit",
caption: "Build",
margin: "10 20 5 20",
width: 140,
"default": true,
onclick: function() {
var args = dataflowform.toJson();
var clazz = relative(args.classpath, args.classfile).replace(/\//g, ".");
proc.execFile("java", {
args: [
"-jar", join(c9.home, "lib", "magellan-dataflow.jar"),
"org.snlab.magellan.dataflow.SimulateStack",
join(c9.workspaceDir, args.classfile),
join(c9.workspaceDir, args.classfile),
args.stagenum
]
}, function(err, stdout, stderr) {
if (err) throw err;
proc.execFile("java", {
args: [clazz.slice(0, clazz.lastIndexOf('.class'))],
cwd: join(c9.workspaceDir, args.classpath)
}, function(err, stdout, stderr) {
if (err) throw err;
tabManager.open({
path: "DataFlowResult",
value: stdout,
active: true,
document: {
meta: {
newfile: true
}
}
}, function (err, tab) {
if (err) throw err;
tab.document.value = stdout;
});
});
});
generateDataFlow.hide();
}
}
]
});
dataflowform.attachTo(e.html);
});
generateDataFlow.on("show", function() {
dataflowform.reset();
});
plugin.on("load", function() {
load();
});
plugin.on("unload", function() {
// Nothing to do
});
/***** Register and define API *****/
register(null, {
magellan: plugin
});
}
});