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

« back to all changes in this revision

Viewing changes to www/media/console/console.js

  • Committer: stevenbird
  • Date: 2008-02-04 04:22:44 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:400
first commit of homepage at ivle.sourceforge.net, including screenshots; just web-presence at this stage

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * Date: 30/1/2008
21
21
 */
22
22
 
23
 
var server_key;
 
23
digest_constant = "hello";
 
24
 
 
25
var server_host;
 
26
var server_port;
 
27
var server_magic;
24
28
 
25
29
/* Begin religious debate (tabs vs spaces) here: */
26
30
/* (This string will be inserted in the console when the user presses the Tab
34
38
windowpane_mode = false;
35
39
server_started = false;
36
40
 
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
 
 
66
41
/* Starts the console server, if it isn't already.
67
42
 * 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.
70
43
 * This is a separate step from console_init, as the server is only to be
71
44
 * started once the first command is entered.
72
45
 * Does not return a value. Writes to global variables
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.
77
 
 */
78
 
function start_server(callback)
79
 
{
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
 
                var args = {
93
 
                    "ivle.op": "chat", "kind": "splash", "key": server_key
94
 
                };
95
 
                var callback2 = function(xhr)
96
 
                {
97
 
                    console_response(null, null, xhr.responseText);
98
 
                    if (callback != null)
99
 
                        callback();
100
 
                };
101
 
                ajax_call(callback2, "console", "service", args, "POST");
102
 
            }
103
 
            catch (e)
104
 
            {
105
 
                alert("An error occured when starting the IVLE console. " +
106
 
                    "Please refresh the page and try again.\n" +
107
 
                    "Details have been logged for further examination.")
108
 
            }
109
 
        }
110
 
 
111
 
    $("#console_output").append(
112
 
        '<span class="console_message">IVLE console starting up...</span>\n');
113
 
    console_maximize(true);
114
 
    ajax_call(
115
 
        callback1, "console", "service",
116
 
        {"ivle.op": "start", "cwd": get_console_start_directory()}, 
117
 
        "POST");
118
 
}
119
 
 
120
 
/** Start up the console backend before the user has entered text.
121
 
 * This will disable the text input, start a backend, and enable the input
122
 
 * again.
123
 
 */
124
 
function start_server_early()
125
 
{
126
 
    var inputbox = document.getElementById("console_inputText");
127
 
    inputbox.setAttribute("disabled", "disabled");
128
 
    var callback = function(xhr)
129
 
    {
130
 
        inputbox.removeAttribute("disabled")
131
 
    }
132
 
    start_server(callback);
 
46
 * server_host, server_port, server_magic.
 
47
 */
 
48
function start_server()
 
49
{
 
50
    if (server_started) return;
 
51
    var xhr = ajax_call("consoleservice", "start", {}, "POST");
 
52
    var json_text = xhr.responseText;
 
53
    var server_info = JSON.parse(json_text);
 
54
    server_host = server_info.host;
 
55
    server_port = server_info.port;
 
56
    server_magic = server_info.magic;
 
57
    server_started = true;
133
58
}
134
59
 
135
60
/** Initialises the console. All apps which import console are required to
152
77
        windowpane_mode = true;
153
78
        console_minimize();
154
79
    }
 
80
    /* TEMP: Start the server now.
 
81
     * Ultimately we want the server to start only when a line is typed, but
 
82
     * it currently does it asynchronously and doesn't start in time for the
 
83
     * first line. */
 
84
    start_server();
155
85
}
156
86
 
157
87
/** Hide the main console panel, so the console minimizes to just an input box
159
89
function console_minimize()
160
90
{
161
91
    if (!windowpane_mode) return;
162
 
    console_body.setAttribute("class", "console_body windowpane minimal");
 
92
    console_body.setAttribute("class", "windowpane minimal");
163
93
    console_filler.setAttribute("class", "windowpane minimal");
164
94
}
165
95
 
166
96
/** Show the main console panel, so it enlarges out to its full size.
167
97
 */
168
 
function console_maximize(do_not_start)
 
98
function console_maximize()
169
99
{
170
100
    if (!windowpane_mode) return;
171
 
    if (!do_not_start && !server_started) start_server_early();
172
 
    console_body.setAttribute("class", "console_body windowpane maximal");
 
101
    console_body.setAttribute("class", "windowpane maximal");
173
102
    console_filler.setAttribute("class", "windowpane maximal");
 
103
    /* Focus the input box by default */
 
104
    document.getElementById("console_inputText").focus()
174
105
}
175
106
 
176
107
/* current_text is the string currently on the command line.
273
204
 
274
205
var hist = new History();
275
206
 
276
 
function set_interrupt()
277
 
{
278
 
    interrupted = true;
279
 
}
280
 
 
281
 
function clear_output()
282
 
{
283
 
    var output = document.getElementById("console_output");
284
 
    while (output.firstChild)
285
 
    {
286
 
        output.removeChild(output.firstChild);
287
 
    }
288
 
}
289
 
 
290
207
/** Send a line of text to the Python server, wait for its return, and react
291
208
 * to its response by writing to the output box.
292
209
 * Also maximize the console window if not already.
293
210
 */
294
 
function console_enter_line(inputbox, which)
295
 
{
296
 
    interrupted = false;
297
 
 
298
 
    // Open up the console so we can see the output
299
 
    console_maximize();
300
 
 
301
 
    if (typeof(inputbox) == "string")
302
 
    {
303
 
        var inputline = inputbox + "\n";
304
 
        inputbox = null;
305
 
    }
306
 
    else
307
 
    {
308
 
        /* Disable the text box */
309
 
        inputbox.setAttribute("disabled", "disabled");
310
 
 
311
 
        var inputline = inputbox.value + "\n";
312
 
    }
313
 
    var output = document.getElementById("console_output");
314
 
    {
315
 
        // Print ">>>" span
316
 
        var span = document.createElement("span");
317
 
        span.setAttribute("class", "inputPrompt");
318
 
        span.appendChild(document.createTextNode(
319
 
              document.getElementById("console_prompt").firstChild.nodeValue)
320
 
                        );
321
 
        output.appendChild(span);
322
 
        // Print input line itself in a span
323
 
        var span = document.createElement("span");
324
 
        span.setAttribute("class", "inputMsg");
325
 
        span.appendChild(document.createTextNode(inputline));
326
 
        output.appendChild(span);
327
 
        divScroll.activeScroll();
328
 
    }
329
 
    var args = {
330
 
        "ivle.op": "chat", "kind": which, "key": server_key,
331
 
        "text": inputline, "cwd": get_console_start_directory()
332
 
        };
333
 
    var callback = function(xhr)
334
 
        {
335
 
            console_response(inputbox, inputline, xhr.responseText);
336
 
        }
337
 
    ajax_call(callback, "console", "service", args, "POST");
338
 
}
339
 
 
340
 
function console_response(inputbox, inputline, responseText)
341
 
{
342
 
    try
343
 
    {
344
 
        var res = JSON.parse(responseText);
345
 
    }
346
 
    catch (e)
347
 
    {
348
 
        alert("An internal error occurred in the python console.");
349
 
        return;
350
 
    }
351
 
    var output = document.getElementById("console_output");
 
211
function console_enter_line(inputline, which)
 
212
{
 
213
    /* Start the server if it hasn't already been started */
 
214
    start_server();
 
215
    var digest = hex_md5(inputline + server_magic);
 
216
    var args = {"host": server_host, "port": server_port,
 
217
                    "digest":digest, "text":inputline};
 
218
    var xmlhttp = ajax_call("consoleservice", which, args, "POST");
 
219
 
 
220
    var res = JSON.parse(xmlhttp.responseText);
 
221
    var output = document.getElementById("console_output");
 
222
    {
 
223
        var pre = document.createElement("pre");
 
224
        pre.setAttribute("class", "inputMsg");
 
225
        pre.appendChild(document.createTextNode(inputline + "\n"));
 
226
        output.appendChild(pre);
 
227
    }
352
228
    if (res.hasOwnProperty('okay'))
353
229
    {
354
230
        // Success!
355
 
        if (res.okay)
 
231
        // print out the output (res.okay[0])
 
232
        var pre = document.createElement("pre");
 
233
        pre.setAttribute("class", "outputMsg");
 
234
        pre.appendChild(document.createTextNode(res.okay[0]));
 
235
        output.appendChild(pre);
 
236
        // print out the return value (res.okay[1])
 
237
        if (res.okay[1])
356
238
        {
357
 
            output.appendChild(document.createTextNode(res.okay + "\n"));
358
 
            output.appendChild(span);
359
 
            divScroll.activeScroll();
 
239
            var pre = document.createElement("pre");
 
240
            pre.setAttribute("class", "outputMsg");
 
241
            pre.appendChild(document.createTextNode(res.okay[1] + "\n"));
 
242
            output.appendChild(pre);
360
243
        }
361
244
        // set the prompt to >>>
362
 
        set_prompt(">>>");
 
245
        var prompt = document.getElementById("console_prompt");
 
246
        prompt.replaceChild(document.createTextNode(">>> "), prompt.firstChild);
363
247
    }
364
248
    else if (res.hasOwnProperty('exc'))
365
249
    {
366
250
        // Failure!
 
251
        // print out any output that came before the error
 
252
        if (res.exc[0].length > 0)
 
253
        {
 
254
            var pre = document.createElement("pre");
 
255
            pre.setAttribute("class", "outputMsg");
 
256
            pre.appendChild(document.createTextNode(res.exc[0]));
 
257
            output.appendChild(pre);
 
258
        }
 
259
 
367
260
        // print out the error message (res.exc)
368
 
        print_error(res.exc);
369
 
        
370
 
        // set the prompt to >>>
371
 
        set_prompt(">>>");
372
 
    }
373
 
    else if (res.hasOwnProperty('restart') && res.hasOwnProperty('key'))
374
 
    {
375
 
        // Server has indicated that the console should be restarted
376
 
        
377
 
        // Get the new key (host, port, magic)
378
 
        server_key = res.key;
379
 
 
380
 
        // Print a reason to explain why we'd do such a horrible thing
381
 
        // (console timeout, server error etc.)
382
 
        print_error(
383
 
            "IVLE console restarted: " + res.restart, "console_message");
384
 
        
385
 
        // set the prompt to >>>
386
 
        set_prompt(">>>");
 
261
        var pre = document.createElement("pre");
 
262
        pre.setAttribute("class", "errorMsg");
 
263
        pre.appendChild(document.createTextNode(res.exc[1]));
 
264
        output.appendChild(pre);
387
265
    }
388
266
    else if (res.hasOwnProperty('more'))
389
267
    {
390
268
        // Need more input, so set the prompt to ...
391
 
        set_prompt("...");
392
 
    }
393
 
    else if (res.hasOwnProperty('output'))
394
 
    {
395
 
        if (res.output.length > 0)
396
 
        {
397
 
            output.appendChild(document.createTextNode(res.output));
398
 
            divScroll.activeScroll();
399
 
        }
400
 
        var callback = function(xhr)
401
 
            {
402
 
                console_response(inputbox, null, xhr.responseText);
403
 
            }
404
 
        if (interrupted)
405
 
        {
406
 
            var kind = "interrupt";
407
 
        }
408
 
        else
409
 
        {
410
 
            var kind = "chat";
411
 
        }
412
 
        var args = {
413
 
            "ivle.op": "chat", "kind": kind, "key": server_key,
414
 
            "text": '', "cwd": get_console_start_directory()
415
 
            };
416
 
        ajax_call(callback, "console", "service", args, "POST");
417
 
 
418
 
        // Open up the console so we can see the output
419
 
        console_maximize();
420
 
 
421
 
        // Return early, so we don't re-enable the input box.
422
 
        return;
423
 
    }
424
 
    else if (res.hasOwnProperty('input'))
425
 
    {
426
 
        set_prompt("+++");
427
 
    }
428
 
    else
429
 
    {
430
 
        alert("An internal error occurred in the python console.");
431
 
        return;
432
 
    }
433
 
 
434
 
    if (inputbox != null)
435
 
    {
436
 
        /* Re-enable the text box */
437
 
        inputbox.removeAttribute("disabled");
438
 
        interrupted = false;
439
 
    }
440
 
 
441
 
    /* Auto-scrolling */
442
 
    divScroll.activeScroll();
443
 
 
444
 
    // Focus the input box by default
445
 
    document.getElementById("console_output").focus();
446
 
    document.getElementById("console_inputText").focus();
 
269
        var prompt = document.getElementById("console_prompt");
 
270
        prompt.replaceChild(document.createTextNode("... "), prompt.firstChild);
 
271
    }
 
272
    else {
 
273
        // assert res.hasOwnProperty('input')
 
274
        var prompt = document.getElementById("console_prompt");
 
275
        prompt.replaceChild(document.createTextNode("+++ "), prompt.firstChild);
 
276
    }
 
277
    /* Open up the console so we can see the output */
 
278
    console_maximize();
447
279
}
448
280
 
449
281
function catch_input(key)
481
313
         */
482
314
        break;
483
315
    case 13:                /* Enter key */
484
 
        var callback = function()
485
 
        {
486
 
            /* Send the line of text to the server */
487
 
            console_enter_line(inp, "chat");
488
 
            hist.submit(inp.value);
489
 
            inp.value = hist.curr();
490
 
        }
491
 
 
492
 
        /* Disable the text box. This will be redone by
493
 
         * console_enter_line, but we do it here too in case start_server
494
 
         * takes a while.
495
 
         */
496
 
        inp.setAttribute("disabled", "disabled");
497
 
        /* Start the server if it hasn't already been started */
498
 
        start_server(callback);
 
316
        /* Send the line of text to the server */
 
317
        console_enter_line(inp.value, "chat");
 
318
        hist.submit(inp.value);
 
319
        inp.value = hist.curr();
499
320
        break;
500
321
    case 38:                /* Up arrow */
501
322
        hist.up(inp.value);
502
323
        inp.value = hist.curr();
503
 
        /* Inhibit further responses to this event, or WebKit moves the
504
 
         * cursor to the start. */
505
 
        return false;
506
324
        break;
507
325
    case 40:                /* Down arrow */
508
326
        hist.down(inp.value);
509
327
        inp.value = hist.curr();
510
 
        return false;
511
328
        break;
512
329
    }
513
330
}
514
 
 
515
 
/** Resets the console by signalling the old console to expire and starting a 
516
 
 * new one.
517
 
 */
518
 
function console_reset()
519
 
{
520
 
    // FIXME: We show some feedback here - either disable input or at very 
521
 
    // least the reset button.
522
 
 
523
 
    // Restart the console
524
 
    if(!server_started)
525
 
    {
526
 
        start_server(null);
527
 
    }
528
 
    else
529
 
    {
530
 
        xhr = ajax_call(null, "console", "service", {"ivle.op": "chat", "kind": "terminate", "key": server_key, "cwd": get_console_start_directory()}, "POST");
531
 
        console_response(null, null, xhr.responseText);
532
 
    }
533
 
}
534
 
 
535
 
/** Prints an error line in the console **/
536
 
function print_error(error, cls)
537
 
{
538
 
    if (!cls)
539
 
        cls = "errorMsg";
540
 
 
541
 
    var output = document.getElementById("console_output");
542
 
  
543
 
    // Create text block
544
 
    var span = document.createElement("span");
545
 
    span.setAttribute("class", cls);
546
 
    span.appendChild(document.createTextNode(error + "\n"));
547
 
    output.appendChild(span);
548
 
 
549
 
    // Autoscroll
550
 
    divScroll.activeScroll();
551
 
}
552
 
 
553
 
/** Sets the prompt text **/
554
 
function set_prompt(prompt_text)
555
 
{
556
 
    var prompt = document.getElementById("console_prompt");
557
 
    prompt.replaceChild(document.createTextNode(prompt_text + " "), prompt.firstChild);
558
 
}
559
 
 
560
 
/**** Following Code modified from ******************************************/
561
 
/**** http://radio.javaranch.com/pascarello/2006/08/17/1155837038219.html ***/
562
 
/****************************************************************************/
563
 
var chatscroll = new Object();
564
 
 
565
 
chatscroll.Pane = function(scrollContainerId)
566
 
{
567
 
    this.scrollContainerId = scrollContainerId;
568
 
}
569
 
 
570
 
chatscroll.Pane.prototype.activeScroll = function()
571
 
{
572
 
    var scrollDiv = document.getElementById(this.scrollContainerId);
573
 
    var currentHeight = 0;
574
 
        
575
 
    if (scrollDiv.scrollHeight > 0)
576
 
        currentHeight = scrollDiv.scrollHeight;
577
 
    else if (scrollDiv.offsetHeight > 0)
578
 
        currentHeight = scrollDiv.offsetHeight;
579
 
 
580
 
    scrollDiv.scrollTop = currentHeight;
581
 
 
582
 
    scrollDiv = null;
583
 
}
584
 
 
585
 
var divScroll = new chatscroll.Pane('console_output');