[project @ 1999-11-12 17:50:01 by sewardj]
[ghc-hetmet.git] / ghc / interpreter / hugs.c
1
2 /* --------------------------------------------------------------------------
3  * Command interpreter
4  *
5  * The Hugs 98 system is Copyright (c) Mark P Jones, Alastair Reid, the
6  * Yale Haskell Group, and the Oregon Graduate Institute of Science and
7  * Technology, 1994-1999, All rights reserved.  It is distributed as
8  * free software under the license in the file "License", which is
9  * included in the distribution.
10  *
11  * $RCSfile: hugs.c,v $
12  * $Revision: 1.20 $
13  * $Date: 1999/11/12 17:50:01 $
14  * ------------------------------------------------------------------------*/
15
16 #include <setjmp.h>
17 #include <ctype.h>
18 #include <stdio.h>
19
20 #include "prelude.h"
21 #include "storage.h"
22 #include "command.h"
23 #include "backend.h"
24 #include "connect.h"
25 #include "errors.h"
26 #include "version.h"
27 #include "link.h"
28
29 #include "Rts.h"
30 #include "RtsAPI.h"
31 #include "Schedule.h"
32
33
34 Bool haskell98 = TRUE;                  /* TRUE => Haskell 98 compatibility*/
35
36 #if EXPLAIN_INSTANCE_RESOLUTION
37 Bool showInstRes = FALSE;
38 #endif
39 #if MULTI_INST
40 Bool multiInstRes = FALSE;
41 #endif
42
43 /* --------------------------------------------------------------------------
44  * Local function prototypes:
45  * ------------------------------------------------------------------------*/
46
47 static Void   local initialize        Args((Int,String []));
48 static Void   local promptForInput    Args((String));
49 static Void   local interpreter       Args((Int,String []));
50 static Void   local menu              Args((Void));
51 static Void   local guidance          Args((Void));
52 static Void   local forHelp           Args((Void));
53 static Void   local set               Args((Void));
54 static Void   local changeDir         Args((Void));
55 static Void   local load              Args((Void));
56 static Void   local project           Args((Void));
57 static Void   local readScripts       Args((Int));
58 static Void   local whatScripts       Args((Void));
59 static Void   local editor            Args((Void));
60 static Void   local find              Args((Void));
61 static Bool   local startEdit         Args((Int,String));
62 static Void   local runEditor         Args((Void));
63 static Void   local setModule         Args((Void));
64 static Module local findEvalModule    Args((Void));
65 static Void   local evaluator         Args((Void));
66 static Void   local stopAnyPrinting   Args((Void));
67 static Void   local showtype          Args((Void));
68 static String local objToStr          Args((Module, Cell));
69 static Void   local info              Args((Void));
70 static Void   local printSyntax       Args((Name));
71 static Void   local showInst          Args((Inst));
72 static Void   local describe          Args((Text));
73 static Void   local listNames         Args((Void));
74
75 static Void   local toggleSet         Args((Char,Bool));
76 static Void   local togglesIn         Args((Bool));
77 static Void   local optionInfo        Args((Void));
78 #if USE_REGISTRY || HUGS_FOR_WINDOWS
79 static String local optionsToStr      Args((Void));
80 #endif
81 static Void   local readOptions       Args((String));
82 static Bool   local processOption     Args((String));
83 static Void   local setHeapSize       Args((String));
84 static Int    local argToInt          Args((String));
85
86 static Void   local loadProject       Args((String));
87 static Void   local clearProject      Args((Void));
88 static Bool   local addScript         Args((Int));
89 static Void   local forgetScriptsFrom Args((Script));
90 static Void   local setLastEdit       Args((String,Int));
91 static Void   local failed            Args((Void));
92 static String local strCopy           Args((String));
93 static Void   local browseit          Args((Module,String));
94 static Void   local browse            Args((Void));
95
96 /* --------------------------------------------------------------------------
97  * Machine dependent code for Hugs interpreter:
98  * ------------------------------------------------------------------------*/
99
100 #include "machdep.c"
101 #ifdef WANT_TIMER
102 #include "timer.c"
103 #endif
104
105 /* --------------------------------------------------------------------------
106  * Local data areas:
107  * ------------------------------------------------------------------------*/
108
109 static Bool   printing     = FALSE;     /* TRUE => currently printing value*/
110 static Bool   showStats    = FALSE;     /* TRUE => print stats after eval  */
111 static Bool   listScripts  = TRUE;      /* TRUE => list scripts after loading*/
112 static Bool   addType      = FALSE;     /* TRUE => print type with value   */
113 static Bool   useDots      = RISCOS;    /* TRUE => use dots in progress    */
114 static Bool   quiet        = FALSE;     /* TRUE => don't show progress     */
115 static Bool   lastWasObject = FALSE;
116        Bool   preludeLoaded = FALSE;
117
118 typedef 
119    struct { 
120       String modName;                   /* Module name                     */
121       Bool   details;             /* FALSE => remaining fields are invalid */
122       String path;                      /* Path to module                  */
123       String srcExt;                    /* ".hs" or ".lhs" if fromSource   */
124       Time   lastChange;                /* Time of last change to script   */
125       Bool   fromSource;                /* FALSE => load object code       */
126       Bool   postponed;                 /* Indicates postponed load        */
127       Bool   objLoaded;
128       Long   size;
129       Long   oSize;
130    }
131    ScriptInfo;
132
133 static Void   local makeStackEntry    Args((ScriptInfo*,String));
134 static Void   local addStackEntry     Args((String));
135
136 static ScriptInfo scriptInfo[NUM_SCRIPTS];
137
138 static Int    numScripts;               /* Number of scripts loaded        */
139 static Int    nextNumScripts;
140 static Int    namesUpto;                /* Number of script names set      */
141 static Bool   needsImports;             /* set to TRUE if imports required */
142        String scriptFile;               /* Name of current script (if any) */
143
144
145
146 static Text   evalModule  = 0;          /* Name of module we eval exprs in */
147 static String currProject = 0;          /* Name of current project file    */
148 static Bool   projectLoaded = FALSE;    /* TRUE => project file loaded     */
149
150 static Bool   autoMain   = FALSE;
151 static String lastEdit   = 0;           /* Name of script to edit (if any) */
152 static Int    lastEdLine = 0;           /* Editor line number (if possible)*/
153 static String prompt     = 0;           /* Prompt string                   */
154 static Int    hpSize     = DEFAULTHEAP; /* Desired heap size               */
155        String hugsEdit   = 0;           /* String for editor command       */
156        String hugsPath   = 0;           /* String for file search path     */
157
158 #if REDIRECT_OUTPUT
159 static Bool disableOutput = FALSE;      /* redirect output to buffer?      */
160 #endif
161
162 String bool2str ( Bool b )
163 {
164    if (b) return "Yes"; else return "No ";
165 }
166
167 void ppSmStack ( String who )
168 {
169    int i, j;
170 return;
171    fflush(stdout);fflush(stderr);
172    printf ( "\n" );
173    printf ( "ppSmStack %s:  numScripts = %d   namesUpto = %d  needsImports = %s\n",
174             who, numScripts, namesUpto, bool2str(needsImports) );
175    assert (namesUpto >= numScripts);
176    printf ( "     Det FrS Pst ObL           Module Ext   Size ModTime  Path\n" );
177    for (i = namesUpto-1; i >= 0; i--) {
178       printf ( "%c%2d: %3s %3s %3s %3s %16s %-4s %5ld %8lx %s\n",
179                (i==numScripts ? '*' : ' '),
180                i, bool2str(scriptInfo[i].details), 
181                   bool2str(scriptInfo[i].fromSource),
182                   bool2str(scriptInfo[i].postponed), 
183                   bool2str(scriptInfo[i].objLoaded),
184                   scriptInfo[i].modName, 
185                   scriptInfo[i].fromSource ? scriptInfo[i].srcExt : "",
186                   scriptInfo[i].size, 
187                   scriptInfo[i].lastChange,
188                   scriptInfo[i].path
189              );
190    }
191    fflush(stdout);fflush(stderr);
192    ppScripts();
193    ppModules();
194    printf ( "\n" );
195 }
196
197 /* --------------------------------------------------------------------------
198  * Hugs entry point:
199  * ------------------------------------------------------------------------*/
200
201 #ifndef NO_MAIN /* we omit main when building the "Hugs server" */
202  
203 Main main Args((Int, String []));       /* now every func has a prototype  */
204
205 Main main(argc,argv)
206 int  argc;
207 char *argv[]; {
208 #ifdef HAVE_CONSOLE_H /* Macintosh port */
209     _ftype = 'TEXT';
210     _fcreator = 'R*ch';       /*  // 'KAHL';      //'*TEX';       //'ttxt'; */
211
212     console_options.top = 50;
213     console_options.left = 20;
214
215     console_options.nrows = 32;
216     console_options.ncols = 80;
217
218     console_options.pause_atexit = 1;
219     console_options.title = "\pHugs";
220
221     console_options.procID = 5;
222     argc = ccommand(&argv);
223 #endif
224
225     CStackBase = &argc;                 /* Save stack base for use in gc   */
226
227     /* Try and figure out an absolute path to the executable, so
228        we can make a reasonable guess about where the default
229        libraries (Prelude etc) are.
230     */
231     setDefaultLibDir ( argv[0] );
232
233     /* If first arg is +Q or -Q, be entirely silent, and automatically run
234        main after loading scripts.  Useful for running the nofib suite.    */
235     if (argc > 1 && (strcmp(argv[1],"+Q") == 0 || strcmp(argv[1],"-Q")==0)) {
236        autoMain = TRUE;
237        hugsEnableOutput(0);
238     }
239
240     Printf("__   __ __  __  ____   ___      _________________________________________\n");
241     Printf("||   || ||  || ||  || ||__      Hugs 98: Based on the Haskell 98 standard\n");
242     Printf("||___|| ||__|| ||__||  __||     Copyright (c) 1994-1999\n");
243     Printf("||---||         ___||           World Wide Web: http://haskell.org/hugs\n");
244     Printf("||   ||                         Report bugs to: hugs-bugs@haskell.org\n");
245     Printf("||   || Version: %s _________________________________________\n\n",HUGS_VERSION);
246
247 #if SYMANTEC_C
248     Printf("   Ported to Macintosh by Hans Aberg, compiled " __DATE__ ".\n\n");
249 #endif
250     FlushStdout();
251     interpreter(argc,argv);
252     Printf("[Leaving Hugs]\n");
253     everybody(EXIT);
254     shutdownHaskell();
255     FlushStdout();
256     fflush(stderr);
257     exit(0);
258     MainDone();
259 }
260
261 #endif
262
263 /* --------------------------------------------------------------------------
264  * Initialization, interpret command line args and read prelude:
265  * ------------------------------------------------------------------------*/
266
267 static Void local initialize(argc,argv)/* Interpreter initialization       */
268 Int    argc;
269 String argv[]; {
270     Script i;
271     String proj        = 0;
272     char argv_0_orig[1000];
273
274     setLastEdit((String)0,0);
275     lastEdit      = 0;
276     scriptFile    = 0;
277     numScripts    = 0;
278     namesUpto     = 1;
279
280 #if HUGS_FOR_WINDOWS
281     hugsEdit      = strCopy(fromEnv("EDITOR","c:\\windows\\notepad.exe"));
282 #elif SYMANTEC_C
283     hugsEdit      = "";
284 #else
285     hugsEdit      = strCopy(fromEnv("EDITOR",NULL));
286 #endif
287     hugsPath      = strCopy(HUGSPATH);
288     readOptions("-p\"%s> \" -r$$");
289 #if USE_REGISTRY
290     projectPath   = strCopy(readRegChildStrings(HKEY_LOCAL_MACHINE,ProjectRoot,
291                                                 "HUGSPATH", PATHSEP, ""));
292     readOptions(readRegString(HKEY_LOCAL_MACHINE,HugsRoot,"Options",""));
293     readOptions(readRegString(HKEY_CURRENT_USER, HugsRoot,"Options",""));
294 #endif /* USE_REGISTRY */
295     readOptions(fromEnv("STGHUGSFLAGS",""));
296
297    strncpy(argv_0_orig,argv[0],1000);   /* startupHaskell mangles argv[0] */
298    startupHaskell (argc,argv);
299    argc = prog_argc; argv = prog_argv;
300
301    namesUpto = numScripts = 0;
302    addStackEntry("Prelude");
303
304    for (i=1; i<argc; ++i) {            /* process command line arguments  */
305         if (strcmp(argv[i], "--")==0) break;
306         if (strcmp(argv[i],"+")==0 && i+1<argc) {
307             if (proj) {
308                 ERRMSG(0) "Multiple project filenames on command line"
309                 EEND;
310             } else {
311                 proj = argv[++i];
312             }
313         } else if (argv[i] && argv[i][0]/* workaround for /bin/sh silliness*/
314                  && !processOption(argv[i])) {
315             addStackEntry(argv[i]);
316         }
317     }
318
319 #if DEBUG
320     DEBUG_LoadSymbols(argv_0_orig);
321 #endif
322
323
324 #if 0
325     if (!scriptName[0]) {
326         Printf("Prelude not found on current path: \"%s\"\n",
327                hugsPath ? hugsPath : "");
328         fatal("Unable to load prelude");
329     }
330 #endif
331
332     if (haskell98) {
333         Printf("Haskell 98 mode: Restart with command line option -98 to enable extensions\n\n");
334     } else {
335         Printf("Hugs mode: Restart with command line option +98 for Haskell 98 mode\n\n");
336     }
337  
338     everybody(INSTALL);
339     evalModule = findText("");      /* evaluate wrt last module by default */
340     if (proj) {
341         if (namesUpto>1) {
342             fprintf(stderr,
343                     "\nUsing project file, ignoring additional filenames\n");
344         }
345         loadProject(strCopy(proj));
346     }
347     readScripts(0);
348 }
349
350 /* --------------------------------------------------------------------------
351  * Command line options:
352  * ------------------------------------------------------------------------*/
353
354 struct options {                        /* command line option toggles     */
355     char   c;                           /* table defined in main app.      */
356     int    h98;
357     String description;
358     Bool   *flag;
359 };
360 extern struct options toggle[];
361
362 static Void local toggleSet(c,state)    /* Set command line toggle         */
363 Char c;
364 Bool state; {
365     Int i;
366     for (i=0; toggle[i].c; ++i)
367         if (toggle[i].c == c) {
368             *toggle[i].flag = state;
369             return;
370         }
371     ERRMSG(0) "Unknown toggle `%c'", c
372     EEND;
373 }
374
375 static Void local togglesIn(state)      /* Print current list of toggles in*/
376 Bool state; {                           /* given state                     */
377     Int count = 0;
378     Int i;
379     for (i=0; toggle[i].c; ++i)
380         if (*toggle[i].flag == state && (!haskell98 || toggle[i].h98)) {
381             if (count==0)
382                 Putchar((char)(state ? '+' : '-'));
383             Putchar(toggle[i].c);
384             count++;
385         }
386     if (count>0)
387         Putchar(' ');
388 }
389
390 static Void local optionInfo() {        /* Print information about command */
391     static String fmts = "%-5s%s\n";    /* line settings                   */
392     static String fmtc = "%-5c%s\n";
393     Int    i;
394
395     Printf("TOGGLES: groups begin with +/- to turn options on/off resp.\n");
396     for (i=0; toggle[i].c; ++i) {
397         if (!haskell98 || toggle[i].h98) {
398             Printf(fmtc,toggle[i].c,toggle[i].description);
399         }
400     }
401
402     Printf("\nOTHER OPTIONS: (leading + or - makes no difference)\n");
403     Printf(fmts,"hnum","Set heap size (cannot be changed within Hugs)");
404     Printf(fmts,"pstr","Set prompt string to str");
405     Printf(fmts,"rstr","Set repeat last expression string to str");
406     Printf(fmts,"Pstr","Set search path for modules to str");
407     Printf(fmts,"Estr","Use editor setting given by str");
408     Printf(fmts,"cnum","Set constraint cutoff limit");
409 #if USE_PREPROCESSOR  && (defined(HAVE_POPEN) || defined(HAVE__POPEN))
410     Printf(fmts,"Fstr","Set preprocessor filter to str");
411 #endif
412
413     Printf("\nCurrent settings: ");
414     togglesIn(TRUE);
415     togglesIn(FALSE);
416     Printf("-h%d",heapSize);
417     Printf(" -p");
418     printString(prompt);
419     Printf(" -r");
420     printString(repeatStr);
421     Printf(" -c%d",cutoff);
422     Printf("\nSearch path     : -P");
423     printString(hugsPath);
424 #if 0
425 ToDo
426     if (projectPath!=NULL) {
427         Printf("\nProject Path    : %s",projectPath);
428     }
429 #endif
430     Printf("\nEditor setting  : -E");
431     printString(hugsEdit);
432 #if USE_PREPROCESSOR  && (defined(HAVE_POPEN) || defined(HAVE__POPEN))
433     Printf("\nPreprocessor    : -F");
434     printString(preprocessor);
435 #endif
436     Printf("\nCompatibility   : %s", haskell98 ? "Haskell 98 (+98)"
437                                                : "Hugs Extensions (-98)");
438     Putchar('\n');
439 }
440
441 #if USE_REGISTRY || HUGS_FOR_WINDOWS
442 #define PUTC(c)                         \
443     *next++=(c)
444
445 #define PUTS(s)                         \
446     strcpy(next,s);                     \
447     next+=strlen(next)
448
449 #define PUTInt(optc,i)                  \
450     sprintf(next,"-%c%d",optc,i);       \
451     next+=strlen(next)
452
453 #define PUTStr(c,s)                     \
454     next=PUTStr_aux(next,c,s)
455
456 static String local PUTStr_aux Args((String,Char, String));
457
458 static String local PUTStr_aux(next,c,s)
459 String next;
460 Char   c;
461 String s; {
462     if (s) { 
463         String t = 0;
464         sprintf(next,"-%c\"",c); 
465         next+=strlen(next);      
466         for(t=s; *t; ++t) {
467             PUTS(unlexChar(*t,'"'));
468         }
469         next+=strlen(next);      
470         PUTS("\" ");
471     }
472     return next;
473 }
474
475 static String local optionsToStr() {          /* convert options to string */
476     static char buffer[2000];
477     String next = buffer;
478
479     Int i;
480     for (i=0; toggle[i].c; ++i) {
481         PUTC(*toggle[i].flag ? '+' : '-');
482         PUTC(toggle[i].c);
483         PUTC(' ');
484     }
485     PUTS(haskell98 ? "+98 " : "-98 ");
486     PUTInt('h',hpSize);  PUTC(' ');
487     PUTStr('p',prompt);
488     PUTStr('r',repeatStr);
489     PUTStr('P',hugsPath);
490     PUTStr('E',hugsEdit);
491     PUTInt('c',cutoff);  PUTC(' ');
492 #if USE_PREPROCESSOR  && (defined(HAVE_POPEN) || defined(HAVE__POPEN))
493     PUTStr('F',preprocessor);
494 #endif
495     PUTC('\0');
496     return buffer;
497 }
498 #endif /* USE_REGISTRY */
499
500 #undef PUTC
501 #undef PUTS
502 #undef PUTInt
503 #undef PUTStr
504
505 static Void local readOptions(options)         /* read options from string */
506 String options; {
507     String s;
508     if (options) {
509         stringInput(options);
510         while ((s=readFilename())!=0) {
511             if (*s && !processOption(s)) {
512                 ERRMSG(0) "Option string must begin with `+' or `-'"
513                 EEND;
514             }
515         }
516     }
517 }
518
519 static Bool local processOption(s)      /* process string s for options,   */
520 String s; {                             /* return FALSE if none found.     */
521     Bool state;
522
523     if (s[0]=='-')
524         state = FALSE;
525     else if (s[0]=='+')
526         state = TRUE;
527     else
528         return FALSE;
529
530     while (*++s)
531         switch (*s) {
532             case 'Q' : break;                           /* already handled */
533
534             case 'p' : if (s[1]) {
535                            if (prompt) free(prompt);
536                            prompt = strCopy(s+1);
537                        }
538                        return TRUE;
539
540             case 'r' : if (s[1]) {
541                            if (repeatStr) free(repeatStr);
542                            repeatStr = strCopy(s+1);
543                        }
544                        return TRUE;
545
546             case 'P' : {
547                            String p = substPath(s+1,hugsPath ? hugsPath : "");
548                            if (hugsPath) free(hugsPath);
549                            hugsPath = p;
550                            return TRUE;
551                        }
552
553             case 'E' : if (hugsEdit) free(hugsEdit);
554                        hugsEdit = strCopy(s+1);
555                        return TRUE;
556
557 #if USE_PREPROCESSOR  && (defined(HAVE_POPEN) || defined(HAVE__POPEN))
558             case 'F' : if (preprocessor) free(preprocessor);
559                        preprocessor = strCopy(s+1);
560                        return TRUE;
561 #endif
562
563             case 'h' : setHeapSize(s+1);
564                        return TRUE;
565
566             case 'D' : /* hack */
567                 {
568                     extern void setRtsFlags( int x );
569                     setRtsFlags(argToInt(s+1));
570                     return TRUE;
571                 }
572
573             default  : if (strcmp("98",s)==0) {
574                            if (heapBuilt() && ((state && !haskell98) ||
575                                                (!state && haskell98))) {
576                                FPrintf(stderr,
577                                        "Haskell 98 compatibility cannot be changed"
578                                        " while the interpreter is running\n");
579                            } else {
580                                haskell98 = state;
581                            }
582                            return TRUE;
583                        } else {
584                            toggleSet(*s,state);
585                        }
586                        break;
587         }
588     return TRUE;
589 }
590
591 static Void local setHeapSize(s) 
592 String s; {
593     if (s) {
594         hpSize = argToInt(s);
595         if (hpSize < MINIMUMHEAP)
596             hpSize = MINIMUMHEAP;
597         else if (MAXIMUMHEAP && hpSize > MAXIMUMHEAP)
598             hpSize = MAXIMUMHEAP;
599         if (heapBuilt() && hpSize != heapSize) {
600             /* ToDo: should this use a message box in winhugs? */
601 #if USE_REGISTRY
602             FPrintf(stderr,"Change to heap size will not take effect until you rerun Hugs\n");
603 #else
604             FPrintf(stderr,"Cannot change heap size\n");
605 #endif
606         } else {
607             heapSize = hpSize;
608         }
609     }
610 }
611
612 static Int local argToInt(s)            /* read integer from argument str  */
613 String s; {
614     Int    n = 0;
615     String t = s;
616
617     if (*s=='\0' || !isascii((int)(*s)) || !isdigit((int)(*s))) {
618         ERRMSG(0) "Missing integer in option setting \"%s\"", t
619         EEND;
620     }
621
622     do {
623         Int d = (*s++) - '0';
624         if (n > ((MAXPOSINT - d)/10)) {
625             ERRMSG(0) "Option setting \"%s\" is too large", t
626             EEND;
627         }
628         n     = 10*n + d;
629     } while (isascii((int)(*s)) && isdigit((int)(*s)));
630
631     if (*s=='K' || *s=='k') {
632         if (n > (MAXPOSINT/1000)) {
633             ERRMSG(0) "Option setting \"%s\" is too large", t
634             EEND;
635         }
636         n *= 1000;
637         s++;
638     }
639
640 #if MAXPOSINT > 1000000                 /* waste of time on 16 bit systems */
641     if (*s=='M' || *s=='m') {
642         if (n > (MAXPOSINT/1000000)) {
643             ERRMSG(0) "Option setting \"%s\" is too large", t
644             EEND;
645         }
646         n *= 1000000;
647         s++;
648     }
649 #endif
650
651 #if MAXPOSINT > 1000000000
652     if (*s=='G' || *s=='g') {
653         if (n > (MAXPOSINT/1000000000)) {
654             ERRMSG(0) "Option setting \"%s\" is too large", t
655             EEND;
656         }
657         n *= 1000000000;
658         s++;
659     }
660 #endif
661
662     if (*s!='\0') {
663         ERRMSG(0) "Unwanted characters after option setting \"%s\"", t
664         EEND;
665     }
666
667     return n;
668 }
669
670 /* --------------------------------------------------------------------------
671  * Print Menu of list of commands:
672  * ------------------------------------------------------------------------*/
673
674 static struct cmd cmds[] = {
675  {":?",      HELP},   {":cd",   CHGDIR},  {":also",    ALSO},
676  {":type",   TYPEOF}, {":!",    SYSTEM},  {":load",    LOAD},
677  {":reload", RELOAD}, {":gc",   COLLECT}, {":edit",    EDIT},
678  {":quit",   QUIT},   {":set",  SET},     {":find",    FIND},
679  {":names",  NAMES},  {":info", INFO},    {":project", PROJECT},
680  {":dump",   DUMP},   {":ztats", STATS},
681  {":module",SETMODULE}, 
682  {":browse", BROWSE},
683 #if EXPLAIN_INSTANCE_RESOLUTION
684  {":xplain", XPLAIN},
685 #endif
686  {":version", PNTVER},
687  {"",      EVAL},
688  {0,0}
689 };
690
691 static Void local menu() {
692     Printf("LIST OF COMMANDS:  Any command may be abbreviated to :c where\n");
693     Printf("c is the first character in the full name.\n\n");
694     Printf(":load <filenames>   load modules from specified files\n");
695     Printf(":load               clear all files except prelude\n");
696     Printf(":also <filenames>   read additional modules\n");
697     Printf(":reload             repeat last load command\n");
698     Printf(":project <filename> use project file\n");
699     Printf(":edit <filename>    edit file\n");
700     Printf(":edit               edit last module\n");
701     Printf(":module <module>    set module for evaluating expressions\n");
702     Printf("<expr>              evaluate expression\n");
703     Printf(":type <expr>        print type of expression\n");
704     Printf(":?                  display this list of commands\n");
705     Printf(":set <options>      set command line options\n");
706     Printf(":set                help on command line options\n");
707     Printf(":names [pat]        list names currently in scope\n");
708     Printf(":info <names>       describe named objects\n");
709     Printf(":browse <modules>   browse names defined in <modules>\n");
710 #if EXPLAIN_INSTANCE_RESOLUTION
711     Printf(":xplain <context>   explain instance resolution for <context>\n");
712 #endif
713     Printf(":find <name>        edit module containing definition of name\n");
714     Printf(":!command           shell escape\n");
715     Printf(":cd dir             change directory\n");
716     Printf(":gc                 force garbage collection\n");
717     Printf(":version            print Hugs version\n");
718     Printf(":dump <name>        print STG code for named fn\n");
719 #ifdef CRUDE_PROFILING
720     Printf(":ztats <name>       print reduction stats\n");
721 #endif
722     Printf(":quit               exit Hugs interpreter\n");
723 }
724
725 static Void local guidance() {
726     Printf("Command not recognised.  ");
727     forHelp();
728 }
729
730 static Void local forHelp() {
731     Printf("Type :? for help\n");
732 }
733
734 /* --------------------------------------------------------------------------
735  * Setting of command line options:
736  * ------------------------------------------------------------------------*/
737
738 struct options toggle[] = {             /* List of command line toggles    */
739     {'s', 1, "Print no. reductions/cells after eval", &showStats},
740     {'t', 1, "Print type after evaluation",           &addType},
741     {'g', 1, "Print no. cells recovered after gc",    &gcMessages},
742     {'l', 1, "Literate modules as default",           &literateScripts},
743     {'e', 1, "Warn about errors in literate modules", &literateErrors},
744     {'.', 1, "Print dots to show progress",           &useDots},
745     {'q', 1, "Print nothing to show progress",        &quiet},
746     {'w', 1, "Always show which modules are loaded",  &listScripts},
747     {'k', 1, "Show kind errors in full",              &kindExpert},
748     {'o', 0, "Allow overlapping instances",           &allowOverlap},
749
750
751 #if DEBUG_CODE
752     {'D', 1, "Debug: show generated code",            &debugCode},
753 #endif
754 #if EXPLAIN_INSTANCE_RESOLUTION
755     {'x', 1, "Explain instance resolution",           &showInstRes},
756 #endif
757 #if MULTI_INST
758     {'m', 0, "Use multi instance resolution",         &multiInstRes},
759 #endif
760 #if DEBUG_CODE
761     {'D', 1, "Debug: show generated G code",          &debugCode},
762 #endif
763 #if DEBUG_SHOWSC
764     {'S', 1, "Debug: show generated SC code",         &debugSC},
765 #endif
766 #if 0
767     {'f', 1, "Terminate evaluation on first error",   &failOnError},
768     {'u', 1, "Use \"show\" to display results",       &useShow},
769     {'i', 1, "Chase imports while loading modules",   &chaseImports}, 
770 #endif
771     {0,   0, 0,                                       0}
772 };
773
774 static Void local set() {               /* change command line options from*/
775     String s;                           /* Hugs command line               */
776
777     if ((s=readFilename())!=0) {
778         do {
779             if (!processOption(s)) {
780                 ERRMSG(0) "Option string must begin with `+' or `-'"
781                 EEND;
782             }
783         } while ((s=readFilename())!=0);
784 #if USE_REGISTRY
785         writeRegString("Options", optionsToStr());
786 #endif
787     }
788     else
789         optionInfo();
790 }
791
792 /* --------------------------------------------------------------------------
793  * Change directory command:
794  * ------------------------------------------------------------------------*/
795
796 static Void local changeDir() {         /* change directory                */
797     String s = readFilename();
798     if (s && chdir(s)) {
799         ERRMSG(0) "Unable to change to directory \"%s\"", s
800         EEND;
801     }
802 }
803
804 /* --------------------------------------------------------------------------
805  * Loading project and script files:
806  * ------------------------------------------------------------------------*/
807
808 static Void local loadProject(s)        /* Load project file               */
809 String s; {
810     clearProject();
811     currProject = s;
812     projInput(currProject);
813     scriptFile = currProject;
814     forgetScriptsFrom(1);
815     while ((s=readFilename())!=0)
816         addStackEntry(s);
817     if (namesUpto<=1) {
818         ERRMSG(0) "Empty project file"
819         EEND;
820     }
821     scriptFile    = 0;
822     projectLoaded = TRUE;
823 }
824
825 static Void local clearProject() {      /* clear name for current project  */
826     if (currProject)
827         free(currProject);
828     currProject   = 0;
829     projectLoaded = FALSE;
830 #if HUGS_FOR_WINDOWS
831     setLastEdit((String)0,0);
832 #endif
833 }
834
835
836
837 static Void local makeStackEntry ( ScriptInfo* ent, String iname )
838 {
839    Bool   ok, fromObj;
840    Bool   sAvail, iAvail, oAvail;
841    Time   sTime,  iTime,  oTime;
842    Long   sSize,  iSize,  oSize;
843    String path,   sExt;
844
845    ok = findFilesForModule (
846            iname,
847            &path,
848            &sExt,
849            &sAvail, &sTime, &sSize,
850            &iAvail, &iTime, &iSize,
851            &oAvail, &oTime, &oSize
852         );
853    if (!ok) {
854       ERRMSG(0) 
855         /* "Can't file source or object+interface for module \"%s\"", */
856          "Can't file source for module \"%s\"",
857          iname
858       EEND;
859    }
860    /* findFilesForModule should enforce this */
861    if (!(sAvail || (oAvail && iAvail))) 
862       internal("chase");
863    /* Load objects in preference to sources if both are available */
864    /* 11 Oct 99: disable object loading in the interim.
865       Will probably only reinstate when HEP becomes available.
866    fromObj = sAvail
867                 ? (oAvail && iAvail && timeEarlier(sTime,oTime))
868                 : TRUE;
869    */
870    fromObj = FALSE;
871
872    /* ToDo: namesUpto overflow */
873    ent->modName     = strCopy(iname);
874    ent->details     = TRUE;
875    ent->path        = path;
876    ent->fromSource  = !fromObj;
877    ent->srcExt      = sExt;
878    ent->postponed   = FALSE;
879    ent->lastChange  = sTime; /* ToDo: is this right? */
880    ent->size        = fromObj ? iSize : sSize;
881    ent->oSize       = fromObj ? oSize : 0;
882    ent->objLoaded   = FALSE;
883 }
884
885
886
887 static Void nukeEnding( String s )
888 {
889     Int l = strlen(s);
890     if (l > 2 && strncmp(s+l-2,".o"  ,3)==0) s[l-2] = 0; else
891     if (l > 3 && strncmp(s+l-3,".hi" ,3)==0) s[l-3] = 0; else
892     if (l > 3 && strncmp(s+l-3,".hs" ,3)==0) s[l-3] = 0; else
893     if (l > 4 && strncmp(s+l-4,".lhs",4)==0) s[l-4] = 0; else
894     if (l > 4 && strncmp(s+l-4,".dll",4)==0) s[l-4] = 0; else
895     if (l > 4 && strncmp(s+l-4,".DLL",4)==0) s[l-4] = 0;
896 }
897
898 static Void local addStackEntry(s)     /* Add script to list of scripts    */
899 String s; {                            /* to be read in ...                */
900     String s2;
901     Bool   found;
902     Int    i;
903
904     if (namesUpto>=NUM_SCRIPTS) {
905         ERRMSG(0) "Too many module files (maximum of %d allowed)",
906                   NUM_SCRIPTS
907         EEND;
908     }
909
910     s = strCopy(s);
911     nukeEnding(s);
912     for (s2 = s; *s2; s2++)
913        if (*s2 == SLASH && *(s2+1)) s = s2+1;
914
915     found = FALSE;
916     for (i = 0; i < namesUpto; i++)
917        if (strcmp(scriptInfo[i].modName,s)==0)
918           found = TRUE;
919
920     if (!found) {
921        makeStackEntry ( &scriptInfo[namesUpto], strCopy(s) );
922        namesUpto++;
923     }
924     free(s);
925 }
926
927 /* Return TRUE if no imports were needed; FALSE otherwise. */
928 static Bool local addScript(stacknum)   /* read single file                */
929 Int stacknum; {
930    static char name[FILENAME_MAX+1];
931    Int len = scriptInfo[stacknum].size;
932
933 #if HUGS_FOR_WINDOWS                    /* Set clock cursor while loading  */
934     allowBreak();
935     SetCursor(LoadCursor(NULL, IDC_WAIT));
936 #endif
937
938     //   setLastEdit(name,0);
939
940    nameObj[0] = 0;
941    strcpy(name, scriptInfo[stacknum].path);
942    strcat(name, scriptInfo[stacknum].modName);
943    if (scriptInfo[stacknum].fromSource)
944       strcat(name, scriptInfo[stacknum].srcExt); else
945       strcat(name, ".hi");
946
947    scriptFile = name;
948
949    if (scriptInfo[stacknum].fromSource) {
950       if (lastWasObject) finishInterfaces();
951       lastWasObject = FALSE;
952       Printf("Reading script \"%s\":\n",name);
953       needsImports = FALSE;
954       parseScript(name,len);
955       if (needsImports) return FALSE;
956       checkDefns();
957       typeCheckDefns();
958       compileDefns();
959    } else {
960       Printf("Reading  iface \"%s\":\n", name);
961       scriptFile = name;
962       needsImports = FALSE;
963
964       // set nameObj for the benefit of openGHCIface
965       strcpy(nameObj, scriptInfo[stacknum].path);
966       strcat(nameObj, scriptInfo[stacknum].modName);
967       strcat(nameObj, DLL_ENDING);
968       sizeObj = scriptInfo[stacknum].oSize;
969
970       loadInterface(name,len);
971       scriptFile = 0;
972       lastWasObject = TRUE;
973       if (needsImports) return FALSE;
974    }
975  
976    scriptFile = 0;
977    preludeLoaded = TRUE;
978    return TRUE;
979 }
980
981
982 Bool chase(imps)                        /* Process list of import requests */
983 List imps; {
984     Int    dstPosn;
985     ScriptInfo tmp;
986     Int    origPos  = numScripts;       /* keep track of original position */
987     String origName = scriptInfo[origPos].modName;
988     for (; nonNull(imps); imps=tl(imps)) {
989         String iname = textToStr(textOf(hd(imps)));
990         Int    i     = 0;
991         for (; i<namesUpto; i++)
992             if (strcmp(scriptInfo[i].modName,iname)==0)
993                 break;
994         //fprintf(stderr, "import name = %s   num = %d\n", iname, i );
995
996         if (i<namesUpto) {
997            /* We should have filled in the details of each module
998               the first time we hear about it.
999            */
1000            assert(scriptInfo[i].details);
1001         }
1002
1003         if (i>=origPos) {               /* Neither loaded or queued        */
1004             String theName;
1005             Time   theTime;
1006             Bool   thePost;
1007             Bool   theFS;
1008
1009             needsImports = TRUE;
1010             if (scriptInfo[origPos].fromSource)
1011                scriptInfo[origPos].postponed  = TRUE;
1012
1013             if (i==namesUpto) {         /* Name not found (i==namesUpto)   */
1014                  /* Find out where it lives, whether source or object, etc */
1015                makeStackEntry ( &scriptInfo[i], iname );
1016                namesUpto++;
1017             }
1018             else 
1019             if (scriptInfo[i].postponed && scriptInfo[i].fromSource) {
1020                                         /* Check for recursive dependency  */
1021                 ERRMSG(0)
1022                   "Recursive import dependency between \"%s\" and \"%s\"",
1023                   scriptInfo[origPos].modName, iname
1024                 EEND;
1025             }
1026             /* Move stack entry i to somewhere below origPos.  If i denotes 
1027              * an object, destination is immediately below origPos.  
1028              * Otherwise, it's underneath the queue of objects below origPos.
1029              */
1030             dstPosn = origPos-1;
1031             if (scriptInfo[i].fromSource)
1032                while (!scriptInfo[dstPosn].fromSource && dstPosn > 0)
1033                   dstPosn--;
1034
1035             dstPosn++;
1036             tmp = scriptInfo[i];
1037             for (; i > dstPosn; i--) scriptInfo[i] = scriptInfo[i-1];
1038             scriptInfo[dstPosn] = tmp;
1039             if (dstPosn < nextNumScripts) nextNumScripts = dstPosn;
1040             origPos++;
1041         }
1042     }
1043     return needsImports;
1044 }
1045
1046 static Void local forgetScriptsFrom(scno)/* remove scripts from system     */
1047 Script scno; {
1048     Script i;
1049 #if 0
1050     for (i=scno; i<namesUpto; ++i)
1051         if (scriptName[i])
1052             free(scriptName[i]);
1053 #endif
1054     dropScriptsFrom(scno-1);
1055     namesUpto = scno;
1056     if (numScripts>namesUpto)
1057         numScripts = scno;
1058 }
1059
1060 /* --------------------------------------------------------------------------
1061  * Commands for loading and removing script files:
1062  * ------------------------------------------------------------------------*/
1063
1064 static Void local load() {           /* read filenames from command line   */
1065     String s;                        /* and add to list of scripts waiting */
1066                                      /* to be read                         */
1067     while ((s=readFilename())!=0)
1068         addStackEntry(s);
1069     readScripts(1);
1070 }
1071
1072 static Void local project() {          /* read list of script names from   */
1073     String s;                          /* project file                     */
1074
1075     if ((s=readFilename()) || currProject) {
1076         if (!s)
1077             s = strCopy(currProject);
1078         else if (readFilename()) {
1079             ERRMSG(0) "Too many project files"
1080             EEND;
1081         }
1082         else
1083             s = strCopy(s);
1084     }
1085     else {
1086         ERRMSG(0) "No project filename specified"
1087         EEND;
1088     }
1089     loadProject(s);
1090     readScripts(1);
1091 }
1092
1093 static Void local readScripts(n)        /* Reread current list of scripts, */
1094 Int n; {                                /* loading everything after and    */
1095     Time timeStamp;                     /* including the first script which*/
1096     Long fileSize;                      /* has been either changed or added*/
1097     static char name[FILENAME_MAX+1];
1098
1099     lastWasObject = FALSE;
1100     ppSmStack("readscripts-begin");
1101 #if HUGS_FOR_WINDOWS
1102     SetCursor(LoadCursor(NULL, IDC_WAIT));
1103 #endif
1104
1105 #if 0
1106     for (; n<numScripts; n++) {         /* Scan previously loaded scripts  */
1107         ppSmStack("readscripts-loop1");
1108         getFileInfo(scriptName[n], &timeStamp, &fileSize);
1109         if (timeChanged(timeStamp,lastChange[n])) {
1110             dropScriptsFrom(n-1);
1111             numScripts = n;
1112             break;
1113         }
1114     }
1115     for (; n<NUM_SCRIPTS; n++)          /* No scripts have been postponed  */
1116         postponed[n] = FALSE;           /* at this stage                   */
1117     numScripts = 0;
1118
1119     while (numScripts<namesUpto) {      /* Process any remaining scripts   */
1120         ppSmStack("readscripts-loop2");
1121         getFileInfo(scriptName[numScripts], &timeStamp, &fileSize);
1122         timeSet(lastChange[numScripts],timeStamp);
1123         if (numScripts>0)               /* no new script for prelude       */
1124             startNewScript(scriptName[numScripts]);
1125         if (addScript(scriptName[numScripts],fileSize))
1126             numScripts++;
1127         else
1128             dropScriptsFrom(numScripts-1);
1129     }
1130 #endif
1131
1132     interface(RESET);
1133
1134     for (; n<numScripts; n++) {
1135         ppSmStack("readscripts-loop2");
1136         strcpy(name, scriptInfo[n].path);
1137         strcat(name, scriptInfo[n].modName);
1138         if (scriptInfo[n].fromSource)
1139            strcat(name, scriptInfo[n].srcExt); else
1140            strcat(name, ".hi");  //ToDo: should be .o
1141         getFileInfo(name,&timeStamp, &fileSize);
1142         if (timeChanged(timeStamp,scriptInfo[n].lastChange)) {
1143            dropScriptsFrom(n-1);
1144            numScripts = n;
1145            break;
1146         }
1147     }
1148     for (; n<NUM_SCRIPTS; n++)
1149         scriptInfo[n].postponed = FALSE;
1150
1151     //numScripts = 0;
1152
1153     while (numScripts < namesUpto) {
1154 ppSmStack ( "readscripts-loop2" );
1155
1156        if (scriptInfo[numScripts].fromSource) {
1157
1158           if (numScripts>0)
1159               startNewScript(scriptInfo[numScripts].modName);
1160           nextNumScripts = NUM_SCRIPTS; //bogus initialisation
1161           if (addScript(numScripts)) {
1162              numScripts++;
1163 assert(nextNumScripts==NUM_SCRIPTS);
1164           }
1165           else
1166              dropScriptsFrom(numScripts-1);
1167
1168        } else {
1169       
1170           if (scriptInfo[numScripts].objLoaded) {
1171              numScripts++;
1172           } else {
1173              scriptInfo[numScripts].objLoaded = TRUE;
1174              /* new */
1175              if (numScripts>0)
1176                  startNewScript(scriptInfo[numScripts].modName);
1177              /* end */
1178              nextNumScripts = NUM_SCRIPTS;
1179              if (addScript(numScripts)) {
1180                 numScripts++;
1181 assert(nextNumScripts==NUM_SCRIPTS);
1182              } else {
1183                 //while (!scriptInfo[numScripts].fromSource && numScripts > 0)
1184                 //   numScripts--;
1185                 //if (scriptInfo[numScripts].fromSource)
1186                 //   numScripts++;
1187                 numScripts = nextNumScripts;
1188 assert(nextNumScripts<NUM_SCRIPTS);
1189              }
1190           }
1191        }
1192 if (numScripts==namesUpto) ppSmStack( "readscripts-final") ;
1193     }
1194
1195     finishInterfaces();
1196
1197     { Int  m     = namesUpto-1;
1198       Text mtext = findText(scriptInfo[m].modName);
1199       /* Commented out till we understand what
1200        * this is trying to do.
1201        * Problem, you cant find a module till later.
1202        */
1203 #if 0
1204        setCurrModule(findModule(mtext)); 
1205 #endif
1206       evalModule = mtext;
1207     }
1208
1209     
1210
1211     if (listScripts)
1212         whatScripts();
1213     if (numScripts<=1)
1214         setLastEdit((String)0, 0);
1215     ppSmStack("readscripts-end  ");
1216 }
1217
1218 static Void local whatScripts() {       /* list scripts in current session */
1219     int i;
1220     Printf("\nHugs session for:");
1221     if (projectLoaded)
1222         Printf(" (project: %s)",currProject);
1223     for (i=0; i<numScripts; ++i)
1224       Printf("\n%s%s",scriptInfo[i].path, scriptInfo[i].modName);
1225     Putchar('\n');
1226 }
1227
1228 /* --------------------------------------------------------------------------
1229  * Access to external editor:
1230  * ------------------------------------------------------------------------*/
1231
1232 static Void local editor() {            /* interpreter-editor interface    */
1233     String newFile  = readFilename();
1234     if (newFile) {
1235         setLastEdit(newFile,0);
1236         if (readFilename()) {
1237             ERRMSG(0) "Multiple filenames not permitted"
1238             EEND;
1239         }
1240     }
1241     runEditor();
1242 }
1243
1244 static Void local find() {              /* edit file containing definition */
1245 #if 0
1246 This just plain wont work no more.
1247 ToDo: Fix!
1248     String nm = readFilename();         /* of specified name               */
1249     if (!nm) {
1250         ERRMSG(0) "No name specified"
1251         EEND;
1252     }
1253     else if (readFilename()) {
1254         ERRMSG(0) "Multiple names not permitted"
1255         EEND;
1256     }
1257     else {
1258         Text t;
1259         Cell c;
1260         setCurrModule(findEvalModule());
1261         startNewScript(0);
1262         if (nonNull(c=findTycon(t=findText(nm)))) {
1263             if (startEdit(tycon(c).line,scriptName[scriptThisTycon(c)])) {
1264                 readScripts(1);
1265             }
1266         } else if (nonNull(c=findName(t))) {
1267             if (startEdit(name(c).line,scriptName[scriptThisName(c)])) {
1268                 readScripts(1);
1269             }
1270         } else {
1271             ERRMSG(0) "No current definition for name \"%s\"", nm
1272             EEND;
1273         }
1274     }
1275 #endif
1276 }
1277
1278 static Void local runEditor() {         /* run editor on script lastEdit   */
1279     if (startEdit(lastEdLine,lastEdit)) /* at line lastEdLine              */
1280         readScripts(1);
1281 }
1282
1283 static Void local setLastEdit(fname,line)/* keep name of last file to edit */
1284 String fname;
1285 Int    line; {
1286     if (lastEdit)
1287         free(lastEdit);
1288     lastEdit = strCopy(fname);
1289     lastEdLine = line;
1290 #if HUGS_FOR_WINDOWS
1291     DrawStatusLine(hWndMain);           /* Redo status line                */
1292 #endif
1293 }
1294
1295 /* --------------------------------------------------------------------------
1296  * Read and evaluate an expression:
1297  * ------------------------------------------------------------------------*/
1298
1299 static Void local setModule(){/*set module in which to evaluate expressions*/
1300     String s = readFilename();
1301     if (!s) s = "";              /* :m clears the current module selection */
1302     evalModule = findText(s);
1303     setLastEdit(fileOfModule(findEvalModule()),0);
1304 }
1305
1306 static Module local findEvalModule() { /*Module in which to eval expressions*/
1307     Module m = findModule(evalModule); 
1308     if (isNull(m))
1309         m = lastModule();
1310     return m;
1311 }
1312
1313 static Void local evaluator() {        /* evaluate expr and print value    */
1314     Type  type, bd;
1315     Kinds ks   = NIL;
1316
1317     setCurrModule(findEvalModule());
1318     scriptFile = 0;
1319     startNewScript(0);                 /* Enables recovery of storage      */
1320                                        /* allocated during evaluation      */
1321     parseExp();
1322     checkExp();
1323     defaultDefns = evalDefaults;
1324     type         = typeCheckExp(TRUE);
1325     if (isPolyType(type)) {
1326         ks = polySigOf(type);
1327         bd = monotypeOf(type);
1328     }
1329     else
1330         bd = type;
1331
1332     if (whatIs(bd)==QUAL) {
1333         ERRMSG(0) "Unresolved overloading" ETHEN
1334         ERRTEXT   "\n*** Type       : "    ETHEN ERRTYPE(type);
1335         ERRTEXT   "\n*** Expression : "    ETHEN ERREXPR(inputExpr);
1336         ERRTEXT   "\n"
1337         EEND;
1338     }
1339   
1340 #ifdef WANT_TIMER
1341     updateTimers();
1342 #endif
1343
1344 #if 1
1345     if (typeMatches(type,ap(typeIO,typeUnit))) {
1346         inputExpr = ap(nameRunIO,inputExpr);
1347         evalExp();
1348         Putchar('\n');
1349     } else {
1350         Cell d = provePred(ks,NIL,ap(classShow,bd));
1351         if (isNull(d)) {
1352             ERRMSG(0) "Cannot find \"show\" function for:" ETHEN
1353             ERRTEXT   "\n*** expression : "   ETHEN ERREXPR(inputExpr);
1354             ERRTEXT   "\n*** of type    : "   ETHEN ERRTYPE(type);
1355             ERRTEXT   "\n"
1356             EEND;
1357         }
1358         inputExpr = ap2(findName(findText("show")),d,inputExpr);
1359         inputExpr = ap(findName(findText("putStr")), inputExpr);
1360         inputExpr = ap(nameRunIO, inputExpr);
1361
1362         evalExp(); printf("\n");
1363         if (addType) {
1364             printf(" :: ");
1365             printType(stdout,type);
1366             Putchar('\n');
1367         }
1368     }
1369
1370 #else
1371
1372    printf ( "result type is " );
1373    printType ( stdout, type );
1374    printf ( "\n" );
1375    evalExp();
1376    printf ( "\n" );
1377
1378 #endif
1379
1380 }
1381
1382 static Void local stopAnyPrinting() {  /* terminate printing of expression,*/
1383     if (printing) {                    /* after successful termination or  */
1384         printing = FALSE;              /* runtime error (e.g. interrupt)   */
1385         Putchar('\n');
1386         if (showStats) {
1387 #define plural(v)   v, (v==1?"":"s")
1388             Printf("%lu cell%s",plural(numCells));
1389             if (numGcs>0)
1390                 Printf(", %u garbage collection%s",plural(numGcs));
1391             Printf(")\n");
1392 #undef plural
1393         }
1394         FlushStdout();
1395         garbageCollect();
1396     }
1397 }
1398
1399 /* --------------------------------------------------------------------------
1400  * Print type of input expression:
1401  * ------------------------------------------------------------------------*/
1402
1403 static Void local showtype() {         /* print type of expression (if any)*/
1404     Cell type;
1405
1406     setCurrModule(findEvalModule());
1407     startNewScript(0);                 /* Enables recovery of storage      */
1408                                        /* allocated during evaluation      */
1409     parseExp();
1410     checkExp();
1411     defaultDefns = evalDefaults;
1412     type = typeCheckExp(FALSE);
1413     printExp(stdout,inputExpr);
1414     Printf(" :: ");
1415     printType(stdout,type);
1416     Putchar('\n');
1417 }
1418
1419
1420 static Void local browseit(mod,t)
1421 Module mod; 
1422 String t; {
1423     if (nonNull(mod)) {
1424         Cell cs;
1425         Printf("module %s where\n",textToStr(module(mod).text));
1426         for (cs = module(mod).names; nonNull(cs); cs=tl(cs)) {
1427             Name nm = hd(cs);
1428             /* only look at things defined in this module */
1429             if (name(nm).mod == mod) {
1430                 /* unwanted artifacts, like lambda lifted values,
1431                    are in the list of names, but have no types */
1432                 if (nonNull(name(nm).type)) {
1433                     printExp(stdout,nm);
1434                     Printf(" :: ");
1435                     printType(stdout,name(nm).type);
1436                     if (isCfun(nm)) {
1437                         Printf("  -- data constructor");
1438                     } else if (isMfun(nm)) {
1439                         Printf("  -- class member");
1440                     } else if (isSfun(nm)) {
1441                         Printf("  -- selector function");
1442                     }
1443                     Printf("\n");
1444                 }
1445             }
1446         }
1447     } else {
1448       if (isNull(mod)) {
1449         Printf("Unknown module %s\n",t);
1450       }
1451     }
1452 }
1453
1454 static Void local browse() {            /* browse modules                  */
1455     Int    count = 0;                   /* or give menu of commands        */
1456     String s;
1457
1458     setCurrModule(findEvalModule());
1459     startNewScript(0);                  /* for recovery of storage         */
1460     for (; (s=readFilename())!=0; count++) {
1461         browseit(findModule(findText(s)),s);
1462     }
1463     if (count == 0) {
1464         whatScripts();
1465     }
1466 }
1467
1468 #if EXPLAIN_INSTANCE_RESOLUTION
1469 static Void local xplain() {         /* print type of expression (if any)*/
1470     Cell type;
1471     Cell d;
1472     Bool sir = showInstRes;
1473
1474     setCurrModule(findEvalModule());
1475     startNewScript(0);                 /* Enables recovery of storage      */
1476                                        /* allocated during evaluation      */
1477     parseContext();
1478     checkContext();
1479     showInstRes = TRUE;
1480     d = provePred(NIL,NIL,hd(inputContext));
1481     if (isNull(d)) {
1482         fprintf(stdout, "not Sat\n");
1483     } else {
1484         fprintf(stdout, "Sat\n");
1485     }
1486     showInstRes = sir;
1487 }
1488 #endif
1489
1490 /* --------------------------------------------------------------------------
1491  * Enhanced help system:  print current list of scripts or give information
1492  * about an object.
1493  * ------------------------------------------------------------------------*/
1494
1495 static String local objToStr(m,c)
1496 Module m;
1497 Cell   c; {
1498 #if 1 || DISPLAY_QUANTIFIERS
1499     static char newVar[60];
1500     switch (whatIs(c)) {
1501         case NAME  : if (m == name(c).mod) {
1502                          sprintf(newVar,"%s", textToStr(name(c).text));
1503                      } else {
1504                          sprintf(newVar,"%s.%s",
1505                                         textToStr(module(name(c).mod).text),
1506                                         textToStr(name(c).text));
1507                      }
1508                      break;
1509
1510         case TYCON : if (m == tycon(c).mod) {
1511                          sprintf(newVar,"%s", textToStr(tycon(c).text));
1512                      } else {
1513                          sprintf(newVar,"%s.%s",
1514                                         textToStr(module(tycon(c).mod).text),
1515                                         textToStr(tycon(c).text));
1516                      }
1517                      break;
1518
1519         case CLASS : if (m == cclass(c).mod) {
1520                          sprintf(newVar,"%s", textToStr(cclass(c).text));
1521                      } else {
1522                          sprintf(newVar,"%s.%s",
1523                                         textToStr(module(cclass(c).mod).text),
1524                                         textToStr(cclass(c).text));
1525                      }
1526                      break;
1527
1528         default    : internal("objToStr");
1529     }
1530     return newVar;
1531 #else
1532     static char newVar[33];
1533     switch (whatIs(c)) {
1534         case NAME  : sprintf(newVar,"%s", textToStr(name(c).text));
1535                      break;
1536
1537         case TYCON : sprintf(newVar,"%s", textToStr(tycon(c).text));
1538                      break;
1539
1540         case CLASS : sprintf(newVar,"%s", textToStr(cclass(c).text));
1541                      break;
1542
1543         default    : internal("objToStr");
1544     }
1545     return newVar;
1546 #endif
1547 }
1548
1549 extern Name nameHw;
1550
1551 static Void local dumpStg( void ) {       /* print STG stuff                 */
1552     String s;
1553     Text   t;
1554     Name   n;
1555     Int    i;
1556     Cell   v;                           /* really StgVar */
1557     setCurrModule(findEvalModule());
1558     startNewScript(0);
1559     for (; (s=readFilename())!=0;) {
1560         t = findText(s);
1561         v = n = NIL;
1562         /* find the name while ignoring module scopes */
1563         for (i=NAMEMIN; i<nameHw; i++)
1564            if (name(i).text == t) n = i;
1565
1566         /* perhaps it's an "idNNNNNN" thing? */
1567         if (isNull(n) &&
1568             strlen(s) >= 3 && 
1569             s[0]=='i' && s[1]=='d' && isdigit(s[2])) {
1570            v = 0;
1571            i = 2;
1572            while (isdigit(s[i])) {
1573               v = v * 10 + (s[i]-'0');
1574               i++;
1575            }
1576            v = -v;
1577            n = nameFromStgVar(v);
1578         }
1579
1580         if (isNull(n) && whatIs(v)==STGVAR) {
1581            Printf ( "\n{- `%s' has no nametable entry -}\n", s );
1582            printStg(stderr, v );
1583         } else
1584         if (isNull(n)) {
1585            Printf ( "Unknown reference `%s'\n", s );
1586         } else
1587         if (!isName(n)) {
1588            Printf ( "Not a Name: `%s'\n", s );
1589         } else
1590         if (isNull(name(n).stgVar)) {
1591            Printf ( "Doesn't have a STG tree: %s\n", s );
1592         } else {
1593            Printf ( "\n{- stgVar of `%s' is id%d -}\n", s, -name(n).stgVar);
1594            printStg(stderr, name(n).stgVar);
1595         }
1596     }
1597 }
1598
1599 static Void local info() {              /* describe objects                */
1600     Int    count = 0;                   /* or give menu of commands        */
1601     String s;
1602
1603     setCurrModule(findEvalModule());
1604     startNewScript(0);                  /* for recovery of storage         */
1605     for (; (s=readFilename())!=0; count++) {
1606         describe(findText(s));
1607     }
1608     if (count == 0) {
1609         whatScripts();
1610     }
1611 }
1612
1613
1614 static Void local describe(t)           /* describe an object              */
1615 Text t; {
1616     Tycon  tc  = findTycon(t);
1617     Class  cl  = findClass(t);
1618     Name   nm  = findName(t);
1619
1620     if (nonNull(tc)) {                  /* as a type constructor           */
1621         Type t = tc;
1622         Int  i;
1623         Inst in;
1624         for (i=0; i<tycon(tc).arity; ++i) {
1625             t = ap(t,mkOffset(i));
1626         }
1627         Printf("-- type constructor");
1628         if (kindExpert) {
1629             Printf(" with kind ");
1630             printKind(stdout,tycon(tc).kind);
1631         }
1632         Putchar('\n');
1633         switch (tycon(tc).what) {
1634             case SYNONYM      : Printf("type ");
1635                                 printType(stdout,t);
1636                                 Printf(" = ");
1637                                 printType(stdout,tycon(tc).defn);
1638                                 break;
1639
1640             case NEWTYPE      :
1641             case DATATYPE     : {   List cs = tycon(tc).defn;
1642                                     if (tycon(tc).what==DATATYPE) {
1643                                         Printf("data ");
1644                                     } else {
1645                                         Printf("newtype ");
1646                                     }
1647                                     printType(stdout,t);
1648                                     Putchar('\n');
1649                                     mapProc(printSyntax,cs);
1650                                     if (hasCfun(cs)) {
1651                                         Printf("\n-- constructors:");
1652                                     }
1653                                     for (; hasCfun(cs); cs=tl(cs)) {
1654                                         Putchar('\n');
1655                                         printExp(stdout,hd(cs));
1656                                         Printf(" :: ");
1657                                         printType(stdout,name(hd(cs)).type);
1658                                     }
1659                                     if (nonNull(cs)) {
1660                                         Printf("\n-- selectors:");
1661                                     }
1662                                     for (; nonNull(cs); cs=tl(cs)) {
1663                                         Putchar('\n');
1664                                         printExp(stdout,hd(cs));
1665                                         Printf(" :: ");
1666                                         printType(stdout,name(hd(cs)).type);
1667                                     }
1668                                 }
1669                                 break;
1670
1671             case RESTRICTSYN  : Printf("type ");
1672                                 printType(stdout,t);
1673                                 Printf(" = <restricted>");
1674                                 break;
1675         }
1676         Putchar('\n');
1677         if (nonNull(in=findFirstInst(tc))) {
1678             Printf("\n-- instances:\n");
1679             do {
1680                 showInst(in);
1681                 in = findNextInst(tc,in);
1682             } while (nonNull(in));
1683         }
1684         Putchar('\n');
1685     }
1686
1687     if (nonNull(cl)) {                  /* as a class                      */
1688         List  ins = cclass(cl).instances;
1689         Kinds ks  = cclass(cl).kinds;
1690         if (nonNull(ks) && isNull(tl(ks)) && hd(ks)==STAR) {
1691             Printf("-- type class");
1692         } else {
1693             Printf("-- constructor class");
1694             if (kindExpert) {
1695                 Printf(" with arity ");
1696                 printKinds(stdout,ks);
1697             }
1698         }
1699         Putchar('\n');
1700         mapProc(printSyntax,cclass(cl).members);
1701         Printf("class ");
1702         if (nonNull(cclass(cl).supers)) {
1703             printContext(stdout,cclass(cl).supers);
1704             Printf(" => ");
1705         }
1706         printPred(stdout,cclass(cl).head);
1707
1708         if (nonNull(cclass(cl).fds)) {
1709             List   fds = cclass(cl).fds;
1710             String pre = " | ";
1711             for (; nonNull(fds); fds=tl(fds)) {
1712                 Printf(pre);
1713                 printFD(stdout,hd(fds));
1714                 pre = ", ";
1715             }
1716         }
1717
1718         if (nonNull(cclass(cl).members)) {
1719             List ms = cclass(cl).members;
1720             Printf(" where");
1721             do {
1722                 Type t = name(hd(ms)).type;
1723                 if (isPolyType(t)) {
1724                     t = monotypeOf(t);
1725                 }
1726                 Printf("\n  ");
1727                 printExp(stdout,hd(ms));
1728                 Printf(" :: ");
1729                 if (isNull(tl(fst(snd(t))))) {
1730                     t = snd(snd(t));
1731                 } else {
1732                     t = ap(QUAL,pair(tl(fst(snd(t))),snd(snd(t))));
1733                 }
1734                 printType(stdout,t);
1735                 ms = tl(ms);
1736             } while (nonNull(ms));
1737         }
1738         Putchar('\n');
1739         if (nonNull(ins)) {
1740             Printf("\n-- instances:\n");
1741             do {
1742                 showInst(hd(ins));
1743                 ins = tl(ins);
1744             } while (nonNull(ins));
1745         }
1746         Putchar('\n');
1747     }
1748
1749     if (nonNull(nm)) {                  /* as a function/name              */
1750         printSyntax(nm);
1751         printExp(stdout,nm);
1752         Printf(" :: ");
1753         if (nonNull(name(nm).type)) {
1754             printType(stdout,name(nm).type);
1755         } else {
1756             Printf("<unknown type>");
1757         }
1758
1759         if (isCfun(nm)) {
1760             Printf("  -- data constructor");
1761         } else if (isMfun(nm)) {
1762             Printf("  -- class member");
1763         } else if (isSfun(nm)) {
1764             Printf("  -- selector function");
1765         }
1766         Printf("\n\n");
1767     }
1768
1769
1770     if (isNull(tc) && isNull(cl) && isNull(nm)) {
1771         Printf("Unknown reference `%s'\n",textToStr(t));
1772     }
1773 }
1774
1775 static Void local printSyntax(nm)
1776 Name nm; {
1777     Syntax sy = syntaxOf(nm);
1778     Text   t  = name(nm).text;
1779     String s  = textToStr(t);
1780     if (sy != defaultSyntax(t)) {
1781         Printf("infix");
1782         switch (assocOf(sy)) {
1783             case LEFT_ASS  : Putchar('l'); break;
1784             case RIGHT_ASS : Putchar('r'); break;
1785             case NON_ASS   : break;
1786         }
1787         Printf(" %i ",precOf(sy));
1788         if (isascii((int)(*s)) && isalpha((int)(*s))) {
1789             Printf("`%s`",s);
1790         } else {
1791             Printf("%s",s);
1792         }
1793         Putchar('\n');
1794     }
1795 }
1796
1797 static Void local showInst(in)          /* Display instance decl header    */
1798 Inst in; {
1799     Printf("instance ");
1800     if (nonNull(inst(in).specifics)) {
1801         printContext(stdout,inst(in).specifics);
1802         Printf(" => ");
1803     }
1804     printPred(stdout,inst(in).head);
1805     Putchar('\n');
1806 }
1807
1808 /* --------------------------------------------------------------------------
1809  * List all names currently in scope:
1810  * ------------------------------------------------------------------------*/
1811
1812 static Void local listNames() {         /* list names matching optional pat*/
1813     String pat   = readFilename();
1814     List   names = NIL;
1815     Int    width = getTerminalWidth() - 1;
1816     Int    count = 0;
1817     Int    termPos;
1818     Module mod   = findEvalModule();
1819
1820     if (pat) {                          /* First gather names to list      */
1821         do {
1822             names = addNamesMatching(pat,names);
1823         } while ((pat=readFilename())!=0);
1824     } else {
1825         names = addNamesMatching((String)0,names);
1826     }
1827     if (isNull(names)) {                /* Then print them out             */
1828         ERRMSG(0) "No names selected"
1829         EEND;
1830     }
1831     for (termPos=0; nonNull(names); names=tl(names)) {
1832         String s = objToStr(mod,hd(names));
1833         Int    l = strlen(s);
1834         if (termPos+1+l>width) { 
1835             Putchar('\n');       
1836             termPos = 0;         
1837         } else if (termPos>0) {  
1838             Putchar(' ');        
1839             termPos++;           
1840         }
1841         Printf("%s",s);
1842         termPos += l;
1843         count++;
1844     }
1845     Printf("\n(%d names listed)\n", count);
1846 }
1847
1848 /* --------------------------------------------------------------------------
1849  * print a prompt and read a line of input:
1850  * ------------------------------------------------------------------------*/
1851
1852 static Void local promptForInput(moduleName)
1853 String moduleName; {
1854     char promptBuffer[1000];
1855 #if 1
1856     /* This is portable but could overflow buffer */
1857     sprintf(promptBuffer,prompt,moduleName);
1858 #else
1859     /* Works on ANSI C - but pre-ANSI compilers return a pointer to
1860      * promptBuffer instead.
1861      */
1862     if (sprintf(promptBuffer,prompt,moduleName) >= 1000) {
1863         /* Reset prompt to a safe default to avoid an infinite loop */
1864         free(prompt);
1865         prompt = strCopy("? ");
1866         internal("Combined prompt and evaluation module name too long");
1867     }
1868 #endif
1869     if (autoMain)
1870        stringInput("main\0"); else
1871        consoleInput(promptBuffer);
1872 }
1873
1874 /* --------------------------------------------------------------------------
1875  * main read-eval-print loop, with error trapping:
1876  * ------------------------------------------------------------------------*/
1877
1878 static jmp_buf catch_error;             /* jump buffer for error trapping  */
1879
1880 static Void local interpreter(argc,argv)/* main interpreter loop           */
1881 Int    argc;
1882 String argv[]; {
1883     Int errorNumber = setjmp(catch_error);
1884
1885     if (errorNumber && autoMain) {
1886        fprintf(stderr, "hugs +Q: compilation failed -- can't run `main'\n" );
1887        exit(1);
1888     }
1889
1890     breakOn(TRUE);                      /* enable break trapping           */
1891     if (numScripts==0) {                /* only succeeds on first time,    */
1892         if (errorNumber)                /* before prelude has been loaded  */
1893             fatal("Unable to load prelude");
1894         initialize(argc,argv);
1895         forHelp();
1896     }
1897
1898     /* initialize calls startupHaskell, which trashes our signal handlers */
1899     breakOn(TRUE);
1900
1901     for (;;) {
1902         Command cmd;
1903         everybody(RESET);               /* reset to sensible initial state */
1904         dropScriptsFrom(numScripts-1);  /* remove partially loaded scripts */
1905                                         /* not counting prelude as a script*/
1906
1907         promptForInput(textToStr(module(findEvalModule()).text));
1908
1909         cmd = readCommand(cmds, (Char)':', (Char)'!');
1910 #ifdef WANT_TIMER
1911         updateTimers();
1912 #endif
1913         switch (cmd) {
1914             case EDIT   : editor();
1915                           break;
1916             case FIND   : find();
1917                           break;
1918             case LOAD   : clearProject();
1919                           forgetScriptsFrom(1);
1920                           load();
1921                           break;
1922             case ALSO   : clearProject();
1923                           forgetScriptsFrom(numScripts);
1924                           load();
1925                           break;
1926             case RELOAD : readScripts(1);
1927                           break;
1928             case PROJECT: project();
1929                           break;
1930             case SETMODULE :
1931                           setModule();
1932                           break;
1933             case EVAL   : evaluator();
1934                           break;
1935             case TYPEOF : showtype();
1936                           break;
1937             case BROWSE : browse();
1938                           break;
1939 #if EXPLAIN_INSTANCE_RESOLUTION
1940             case XPLAIN : xplain();
1941                           break;
1942 #endif
1943             case NAMES  : listNames();
1944                           break;
1945             case HELP   : menu();
1946                           break;
1947             case BADCMD : guidance();
1948                           break;
1949             case SET    : set();
1950                           break;
1951             case STATS:
1952 #ifdef CRUDE_PROFILING
1953                           cp_show();
1954 #endif
1955                           break;
1956             case SYSTEM : if (shellEsc(readLine()))
1957                               Printf("Warning: Shell escape terminated abnormally\n");
1958                           break;
1959             case CHGDIR : changeDir();
1960                           break;
1961             case INFO   : info();
1962                           break;
1963             case PNTVER: Printf("-- Hugs Version %s\n",
1964                                  HUGS_VERSION);
1965                           break;
1966             case DUMP   : dumpStg();
1967                           break;
1968             case QUIT   : return;
1969             case COLLECT: consGC = FALSE;
1970                           garbageCollect();
1971                           consGC = TRUE;
1972                           Printf("Garbage collection recovered %d cells\n",
1973                                  cellsRecovered);
1974                           break;
1975             case NOCMD  : break;
1976         }
1977 #ifdef WANT_TIMER
1978         updateTimers();
1979         Printf("Elapsed time (ms): %ld (user), %ld (system)\n",
1980                millisecs(userElapsed), millisecs(systElapsed));
1981 #endif
1982         if (autoMain) break;
1983     }
1984     breakOn(FALSE);
1985 }
1986
1987 /* --------------------------------------------------------------------------
1988  * Display progress towards goal:
1989  * ------------------------------------------------------------------------*/
1990
1991 static Target currTarget;
1992 static Bool   aiming = FALSE;
1993 static Int    currPos;
1994 static Int    maxPos;
1995 static Int    charCount;
1996
1997 Void setGoal(what, t)                  /* Set goal for what to be t        */
1998 String what;
1999 Target t; {
2000     if (quiet) return;
2001     currTarget = (t?t:1);
2002     aiming     = TRUE;
2003     if (useDots) {
2004         currPos = strlen(what);
2005         maxPos  = getTerminalWidth() - 1;
2006         Printf("%s",what);
2007     }
2008     else
2009         for (charCount=0; *what; charCount++)
2010             Putchar(*what++);
2011     FlushStdout();
2012 }
2013
2014 Void soFar(t)                          /* Indicate progress towards goal   */
2015 Target t; {                            /* has now reached t                */
2016     if (quiet) return;
2017     if (useDots) {
2018         Int newPos = (Int)((maxPos * ((long)t))/currTarget);
2019
2020         if (newPos>maxPos)
2021             newPos = maxPos;
2022
2023         if (newPos>currPos) {
2024             do
2025                 Putchar('.');
2026             while (newPos>++currPos);
2027             FlushStdout();
2028         }
2029         FlushStdout();
2030     }
2031 }
2032
2033 Void done() {                          /* Goal has now been achieved       */
2034     if (quiet) return;
2035     if (useDots) {
2036         while (maxPos>currPos++)
2037             Putchar('.');
2038         Putchar('\n');
2039     }
2040     else
2041         for (; charCount>0; charCount--) {
2042             Putchar('\b');
2043             Putchar(' ');
2044             Putchar('\b');
2045         }
2046     aiming = FALSE;
2047     FlushStdout();
2048 }
2049
2050 static Void local failed() {           /* Goal cannot be reached due to    */
2051     if (aiming) {                      /* errors                           */
2052         aiming = FALSE;
2053         Putchar('\n');
2054         FlushStdout();
2055     }
2056 }
2057
2058 /* --------------------------------------------------------------------------
2059  * Error handling:
2060  * ------------------------------------------------------------------------*/
2061
2062 Void errHead(l)                        /* print start of error message     */
2063 Int l; {
2064     failed();                          /* failed to reach target ...       */
2065     stopAnyPrinting();
2066     FPrintf(errorStream,"ERROR");
2067
2068     if (scriptFile) {
2069         FPrintf(errorStream," \"%s\"", scriptFile);
2070         setLastEdit(scriptFile,l);
2071         if (l) FPrintf(errorStream," (line %d)",l);
2072         scriptFile = 0;
2073     }
2074     FPrintf(errorStream,": ");
2075     FFlush(errorStream);
2076 }
2077
2078 Void errFail() {                        /* terminate error message and     */
2079     Putc('\n',errorStream);             /* produce exception to return to  */
2080     FFlush(errorStream);                /* main command loop               */
2081     longjmp(catch_error,1);
2082 }
2083
2084 Void errAbort() {                       /* altern. form of error handling  */
2085     failed();                           /* used when suitable error message*/
2086     stopAnyPrinting();                  /* has already been printed        */
2087     errFail();
2088 }
2089
2090 Void internal(msg)                      /* handle internal error           */
2091 String msg; {
2092 #if HUGS_FOR_WINDOWS
2093     char buf[300];
2094     wsprintf(buf,"INTERNAL ERROR: %s",msg);
2095     MessageBox(hWndMain, buf, appName, MB_ICONHAND | MB_OK);
2096 #endif
2097     failed();
2098     stopAnyPrinting();
2099     Printf("INTERNAL ERROR: %s\n",msg);
2100     FlushStdout();
2101     longjmp(catch_error,1);
2102 }
2103
2104 Void fatal(msg)                         /* handle fatal error              */
2105 String msg; {
2106 #if HUGS_FOR_WINDOWS
2107     char buf[300];
2108     wsprintf(buf,"FATAL ERROR: %s",msg);
2109     MessageBox(hWndMain, buf, appName, MB_ICONHAND | MB_OK);
2110 #endif
2111     FlushStdout();
2112     Printf("\nFATAL ERROR: %s\n",msg);
2113     everybody(EXIT);
2114     exit(1);
2115 }
2116
2117 sigHandler(breakHandler) {              /* respond to break interrupt      */
2118 #if HUGS_FOR_WINDOWS
2119     MessageBox(GetFocus(), "Interrupted!", appName, MB_ICONSTOP | MB_OK);
2120 #endif
2121     Hilite();
2122     Printf("{Interrupted!}\n");
2123     Lolite();
2124     breakOn(TRUE);  /* reinstall signal handler - redundant on BSD systems */
2125                     /* but essential on POSIX (and other?) systems         */
2126     everybody(BREAK);
2127     failed();
2128     stopAnyPrinting();
2129     FlushStdout();
2130     clearerr(stdin);
2131     longjmp(catch_error,1);
2132     sigResume;/*NOTREACHED*/
2133 }
2134
2135 /* --------------------------------------------------------------------------
2136  * Read value from environment variable or registry:
2137  * ------------------------------------------------------------------------*/
2138
2139 String fromEnv(var,def)         /* return value of:                        */
2140 String var;                     /*     environment variable named by var   */
2141 String def; {                   /* or: default value given by def          */
2142     String s = getenv(var);     
2143     return (s ? s : def);
2144 }
2145
2146 /* --------------------------------------------------------------------------
2147  * String manipulation routines:
2148  * ------------------------------------------------------------------------*/
2149
2150 static String local strCopy(s)         /* make malloced copy of a string   */
2151 String s; {
2152     if (s && *s) {
2153         char *t, *r;
2154         if ((t=(char *)malloc(strlen(s)+1))==0) {
2155             ERRMSG(0) "String storage space exhausted"
2156             EEND;
2157         }
2158         for (r=t; (*r++ = *s++)!=0; ) {
2159         }
2160         return t;
2161     }
2162     return NULL;
2163 }
2164
2165 /* --------------------------------------------------------------------------
2166  * Compiler output
2167  * We can redirect compiler output (prompts, error messages, etc) by
2168  * tweaking these functions.
2169  * ------------------------------------------------------------------------*/
2170
2171 #if REDIRECT_OUTPUT && !HUGS_FOR_WINDOWS
2172
2173 #ifdef HAVE_STDARG_H
2174 #include <stdarg.h>
2175 #else
2176 #include <varargs.h>
2177 #endif
2178
2179 /* ----------------------------------------------------------------------- */
2180
2181 #define BufferSize 10000              /* size of redirected output buffer  */
2182
2183 typedef struct _HugsStream {
2184     char buffer[BufferSize];          /* buffer for redirected output      */
2185     Int  next;                        /* next space in buffer              */
2186 } HugsStream;
2187
2188 static Void   local vBufferedPrintf  Args((HugsStream*, const char*, va_list));
2189 static Void   local bufferedPutchar  Args((HugsStream*, Char));
2190 static String local bufferClear      Args((HugsStream *stream));
2191
2192 static Void local vBufferedPrintf(stream, fmt, ap)
2193 HugsStream* stream;
2194 const char* fmt;
2195 va_list     ap; {
2196     Int spaceLeft = BufferSize - stream->next;
2197     char* p = &stream->buffer[stream->next];
2198     Int charsAdded = vsnprintf(p, spaceLeft, fmt, ap);
2199     if (0 <= charsAdded && charsAdded < spaceLeft) 
2200         stream->next += charsAdded;
2201 #if 1 /* we can either buffer the first n chars or buffer the last n chars */
2202     else
2203         stream->next = 0;
2204 #endif
2205 }
2206
2207 static Void local bufferedPutchar(stream, c)
2208 HugsStream *stream;
2209 Char        c; {
2210     if (BufferSize - stream->next >= 2) {
2211         stream->buffer[stream->next++] = c;
2212         stream->buffer[stream->next] = '\0';
2213     }
2214 }    
2215
2216 static String local bufferClear(stream)
2217 HugsStream *stream; {
2218     if (stream->next == 0) {
2219         return "";
2220     } else {
2221         stream->next = 0;
2222         return stream->buffer;
2223     }
2224 }
2225
2226 /* ----------------------------------------------------------------------- */
2227
2228 static HugsStream outputStreamH;
2229 /* ADR note: 
2230  * We rely on standard C semantics to initialise outputStreamH.next to 0.
2231  */
2232
2233 Void hugsEnableOutput(f) 
2234 Bool f; {
2235     disableOutput = !f;
2236 }
2237
2238 String hugsClearOutputBuffer() {
2239     return bufferClear(&outputStreamH);
2240 }
2241
2242 #ifdef HAVE_STDARG_H
2243 Void hugsPrintf(const char *fmt, ...) {
2244     va_list ap;                    /* pointer into argument list           */
2245     va_start(ap, fmt);             /* make ap point to first arg after fmt */
2246     if (!disableOutput) {
2247         vprintf(fmt, ap);
2248     } else {
2249         vBufferedPrintf(&outputStreamH, fmt, ap);
2250     }
2251     va_end(ap);                    /* clean up                             */
2252 }
2253 #else
2254 Void hugsPrintf(fmt, va_alist) 
2255 const char *fmt;
2256 va_dcl {
2257     va_list ap;                    /* pointer into argument list           */
2258     va_start(ap);                  /* make ap point to first arg after fmt */
2259     if (!disableOutput) {
2260         vprintf(fmt, ap);
2261     } else {
2262         vBufferedPrintf(&outputStreamH, fmt, ap);
2263     }
2264     va_end(ap);                    /* clean up                             */
2265 }
2266 #endif
2267
2268 Void hugsPutchar(c)
2269 int c; {
2270     if (!disableOutput) {
2271         putchar(c);
2272     } else {
2273         bufferedPutchar(&outputStreamH, c);
2274     }
2275 }
2276
2277 Void hugsFlushStdout() {
2278     if (!disableOutput) {
2279         fflush(stdout);
2280     }
2281 }
2282
2283 Void hugsFFlush(fp)
2284 FILE* fp; {
2285     if (!disableOutput) {
2286         fflush(fp);
2287     }
2288 }
2289
2290 #ifdef HAVE_STDARG_H
2291 Void hugsFPrintf(FILE *fp, const char* fmt, ...) {
2292     va_list ap;             
2293     va_start(ap, fmt);      
2294     if (!disableOutput) {
2295         vfprintf(fp, fmt, ap);
2296     } else {
2297         vBufferedPrintf(&outputStreamH, fmt, ap);
2298     }
2299     va_end(ap);             
2300 }
2301 #else
2302 Void hugsFPrintf(FILE *fp, const char* fmt, va_list)
2303 FILE* fp;
2304 const char* fmt;
2305 va_dcl {
2306     va_list ap;             
2307     va_start(ap);      
2308     if (!disableOutput) {
2309         vfprintf(fp, fmt, ap);
2310     } else {
2311         vBufferedPrintf(&outputStreamH, fmt, ap);
2312     }
2313     va_end(ap);             
2314 }
2315 #endif
2316
2317 Void hugsPutc(c, fp)
2318 int   c;
2319 FILE* fp; {
2320     if (!disableOutput) {
2321         putc(c,fp);
2322     } else {
2323         bufferedPutchar(&outputStreamH, c);
2324     }
2325 }
2326     
2327 #endif /* REDIRECT_OUTPUT && !HUGS_FOR_WINDOWS */
2328 /* --------------------------------------------------------------------------
2329  * Send message to each component of system:
2330  * ------------------------------------------------------------------------*/
2331
2332 Void everybody(what)            /* send command `what' to each component of*/
2333 Int what; {                     /* system to respond as appropriate ...    */
2334     machdep(what);              /* The order of calling each component is  */
2335     storage(what);              /* important for the INSTALL command       */
2336     substitution(what);
2337     input(what);
2338     translateControl(what);
2339     linkControl(what);
2340     staticAnalysis(what);
2341     deriveControl(what);
2342     typeChecker(what);
2343     compiler(what);   
2344     codegen(what);
2345 }
2346
2347 /* --------------------------------------------------------------------------
2348  * Hugs for Windows code (WinMain and related functions)
2349  * ------------------------------------------------------------------------*/
2350
2351 #if HUGS_FOR_WINDOWS
2352 #include "winhugs.c"
2353 #endif