summaryrefslogtreecommitdiff
path: root/cd-tool.cpp
blob: 407f2427d7bad5dfa89f63fba7ae7240fdc6ec29 (plain)
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
/*
 *  PSX-Tools Bundle Pack
 *  Copyright (C) 2002-2005 Nicolas "Pixel" Noble
 *
 *  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.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/* $Id: cd-tool.cpp,v 1.48 2007-07-27 14:29:23 pixel Exp $ */

#define WIP

#define VERSION "0.6"

#include <getopt.h>
#include "Input.h"
#include "Output.h"
#include "Buffer.h"
#include "BLua.h"
#include "LuaConfigFile.h"
#include "LuaRegex.h"
#include "cdreader.h"
#include "cdutils.h"
#include "generic.h"
#include "Main.h"
#include "cdabstract.h"
#include "dvdabstract.h"
#include "isobuilder.h"
#include "luacd.h"
#include "luapsx.h"
#include <readline/readline.h>
#include <readline/history.h>

#include "cd-tool-hc.h"

#ifdef _WIN32

#include <readline/rldefs.h>

#include <windows.h>
#include <ctype.h>
#include <conio.h>

#define EXT_PREFIX	0x1f8

#define KEV	irec.Event.KeyEvent			/* to make life easier  */
#define KST	irec.Event.KeyEvent.dwControlKeyState


static int pending_key = 0;
static int pending_count = 0;
static int pending_prefix =  0;

extern int _rl_last_c_pos;	/* imported from display.c  */
extern int _rl_last_v_pos;
extern int rl_dispatching;	/* imported from readline.c  */
extern int rl_point;
extern int rl_done;
extern int rl_visible_prompt_length;

extern "C" {
extern int haveConsole;		/* imported from rltty.c  */
extern HANDLE hStdout, hStdin;
}

int my_getc (FILE * stream)
{
  int key;

  if ( pending_count )
    {
      --pending_count;
      if ( pending_prefix && (pending_count & 1) )
        return pending_prefix;
      else
        return pending_key;
    }

  while ( 1 )
    {
      DWORD dummy;

      if (WaitForSingleObject(hStdin, WAIT_FOR_INPUT) != WAIT_OBJECT_0)
        {
          if ( rl_done )
            return( 0 );
          else
            continue;
        }
      if ( haveConsole & FOR_INPUT )
        {
          INPUT_RECORD irec;
          ReadConsoleInput(hStdin, &irec, 1, &dummy);
          switch(irec.EventType)
            {
            case KEY_EVENT:
              if ( KEV.bKeyDown 
                 && ((KEV.wVirtualKeyCode < VK_SHIFT) || (KEV.wVirtualKeyCode > VK_MENU)) )
                {
                  int mask = 0;

                  key = KEV.uChar.AsciiChar & 0xff;
//                  if ( KST & (LEFT_ALT_PRESSED | RIGHT_ALT_PRESSED) )
//                    mask=0x100;
                  if ( key )
                    {
	/* Ascii direct */
                      pending_count = KEV.wRepeatCount - 1;
                      pending_key = key;
                      pending_prefix = 0;
                      if ( mask )
                        key = tolower(key) | mask;
                    }
                  else
	/* Others prefixed */
                    {
                      key = EXT_PREFIX;
                      if ( mask )
                        key |= 4;
                      if (KST & SHIFT_PRESSED)
                        key |= 1;
                      if (KST & (LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED))
                        key |= 2;
                      mask |= EXT_PREFIX;
                      pending_count = (KEV.wRepeatCount << 1) - 1;
                      pending_key = KEV.wVirtualKeyCode;
                      pending_prefix = key;
                    }
                  return key;
                }
              break;
            default:
              break;
            }
        }
      else
        {
          ReadFile(hStdin, &key, 1, &dummy, NULL);
          return key;
        }
    }
}
#endif

bool interactive = false;
cdutils * cdutil = 0;
isobuilder * build = 0;

static int myprint(lua_State * __L) {
    Lua * L = Lua::find(__L);
    String t = "From LUA: " + L->tostring() + "\n";
    char * tc = t.strdup();

    Base::printm(M_STATUS, "%s", tc);

    free(tc);

    return 0;
}

class Luabasecdtool : public LuaObject {
  public:
    static void pushstatics(Lua *) throw (GeneralException);
};

typedef void basecdtool;

enum basecdtool_t {
    BASECDTOOL_LOAD = 0,
};

struct lua_functypes_t basecdtool_functions[] = {
    { BASECDTOOL_LOAD,	"load", 	0, 1, { BLUA_STRING | BLUA_OBJECT } },
    { -1, 0, 0, 0, 0 }
};

class sLua_basecdtool : public Base {
  public:
    DECLARE_FUNCTION(basecdtool, BASECDTOOL_LOAD);
  private:
    static int basecdtool_proceed_statics(Lua * L, int n, int caller);
};

void Luabasecdtool::pushstatics(Lua * L) throw (GeneralException ) {
    CHECK_FUNCTIONS(basecdtool);
    
    PUSH_FUNCTION(basecdtool, BASECDTOOL_LOAD);
}

int sLua_basecdtool::basecdtool_proceed_statics(Lua * L, int n, int caller) {
    int r = 0;

    switch (caller) {
    case BASECDTOOL_LOAD:
        if (!n) {
    	    L->load(&Input("cd-tool.lua"));
        } else {
            if (L->isstring(1)) {
                L->load(&Input(L->tostring(1)));
            } else {
                Handle * t = (Handle *) LuaObject::getme(L, 1);
                L->load(t);
            }
        }
    }

    return r;
}

class Luacdtool : public LuaObject {
  public:
    static void pushstatics(Lua *) throw (GeneralException);
};

typedef void cdtool;

enum cdtool_functions_t {
    CDTOOL_PRINT = 0,
    CDTOOL_PRINTN,
    CDTOOL_QUIT,
    CDTOOL_EXIT,
    CDTOOL_INFOS,
    CDTOOL_PATH,
    CDTOOL_PRINTDIR,
};

struct lua_functypes_t cdtool_functions[] = {
    { CDTOOL_PRINT,	"print", 	0, 1, { BLUA_ANY } },
    { CDTOOL_PRINTN,	"printn", 	1, 1, { BLUA_ANY } },
    { CDTOOL_QUIT,	"quit",		0, 0, 0 },
    { CDTOOL_EXIT,	"exit",		0, 0, 0 },
    { CDTOOL_INFOS,	"infos",	0, 1, { BLUA_OBJECT } },
    { CDTOOL_PATH, 	"path",		0, 1, { BLUA_OBJECT } },
    { CDTOOL_PRINTDIR,	"printdir",	1, 2, { BLUA_STRING, BLUA_OBJECT } },
    { -1, 0, 0, 0, 0 }
};

class sLua_cdtool : public Base {
  public:
    DECLARE_FUNCTION(cdtool, CDTOOL_PRINT);
    DECLARE_FUNCTION(cdtool, CDTOOL_PRINTN);
    DECLARE_FUNCTION(cdtool, CDTOOL_QUIT);
    DECLARE_FUNCTION(cdtool, CDTOOL_EXIT);
    DECLARE_FUNCTION(cdtool, CDTOOL_INFOS);
    DECLARE_FUNCTION(cdtool, CDTOOL_PATH);
    DECLARE_FUNCTION(cdtool, CDTOOL_PRINTDIR);
  private:
    static int cdtool_proceed_statics(Lua * L, int n, int caller);
};

void Luacdtool::pushstatics(Lua * L) throw (GeneralException ) {
    CHECK_FUNCTIONS(cdtool);
    
    PUSH_FUNCTION(cdtool, CDTOOL_PRINT);
    PUSH_FUNCTION(cdtool, CDTOOL_PRINTN);
    PUSH_FUNCTION(cdtool, CDTOOL_QUIT);
    PUSH_FUNCTION(cdtool, CDTOOL_EXIT);
    PUSH_FUNCTION(cdtool, CDTOOL_INFOS);
    PUSH_FUNCTION(cdtool, CDTOOL_PATH);
    PUSH_FUNCTION(cdtool, CDTOOL_PRINTDIR);
}

int sLua_cdtool::cdtool_proceed_statics(Lua * L, int n, int caller) {
    int r = 0;
    String p;
    cdutils * cd = cdutil;
    char * tc;
    String eol = "";

    switch (caller) {
    case CDTOOL_PRINT:
        eol = "\n";
    case CDTOOL_PRINTN:
        if (n) {
            p = L->tostring(1) + eol;
        } else {
            p = eol;
        }
        tc = p.strdup();
	printm(M_BARE, "%s", tc);
        free(tc);
	break;
    case CDTOOL_QUIT:
    case CDTOOL_EXIT:
	interactive = false;
	break;
    case CDTOOL_INFOS:
	if (n)
	    cd = (cdutils *) LuaObject::getme(L, 1);
	if (cd)
    	    cd->show_iso_infos();
	else
	    L->error("Cdutils object void");
	break;
    case CDTOOL_PATH:
	if (n)
	    cd = (cdutils *) LuaObject::getme(L, 1);
	if (cd)
	    cd->show_pt_infos();
	else
	    L->error("Cdutils object void");
	break;
    case CDTOOL_PRINTDIR:
	p = L->tostring(1);
	if (n == 2)
	    cd = (cdutils *) LuaObject::getme(L, 2);
	if (cd) {
	    char * f;
	    cdutils::DirEntry dir = cd->find_path(f = p.strdup());
	    free(f);
	    if (!dir.R)
		L->error("Path `" + p + "' not found");
	    if (!(dir.Flags & 2))
		L->error("Path `" + p + "' points to a file");
	    cd->show_head_entry();
	    cd->show_dir(&dir);
	} else
	    L->error("Cdutils object void");
	break;
    }
    
    return r;
}

int lga = 0;
enum {
    NO_OPTION = 0,
    DVD_IN,
    DVD_OUT,
};

int getopt_flag = NO_OPTION;

struct option long_options[] = {
    {"help",		0, NULL, 'h'},
    {"verbose",		0, NULL, 'v'},
    {"file",		1, NULL, 'f'},
    {"write",           0, NULL, 'w'},
    {"output",		1, NULL, 'o'},
    {"archive",		1, NULL, 'a'},
    {"compile",		1, NULL, 'c'},
    {"debug",		0, NULL, 'd'},
    {"interactive",	0, NULL, 'i'},
    {"line",		0, NULL, 'l'},
    {"exec",		1, NULL, 'e'},
    {"built-in",	0, NULL, 'b'},
    {"probe",		0, NULL, 'p'},
    {"log",             1, NULL, 'g'},
    {"dvd_in",		1, &getopt_flag, DVD_IN},
    {"dvd_out",		1, &getopt_flag, DVD_OUT},
    {0,			0, NULL,  0 }
};

static Uint32 elf_hash(const unsigned char * name) {
    Uint32 h = 0, g;

    while (*name) {
        h = (h << 4) + *name++;
        if ((g = h & 0xf0000000))
            h ^= g >> 24;
        h &= ~g;
    }

    return h;
}

static int lua_elf_hash(lua_State * __L) {
    Lua * L = Lua::find(__L);
    String t = L->tostring();

    L->push((lua_Number) elf_hash((unsigned char *) t.to_charp()));

    return 1;
}

CODE_BEGINS

/* That's the basic lua starter for non interactive mode */
Lua * start_basic_lua(void) {
    Lua * L = new Lua();

    L->open_base();
    L->open_math();
    L->open_string();
    L->open_table();
    L->open_dir();

    LuaInput::pushconstruct(L);
    LuaOutput::pushconstruct(L);
    LuaBuffer::pushconstruct(L);

    LuaConfigFile::pushstatics(L);
    LuaRegex::pushstatics(L);

    CD_PUSHSTATICS(L);

    Luapsx::pushstatics(L);

    L->push("print");
    L->push(myprint);
    L->setvar();

    L->push("hash");
    L->push(lua_elf_hash);
    L->setvar();

    Luabasecdtool::pushstatics(L);

    return L;
}

/* That's the extended stuff for interactive mode */
Lua * start_full_lua(void) {
    Lua * L = start_basic_lua();
    
    Luacdtool::pushstatics(L);
    
    return L;
}

void showbanner() {
    printm(M_BARE,
"CD-Tool version " VERSION " (c) 2003-2007 Nicolas \"Pixel\" Noble\n"
LUA_RELEASE " " LUA_COPYRIGHT "\n"
#ifdef WIP
"Special version Work In Progress, compiled the " __DATE__ " at " __TIME__ "\n"
#endif
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"\n");
}

void showhelp(bool longhelp = false) {
    printm(M_BARE,
"Usage:\n"
"%s [options] [lua-script1] [lua-script2] ...\n"
"\n"
"Options:\n"
"  -v       for verbose mode.\n"
"  -f <iso> to load an initial iso file (object cdutil).\n"
"  -w       to open the previous iso file in write mode.\n"
"  -o <iso> to start creating an output iso (object iso).\n"
"  -a <paq> to load an additionnal archive file.\n"
"  -c <out> to dump the compiled byte code to file.\n"
"  -d       to enable debug mode (ie, do not strip)\n"
"  -i       to start interactive mode.\n"
"  -l       to turn off the exec on end line.\n"
"  -e <cmd> to execute this single command in LUA.\n"
"  -b       to force the use of the built-in cd-tool.lua\n"
"  -p       to run a CD device probe.\n"
"  -g <log> to log into a file.\n"
"  -h       for a help page.\n"
"  --dvd_in   <iso>   replaces -f with a 2048-bytes iso.\n"
"  --dvd_out  <iso>   replaces -o with a 2048-bytes iso.\n"
, argv[0]);

    if (longhelp)
	printm(M_BARE,
"\n"
"Verbose mode can be somewhat a floody thing.\n"
"Options -i/-e and -c are mutually exclusive.\n"
"Options -i and -e are NOT mutually exclusive. For example:\n"
"\n"
"  $ %s -i -e \"main()\" somescript.lua\n"
"\n"
"This will first load the script 'somescript.lua', then execute main, and\n"
"afterward, start the interactive mode.\n"
"\n"
"If a script contains inlined code, it will be run right after loading.\n"
, argv[0]);
}

void probe(void) {
    std::vector<String> p;

    if (!cdabstract::canprobe()) {
	printm(M_ERROR, "Can't probe on this platform.\n");
	exit(-1);
    }

    p = cdabstract::probe();

    printm(M_BARE, "Alvaible devices:\n");
    for (std::vector<String>::iterator i = p.begin(); i != p.end(); i++) {
        printm(M_BARE, *i + "\n");
    }
}

class cd_tool_printer_t : public printer_t {
  public:
      cd_tool_printer_t(Handle * h) : log(h) { }
    virtual bool printm(int level, const char * format, va_list ap) {
        char tmp[10241];

        vsprintf(tmp, format, ap);

        (*log) << tmp;

        return true;
    }
  private:
    Handle * log;
};

virtual int startup() throw (GeneralException) {
    char c;

    bool auto_exec = true, strip = true, todo = false, runit, write = false, builtin = false;
    char * file = 0, * output = 0, * compile = 0, * exec = 0, * line_read = 0, * dvd_in = 0, * dvd_out = 0;
    char prompt[10];
    Lua * L = 0;
    Handle * read_iso = 0, * build_iso = 0, * write_iso = 0;
    Buffer command;
    String line, endline;
    int pos;
    
    verbosity = M_WARNING;

    showbanner();
    
    /* Let's start parsing options */

    while ((c = getopt_long(argc, argv, "Hhvf:wo:a:c:dile:pbg:", long_options, NULL)) != EOF) {
	switch (c) {
	case 'h':
	case 'H':
	case '?':
	    showhelp(true);
	    throw Exit(0);
	case 'v':
	    verbosity = M_INFO;
	    break;
	case 'f':
	    file = strdup(optarg);
	    break;
        case 'w':
            write = true;
            break;
	case 'o':
	    output = strdup(optarg);
	    break;
	case 'a':
	    new Archive(optarg);
	    break;
	case 'c':
	    compile = strdup(optarg);
	    break;
	case 'd':
	    strip = false;
	    break;
	case 'i':
	    interactive = true;
	    todo = true;
	    break;
	case 'l':
	    auto_exec = false;
	    break;
	case 'e':
	    exec = strdup(optarg);
	    todo = true;
	    break;
	case 'p':
	    probe();
	    throw Exit(0);
	case 'b':
	    builtin = true;
	    break;
        case 'g':
            printer = new cd_tool_printer_t(new Output(optarg));
            break;
	case 0:
	    if (!getopt_flag) {
		showhelp();
		throw Exit(-1);
	    }
	    switch(getopt_flag) {
	    case DVD_IN:
		dvd_in = strdup(optarg);
		break;
	    case DVD_OUT:
		dvd_out = strdup(optarg);
		break;
	    }
	    getopt_flag = NO_OPTION;
	    break;
	default:
	    showhelp();
	    throw Exit(-1);
	}
    }

    if (interactive)
	L = start_full_lua();
    else
	L = start_basic_lua();

    /* Loading cd-tool.lua (only when not compiling) */
    if (!compile && !builtin) {
	try {
    	    L->load(&Input("cd-tool.lua"));
	}
        catch (GeneralException e) {
    	    printm(M_WARNING, "There was an error loading cd-tool.lua, using built-in: %s\n", e.GetMsg());
	    builtin = true;
	}
    }
    
    if (!compile && builtin) {
	Buffer built;
        built.write(cd_tool_lua, cd_tool_lua_size);
	
	try {
    	    L->load(&built);
	}
        catch (GeneralException e) {
    	    printm(M_WARNING, "There was an error loading built-in cd-tool.lua: %s\n", e.GetMsg());
	}
    }

    /* Loading all the scripts */
    while (optind < argc) {
	todo = true;
	L->load(&Input(argv[optind++]), !compile);
    }

    /* Doh... */
    if (!todo) {
	showhelp();
	throw Exit(0);
    }
    
    /* Compilation process will exit from itself right after */
    if (compile) {
	L->dump(&Output(compile), strip);
	throw Exit(0);
    }
    
    /* Sanity checks */
    if (dvd_in && file)
	throw GeneralException("Error: you can't have both --dvd_in and -f at the same time.");

    if (dvd_out && output)
	throw GeneralException("Error: you can't have both --dvd_out and -o at the same time.");
    
    /* The basic input (and eventually output) iso file */
    if (file) {
        /* The write mode can't apply on a CD of course... */
        if (write) {
            read_iso = new Input(file);
            write_iso = new Output(file, 0, 0);
        } else {
            read_iso = cdabstract::open_cd(file);
        }
    }
    
    /* Same as above, but with dvd stuff */
    if (dvd_in) {
	read_iso = new dvdabstract(new Input(dvd_in));
	if (write) {
	    write_iso = new dvdabstract(new Output(dvd_in, 0, 0));
	}
    }
    
    /* Let's create the cdutils object and push it to the LUA stack. */
    if (read_iso) {
        cdutil = new cdutils(read_iso, write_iso);
	if (!cdutil->get_iso_infos())
	    throw Exit(-1);
	Luacdutils lcdutil(cdutil);
	L->push("cdutil");
	lcdutil.push(L);
	L->setvar();
    }
    
    /* The generated iso file */
    if (output || dvd_out) {
	if (output)
    	    build_iso = new Output(output);
	else
	    build_iso = new dvdabstract(new Output(dvd_out));
	build = new isobuilder(build_iso);
	Luaisobuilder lbuild(build);
	L->push("iso");
	lbuild.push(L);
	L->setvar();
    }
    
    /* One shot command */
    if (exec) {
	command << exec;
	L->load(&command);
    }
    
    /* Interactive mode loop */
    strcpy(prompt, "> ");
#ifdef _WIN32
    rl_getc_function = my_getc;
#endif
    rl_bind_key('\t', rl_insert);
    while (interactive) {
	/* Basic usage of readline */
	if (line_read)
	    free(line_read);
	
	line_read = readline(prompt);
	
	if (!line_read) {
	    printm(M_BARE, "\n");
	    break;
	}
	
	if (*line_read)
	    add_history(line_read);
	
	line = line_read;
	line = line.trim();
	endline = "";
	
	/* Splitting the line between ;; */
	while (line.strlen()) {	
	    runit = false;
	
	    if ((pos = line.strstr(";;")) >= 0) {
		endline = line.extract(pos + 2);
		line = line.extract(0, pos);
		runit = true;
	    } else {
		endline = "";
	    }
	    
	    if (line[line.strlen() - 1] == '\\') {
		line[line.strlen() - 1] = ' ';
	    } else if (auto_exec) {
		runit = true;
            }
	    
	    command << line;
	
	    if (runit) {
		try {
		    L->load(&command);
	        }
		catch (LuaException e) {
		    /* If there was an error, ignore it, and free the stack */
		    while(L->gettop())
			L->pop();
                    printm(M_ERROR, "%s\n", e.GetMsg());
	        }
		catch (GeneralException e) {
		    /* A more severe exception... */
		    while(L->gettop())
			L->pop();
		    printm(M_ERROR, "Aborted. LUA caused the following exception: %s\n", e.GetMsg());
		}
		strcpy(prompt, "> ");
	    } else {
		strcpy(prompt, "- ");
                command << "\n";
	    }
	    line = endline.trim();
	}
    }
    
    /* Finishing off the work, cleaning out the dust */
    if (output) {
	delete build;
	delete build_iso;
    }
    
    if (file) {
	delete cdutil;
    }

    return 0;
}
CODE_ENDS