~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/console/media/console.js

  • Committer: Matt Giuca
  • Date: 2010-02-25 01:53:19 UTC
  • Revision ID: matt.giuca@gmail.com-20100225015319-7j0oounlhi1bj6fp
Fixed broken console, due to function called with not enough arguments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
windowpane_mode = false;
35
35
server_started = false;
36
36
 
 
37
interrupted = false;
 
38
 
 
39
 
 
40
function get_console_start_directory()
 
41
{
 
42
    if((typeof(current_path) != 'undefined') && current_file)
 
43
    {
 
44
        // We have a current_path - give a suggestion to the server
 
45
        var path;
 
46
        if (current_file.isdir)
 
47
        {
 
48
            // Browser
 
49
            return path_join("/home", current_path);
 
50
        }
 
51
        else
 
52
        {
 
53
            // Editor - need to chop off filename
 
54
            var tmp_path = current_path.split('/');
 
55
            tmp_path.pop();
 
56
            return path_join("/home", tmp_path.join('/'));
 
57
        }
 
58
    }
 
59
    else
 
60
    {
 
61
        // No current_path - let the server decide
 
62
        return '';
 
63
    }
 
64
}
 
65
 
37
66
/* Starts the console server, if it isn't already.
38
67
 * This can be called any number of times - it only starts the one server.
 
68
 * Note that this is asynchronous. It will return after signalling to start
 
69
 * the server, but there is no guarantee that it has been started yet.
39
70
 * This is a separate step from console_init, as the server is only to be
40
71
 * started once the first command is entered.
41
72
 * Does not return a value. Writes to global variables
42
73
 * server_host, and server_port.
 
74
 *
 
75
 * \param callback Function which will be called after the server has been
 
76
 * started. No parameters are passed. May be null.
43
77
 */
44
 
function start_server()
 
78
function start_server(callback)
45
79
{
46
 
    if (server_started) return;
47
 
    var xhr = ajax_call("consoleservice", "start", {}, "POST");
48
 
    var json_text = xhr.responseText;
49
 
    server_key = JSON.parse(json_text);
50
 
    server_started = true;
 
80
    if (server_started)
 
81
    {
 
82
        callback();
 
83
        return;
 
84
    }
 
85
    var callback1 = function(xhr)
 
86
        {
 
87
            var json_text = xhr.responseText;
 
88
            try
 
89
            {
 
90
                server_key = JSON.parse(json_text).key;
 
91
                server_started = true;
 
92
                if (callback != null)
 
93
                    callback();
 
94
            }
 
95
            catch (e)
 
96
            {
 
97
                alert("An error occured when starting the IVLE console. " +
 
98
                    "Please refresh the page and try again.\n" +
 
99
                    "Details have been logged for further examination.")
 
100
            }
 
101
        }
 
102
 
 
103
    ajax_call(
 
104
        callback1, "console", "service",
 
105
        {"ivle.op": "start", "cwd": get_console_start_directory()}, 
 
106
        "POST");
51
107
}
52
108
 
53
109
/** Initialises the console. All apps which import console are required to
70
126
        windowpane_mode = true;
71
127
        console_minimize();
72
128
    }
73
 
    /* TEMP: Start the server now.
74
 
     * Ultimately we want the server to start only when a line is typed, but
75
 
     * it currently does it asynchronously and doesn't start in time for the
76
 
     * first line. */
77
 
    start_server();
78
129
}
79
130
 
80
131
/** Hide the main console panel, so the console minimizes to just an input box
82
133
function console_minimize()
83
134
{
84
135
    if (!windowpane_mode) return;
85
 
    console_body.setAttribute("class", "windowpane minimal");
 
136
    console_body.setAttribute("class", "console_body windowpane minimal");
86
137
    console_filler.setAttribute("class", "windowpane minimal");
87
138
}
88
139
 
91
142
function console_maximize()
92
143
{
93
144
    if (!windowpane_mode) return;
94
 
    console_body.setAttribute("class", "windowpane maximal");
 
145
    console_body.setAttribute("class", "console_body windowpane maximal");
95
146
    console_filler.setAttribute("class", "windowpane maximal");
96
 
    /* Focus the input box by default */
97
 
    document.getElementById("console_inputText").focus()
98
147
}
99
148
 
100
149
/* current_text is the string currently on the command line.
197
246
 
198
247
var hist = new History();
199
248
 
 
249
function set_interrupt()
 
250
{
 
251
    interrupted = true;
 
252
}
 
253
 
 
254
function clear_output()
 
255
{
 
256
    var output = document.getElementById("console_output");
 
257
    while (output.firstChild)
 
258
    {
 
259
        output.removeChild(output.firstChild);
 
260
    }
 
261
}
 
262
 
200
263
/** Send a line of text to the Python server, wait for its return, and react
201
264
 * to its response by writing to the output box.
202
265
 * Also maximize the console window if not already.
203
266
 */
204
 
function console_enter_line(inputline, which)
205
 
{
206
 
    /* Start the server if it hasn't already been started */
207
 
    start_server();
208
 
    var args = {"key": server_key, "text":inputline};
209
 
    var xmlhttp = ajax_call("consoleservice", which, args, "POST");
210
 
 
211
 
    var res = JSON.parse(xmlhttp.responseText);
212
 
    var output = document.getElementById("console_output");
213
 
    {
214
 
        var pre = document.createElement("pre");
215
 
        pre.setAttribute("class", "inputMsg");
216
 
        pre.appendChild(document.createTextNode(inputline + "\n"));
217
 
        output.appendChild(pre);
218
 
    }
 
267
function console_enter_line(inputbox, which)
 
268
{
 
269
    interrupted = false;
 
270
 
 
271
    if (typeof(inputbox) == "string")
 
272
    {
 
273
        var inputline = inputbox + "\n";
 
274
        inputbox = null;
 
275
    }
 
276
    else
 
277
    {
 
278
        /* Disable the text box */
 
279
        inputbox.setAttribute("disabled", "disabled");
 
280
 
 
281
        var inputline = inputbox.value + "\n";
 
282
    }
 
283
    var output = document.getElementById("console_output");
 
284
    {
 
285
        // Print ">>>" span
 
286
        var span = document.createElement("span");
 
287
        span.setAttribute("class", "inputPrompt");
 
288
        span.appendChild(document.createTextNode(
 
289
              document.getElementById("console_prompt").firstChild.nodeValue)
 
290
                        );
 
291
        output.appendChild(span);
 
292
        // Print input line itself in a span
 
293
        var span = document.createElement("span");
 
294
        span.setAttribute("class", "inputMsg");
 
295
        span.appendChild(document.createTextNode(inputline));
 
296
        output.appendChild(span);
 
297
    }
 
298
    var args = {
 
299
        "ivle.op": "chat", "kind": which, "key": server_key,
 
300
        "text": inputline, "cwd": get_console_start_directory()
 
301
        };
 
302
    var callback = function(xhr)
 
303
        {
 
304
            console_response(inputbox, inputline, xhr.responseText);
 
305
        }
 
306
    ajax_call(callback, "console", "service", args, "POST");
 
307
}
 
308
 
 
309
function console_response(inputbox, inputline, responseText)
 
310
{
 
311
    try
 
312
    {
 
313
        var res = JSON.parse(responseText);
 
314
    }
 
315
    catch (e)
 
316
    {
 
317
        alert("An internal error occurred in the python console.");
 
318
        return;
 
319
    }
 
320
    var output = document.getElementById("console_output");
219
321
    if (res.hasOwnProperty('okay'))
220
322
    {
221
323
        // Success!
222
 
        // print out the output (res.okay[0])
223
 
        var pre = document.createElement("pre");
224
 
        pre.setAttribute("class", "outputMsg");
225
 
        pre.appendChild(document.createTextNode(res.okay[0]));
226
 
        output.appendChild(pre);
227
 
        // print out the return value (res.okay[1])
228
 
        if (res.okay[1])
 
324
        if (res.okay)
229
325
        {
230
 
            var pre = document.createElement("pre");
231
 
            pre.setAttribute("class", "outputMsg");
232
 
            pre.appendChild(document.createTextNode(res.okay[1] + "\n"));
233
 
            output.appendChild(pre);
 
326
            output.appendChild(document.createTextNode(res.okay + "\n"));
 
327
            output.appendChild(span);
234
328
        }
235
329
        // set the prompt to >>>
236
 
        var prompt = document.getElementById("console_prompt");
237
 
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
 
330
        set_prompt(">>>");
238
331
    }
239
332
    else if (res.hasOwnProperty('exc'))
240
333
    {
241
334
        // Failure!
242
 
        // print out any output that came before the error
243
 
        if (res.exc[0].length > 0)
244
 
        {
245
 
            var pre = document.createElement("pre");
246
 
            pre.setAttribute("class", "outputMsg");
247
 
            pre.appendChild(document.createTextNode(res.exc[0]));
248
 
            output.appendChild(pre);
249
 
        }
250
 
 
251
335
        // print out the error message (res.exc)
252
 
        var pre = document.createElement("pre");
253
 
        pre.setAttribute("class", "errorMsg");
254
 
        pre.appendChild(document.createTextNode(res.exc[1]));
255
 
        output.appendChild(pre);
 
336
        print_error(res.exc);
 
337
        
 
338
        // set the prompt to >>>
 
339
        set_prompt(">>>");
 
340
    }
 
341
    else if (res.hasOwnProperty('restart') && res.hasOwnProperty('key'))
 
342
    {
 
343
        // Server has indicated that the console should be restarted
 
344
        
 
345
        // Get the new key (host, port, magic)
 
346
        server_key = res.key;
 
347
 
 
348
        // Print a reason to explain why we'd do such a horrible thing
 
349
        // (console timeout, server error etc.)
 
350
        print_error("Console Restart: " + res.restart);
 
351
        
 
352
        // set the prompt to >>>
 
353
        set_prompt(">>>");
256
354
    }
257
355
    else if (res.hasOwnProperty('more'))
258
356
    {
259
357
        // Need more input, so set the prompt to ...
260
 
        var prompt = document.getElementById("console_prompt");
261
 
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
262
 
    }
263
 
    else {
264
 
        // assert res.hasOwnProperty('input')
265
 
        var prompt = document.getElementById("console_prompt");
266
 
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
267
 
    }
 
358
        set_prompt("...");
 
359
    }
 
360
    else if (res.hasOwnProperty('output'))
 
361
    {
 
362
        if (res.output.length > 0)
 
363
        {
 
364
            output.appendChild(document.createTextNode(res.output));
 
365
        }
 
366
        var callback = function(xhr)
 
367
            {
 
368
                console_response(inputbox, null, xhr.responseText);
 
369
            }
 
370
        if (interrupted)
 
371
        {
 
372
            var kind = "interrupt";
 
373
        }
 
374
        else
 
375
        {
 
376
            var kind = "chat";
 
377
        }
 
378
        var args = {
 
379
            "ivle.op": "chat", "kind": kind, "key": server_key,
 
380
            "text": '', "cwd": get_console_start_directory()
 
381
            };
 
382
        ajax_call(callback, "console", "service", args, "POST");
 
383
 
 
384
        // Open up the console so we can see the output
 
385
        // FIXME: do we need to maximize here?
 
386
        console_maximize();
 
387
 
 
388
        /* Auto-scrolling */
 
389
        divScroll.activeScroll();
 
390
 
 
391
        // Return early, so we don't re-enable the input box.
 
392
        return;
 
393
    }
 
394
    else if (res.hasOwnProperty('input'))
 
395
    {
 
396
        set_prompt("+++");
 
397
    }
 
398
    else
 
399
    {
 
400
        alert("An internal error occurred in the python console.");
 
401
        return;
 
402
    }
 
403
 
 
404
    if (inputbox != null)
 
405
    {
 
406
        /* Re-enable the text box */
 
407
        inputbox.removeAttribute("disabled");
 
408
        interrupted = false;
 
409
    }
 
410
 
268
411
    /* Open up the console so we can see the output */
269
412
    console_maximize();
 
413
    /* Auto-scrolling */
 
414
    divScroll.activeScroll();
 
415
 
 
416
    // Focus the input box by default
 
417
    document.getElementById("console_output").focus();
 
418
    document.getElementById("console_inputText").focus();
270
419
}
271
420
 
272
421
function catch_input(key)
304
453
         */
305
454
        break;
306
455
    case 13:                /* Enter key */
307
 
        /* Send the line of text to the server */
308
 
        console_enter_line(inp.value, "chat");
309
 
        hist.submit(inp.value);
310
 
        inp.value = hist.curr();
 
456
        var callback = function()
 
457
        {
 
458
            /* Send the line of text to the server */
 
459
            console_enter_line(inp, "chat");
 
460
            hist.submit(inp.value);
 
461
            inp.value = hist.curr();
 
462
        }
 
463
 
 
464
        /* Disable the text box. This will be redone by
 
465
         * console_enter_line, but we do it here too in case start_server
 
466
         * takes a while.
 
467
         */
 
468
        inp.setAttribute("disabled", "disabled");
 
469
        /* Start the server if it hasn't already been started */
 
470
        start_server(callback);
311
471
        break;
312
472
    case 38:                /* Up arrow */
313
473
        hist.up(inp.value);
314
474
        inp.value = hist.curr();
 
475
        /* Inhibit further responses to this event, or WebKit moves the
 
476
         * cursor to the start. */
 
477
        return false;
315
478
        break;
316
479
    case 40:                /* Down arrow */
317
480
        hist.down(inp.value);
318
481
        inp.value = hist.curr();
 
482
        return false;
319
483
        break;
320
484
    }
321
485
}
 
486
 
 
487
/** Resets the console by signalling the old console to expire and starting a 
 
488
 * new one.
 
489
 */
 
490
function console_reset()
 
491
{
 
492
    // FIXME: We show some feedback here - either disable input or at very 
 
493
    // least the reset button.
 
494
 
 
495
    // Restart the console
 
496
    if(!server_started)
 
497
    {
 
498
        start_server(null);
 
499
    }
 
500
    else
 
501
    {
 
502
        xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
 
503
        console_response(null, null, xhr.responseText);
 
504
    }
 
505
}
 
506
 
 
507
/** Prints an error line in the console **/
 
508
function print_error(error)
 
509
 
510
    var output = document.getElementById("console_output");
 
511
  
 
512
    // Create text block
 
513
    var span = document.createElement("span");
 
514
    span.setAttribute("class", "errorMsg");
 
515
    span.appendChild(document.createTextNode(error + "\n"));
 
516
    output.appendChild(span);
 
517
 
 
518
    // Autoscroll
 
519
    divScroll.activeScroll();
 
520
}
 
521
 
 
522
/** Sets the prompt text **/
 
523
function set_prompt(prompt_text)
 
524
{
 
525
    var prompt = document.getElementById("console_prompt");
 
526
    prompt.replaceChild(document.createTextNode(prompt_text + " "), prompt.firstChild);
 
527
}
 
528
 
 
529
/**** Following Code modified from ******************************************/
 
530
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
 
531
/****************************************************************************/
 
532
var chatscroll = new Object();
 
533
 
 
534
chatscroll.Pane = function(scrollContainerId)
 
535
{
 
536
    this.scrollContainerId = scrollContainerId;
 
537
}
 
538
 
 
539
chatscroll.Pane.prototype.activeScroll = function()
 
540
{
 
541
    var scrollDiv = document.getElementById(this.scrollContainerId);
 
542
    var currentHeight = 0;
 
543
        
 
544
    if (scrollDiv.scrollHeight > 0)
 
545
        currentHeight = scrollDiv.scrollHeight;
 
546
    else if (scrollDiv.offsetHeight > 0)
 
547
        currentHeight = scrollDiv.offsetHeight;
 
548
 
 
549
    scrollDiv.scrollTop = currentHeight;
 
550
 
 
551
    scrollDiv = null;
 
552
}
 
553
 
 
554
var divScroll = new chatscroll.Pane('console_output');