home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d199 / csh.lha / Csh / main.c < prev    next >
C/C++ Source or Header  |  1989-03-31  |  5KB  |  204 lines

  1. /*
  2.  * MAIN.C
  3.  *
  4.  * Matthew Dillon, 24 Feb 1986
  5.  * (c)1986 Matthew Dillon     9 October 1986
  6.  *
  7.  * Version 2.07M by Steve Drew 10-Sep-87
  8.  *
  9.  * Version 3.02A by Carlo Borreo & Cesare Dieni 20-Dec-88
  10.  *
  11.  */
  12.  
  13. char *shellctr="CshCounter";
  14.  
  15. extern char *v_titlebar, *v_prompt, *v_hist, *v_lasterr, *v_path;
  16.  
  17. int aux; /* for use with aux: driver */
  18. char *oldtitle;
  19. char trueprompt[100];
  20. char Inline[260];
  21. struct IntuitionBase *IntuitionBase;
  22. struct Window *w;
  23. struct ArpBase *ArpBase;
  24.  
  25. main(argc, argv)
  26. register char *argv[];
  27. {
  28. #if RAW_CONSOLE
  29.     char *rawgets();
  30. #endif
  31.  
  32. register unsigned int i;
  33. extern int Enable_Abort;
  34. char buf[10];
  35.  
  36. ArpBase=(struct ArpBase *)OpenLibrary("arp.library",34L);
  37. if (ArpBase==NULL) { printf("No arp library\n"); exit(0); }
  38.  
  39. Forbid();
  40. i=Errno=0;
  41. if (Getenv(shellctr,buf,10L)) {
  42.     i=(int)(long)Atol(buf);
  43.     if (Errno) i=0;
  44.     }
  45. sprintf(buf,"%d",i+1);
  46. Setenv(shellctr,buf);
  47. Permit();
  48.  
  49. IntuitionBase=(struct IntuitionBase *)ArpBase->IntuiBase;
  50.  
  51. init();
  52.  
  53. sprintf(buf,"%ld",Myprocess->pr_TaskNum);
  54. set_var(LEVEL_SET, "_clinumber", buf);
  55.  
  56. oldtitle=(char *)(w->Title);
  57.  
  58. set_var(LEVEL_SET, v_titlebar, "CShell V3.02A");
  59. set_var(LEVEL_SET, v_prompt,
  60.     (IsInteractive(Input())) ? "\23337m%p> \2330m" : "");
  61. set_var(LEVEL_SET, v_hist, "20");
  62. set_var(LEVEL_SET, v_lasterr, "0");
  63. set_var(LEVEL_SET, v_path, "RAM:,RAM:c/,df0:c/,df1:c/,sys:system/");
  64. set_var(LEVEL_SET, "_insert", "1");
  65. set_var(LEVEL_SET, "f1", "cdir df0:\15");
  66. set_var(LEVEL_SET, "F1", "cdir df1:\15");
  67. set_var(LEVEL_SET, "f3", "cdir RAM:\15");
  68. set_var(LEVEL_SET, "F3", "cdir vd0:\15");
  69. set_var(LEVEL_SET, "f4", "cd df0:\15");
  70. set_var(LEVEL_SET, "F4", "cd df1:\15");
  71. set_var(LEVEL_SET, "f5", "cls; ls\15");
  72. set_var(LEVEL_SET, "F5", "cdir ");
  73. set_var(LEVEL_SET, "f6", "lc\15");
  74. set_var(LEVEL_SET, "f7", "info\15");
  75. set_var(LEVEL_SET, "F7", "assign \15");
  76. set_var(LEVEL_SET, "f8", "window -lf\15");
  77. set_var(LEVEL_SET, "F8", "window -sb\15");
  78. set_var(LEVEL_SET, "f10", "cls\15");
  79. set_var(LEVEL_SET, "F10", "exit\15");
  80. set_var(LEVEL_ALIAS, "cls", "echo -n ^l");
  81. set_var(LEVEL_ALIAS, "lc", "ls -s");
  82. set_var(LEVEL_ALIAS, "kr", "rm -r RAM:* >NIL:");
  83. set_var(LEVEL_ALIAS, "cdir", "%q cd $q; cls; dir");
  84. set_var(LEVEL_ALIAS, "exit", "endcli;quit");
  85. set_var(LEVEL_ALIAS, "lp", "cat >PRT:");
  86. seterr();
  87. do_pwd(NULL); /* set $_cwd */
  88. Enable_Abort = 0;
  89. for (i = 1; i < argc; ++i) {
  90.     if (!strcmp(argv[i],"-c")) {
  91.         Inline[0] = ' ';
  92.         Inline[1] = '\0';
  93.         while (++i < argc)
  94.             { strcat(Inline,argv[i]); strcat(Inline," "); }
  95.         exec_command(Inline);
  96.         main_exit(Lastresult);
  97.         }
  98.     if (!strcmp(argv[i],"-a")) { aux = 1; continue; }
  99.     sprintf (Inline, "source %s",argv[i]);
  100.     av[1] = argv[i];
  101.     do_source (Inline);
  102.     }
  103. for (;;) {
  104.    if (breakcheck())
  105.     while (WaitForChar(Input(), 100L) || stdin->_bp < stdin->_bend)
  106.         gets(Inline);
  107.    clearerr(stdin);  /* prevent acidental quit */
  108. #if RAW_CONSOLE
  109.    if (Quit || !rawgets(Inline, disable ? "_ " : trueprompt)) main_exit(0);
  110. #else
  111.    printf("%s", disable ? "_ " : trueprompt);
  112.    fflush(stdout);
  113.    if (Quit || !gets(Inline)) main_exit(0);
  114. #endif
  115.    breakreset();
  116.    if (*Inline) exec_command(Inline);
  117.    }
  118. }
  119.  
  120. main_exit(n)
  121. {
  122. register unsigned short i;
  123. char buf[10];
  124.  
  125. Getenv(shellctr,buf,10L);
  126. i=(int)Atol(buf);
  127. sprintf(buf,"%d",i-1);
  128. Setenv(shellctr,buf);
  129. SetWindowTitles(w,oldtitle,-1L);
  130. for (i=1; i<MAXMYFILES; i++) myclose(i);
  131. ArpExit(0L,0L);            /* Intuition need not to be closed */
  132. }
  133.  
  134. init()
  135. {
  136. static char pipe1[32], pipe2[32];
  137. struct Window *getwindow();
  138.  
  139. stdin->_flags    |= 0x80;    /* make sure we're set as a tty */
  140. stdout->_flags    |= 0x80;    /* in case of redirection in .login */
  141. Close(_devtab[2].fd);
  142. _devtab[2].mode |= O_STDIO;
  143. _devtab[2].fd = _devtab[1].fd;    /* set stderr to Output() otherwise */
  144.                 /* don't work with aux driver */
  145. Myprocess = (struct Process *)FindTask(0L);
  146. Mycli=(struct CommandLineInterface *)((long)Myprocess->pr_CLI << 2);
  147. w=getwindow();
  148. Pipe1 = pipe1;
  149. Pipe2 = pipe2;
  150. sprintf(pipe1, "ram:pipe1_%ld", Myprocess);
  151. sprintf(pipe2, "ram:pipe2_%ld", Myprocess);
  152. }
  153.  
  154. breakcheck()
  155. {
  156. return (int)(SetSignal(0L,0L) & SIGBREAKF_CTRL_C);
  157. }
  158.  
  159. breakreset()
  160. {
  161. SetSignal(0L, SIGBREAKF_CTRL_C);
  162. }
  163.  
  164. dobreak()
  165. {
  166. if (breakcheck()) { printf("^C\n"); return(1); }
  167. return(0);
  168. }
  169.  
  170. /* this routine causes manx to use this Chk_Abort() rather than it's own */
  171. /* otherwise it resets our ^C when doing any I/O (even when Enable_Abort */
  172. /* is zero).  Since we want to check for our own ^C's             */
  173.  
  174. Chk_Abort()
  175. {
  176. return(0);
  177. }
  178.  
  179. _wb_parse()
  180. {
  181. }
  182.  
  183. do_howmany()
  184. {
  185. char buf[10];
  186.  
  187. Getenv(shellctr, buf, 10L);
  188. printf("Shell(s) running: %s\n",buf);
  189. }
  190.  
  191. struct Window *getwindow()
  192. {
  193. struct InfoData *infodata;
  194. struct Window *win;
  195. long args[8];
  196.  
  197. infodata=AllocMem((long)sizeof(struct InfoData),MEMF_CLEAR | MEMF_PUBLIC);
  198. args[0]=(long)infodata >> 2;
  199. SendPacket(ACTION_DISK_INFO,args,Myprocess->pr_ConsoleTask);
  200. win=(struct Window *)infodata->id_VolumeNode;
  201. FreeMem(infodata,(long)sizeof(struct InfoData));
  202. return win;
  203. }
  204.