home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Python / pythonmain.c < prev    next >
C/C++ Source or Header  |  1994-05-03  |  5KB  |  186 lines

  1. /***********************************************************
  2. Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
  3. Amsterdam, The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI not be used in advertising or publicity pertaining to
  13. distribution of the software without specific, written prior permission.
  14.  
  15. STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  16. THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  18. FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  20. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  21. OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Python interpreter main program */
  26.  
  27. #include "allobjects.h"
  28.  
  29. extern int debugging; /* Defined in parser.c */
  30. extern int verbose; /* Defined in import.c */
  31.  
  32. /* Interface to getopt(): */
  33. extern int optind;
  34. extern char *optarg;
  35. extern int getopt(); /* PROTO((int, char **, char *)); -- not standardized */
  36.  
  37. extern char *getenv();
  38.  
  39. extern char *getversion();
  40. extern char *getcopyright();
  41.  
  42. int
  43. realmain(argc, argv)
  44.     int argc;
  45.     char **argv;
  46. {
  47.     int c;
  48.     int sts;
  49.     char *command = NULL;
  50.     char *filename = NULL;
  51.     FILE *fp = stdin;
  52.     char *p;
  53.     int inspect = 0;
  54.     int unbuffered = 0;
  55.  
  56.     if ((p = getenv("PYTHONDEBUG")) && *p != '\0')
  57.         debugging = 1;
  58.     if ((p = getenv("PYTHONVERBOSE")) && *p != '\0')
  59.         verbose = 1;
  60.     if ((p = getenv("PYTHONINSPECT")) && *p != '\0')
  61.         inspect = 1;
  62.     if ((p = getenv("PYTHONUNBUFFERED")) && *p != '\0')
  63.         unbuffered = 1;
  64.  
  65.     while ((c = getopt(argc, argv, "c:diuv")) != EOF) {
  66.         if (c == 'c') {
  67.             /* -c is the last option; following arguments
  68.                that look like options are left for the
  69.                the command to interpret. */
  70.             command = malloc(strlen(optarg) + 2);
  71.             /* Ignore malloc errors this early... */
  72.             strcpy(command, optarg);
  73.             strcat(command, "\n");
  74.             break;
  75.         }
  76.         
  77.         switch (c) {
  78.  
  79.         case 'd':
  80.             debugging++;
  81.             break;
  82.  
  83.         case 'i':
  84.             inspect++;
  85.             break;
  86.  
  87.         case 'u':
  88.             unbuffered++;
  89.             break;
  90.  
  91.         case 'v':
  92.             verbose++;
  93.             break;
  94.  
  95.         /* This space reserved for other options */
  96.  
  97.         default:
  98.             fprintf(stderr,
  99. "usage: %s [-d] [-i] [-u ] [-v] [-c cmd | file | -] [arg] ...\n",
  100.                 argv[0]);
  101.             fprintf(stderr, "\
  102. \n\
  103. Options and arguments (and corresponding environment variables):\n\
  104. -d     : debug output from parser (also PYTHONDEBUG=x)\n\
  105. -i     : inspect interactively after running script (also PYTHONINSPECT=x)\n\
  106. -u     : unbuffered stdout and stderr (also PYTHONUNBUFFERED=x)\n\
  107. -v     : verbose (trace import statements) (also PYTHONVERBOSE=x)\n\
  108. -c cmd : program passed in as string (terminates option list)\n\
  109. file   : program read from script file\n\
  110. -      : program read from stdin (default; interactive mode if a tty)\n\
  111. arg ...: arguments passed to program in sys.argv[1:]\n\
  112. \n\
  113. Other environment variables:\n\
  114. PYTHONSTARTUP: file executed on interactive startup (no default)\n\
  115. PYTHONPATH   : colon-separated list of directories prefixed to the\n\
  116.                default module search path.  The result is sys.path.\n\
  117. ");
  118.             exit(2);
  119.             /*NOTREACHED*/
  120.  
  121.         }
  122.     }
  123.  
  124.     if (unbuffered) {
  125.         setbuf(stdout, (char *)NULL);
  126.         setbuf(stderr, (char *)NULL);
  127.     }
  128.  
  129.     if (command == NULL && optind < argc && strcmp(argv[optind], "-") != 0)
  130.         filename = argv[optind];
  131.  
  132.     if (verbose ||
  133.         command == NULL && filename == NULL && isatty((int)fileno(fp)))
  134.         fprintf(stderr, "Python %s\n%s\n",
  135.             getversion(), getcopyright());
  136.     
  137.     if (filename != NULL) {
  138.         if ((fp = fopen(filename, "r")) == NULL) {
  139.             fprintf(stderr, "%s: can't open file '%s'\n",
  140.                 argv[0], filename);
  141.             exit(2);
  142.         }
  143.     }
  144.     
  145.     initall();
  146.     
  147.     if (command != NULL) {
  148.         /* Backup optind and force sys.argv[0] = '-c' */
  149.         optind--;
  150.         argv[optind] = "-c";
  151.     }
  152.  
  153.     setpythonargv(argc-optind, argv+optind);
  154.  
  155.     if (command) {
  156.         sts = run_command(command) != 0;
  157.     }
  158.     else {
  159.         if (filename == NULL && isatty((int)fileno(fp))) {
  160.             char *startup = getenv("PYTHONSTARTUP");
  161. #ifdef macintosh
  162.             if (startup == NULL)
  163.                 startup = "PythonStartup";
  164. #endif
  165.             if (startup != NULL && startup[0] != '\0') {
  166.                 FILE *fp = fopen(startup, "r");
  167.                 if (fp != NULL) {
  168.                     (void) run_script(fp, startup);
  169.                     err_clear();
  170.                     fclose(fp);
  171.                 }
  172.             }
  173.         }
  174.         sts = run(fp, filename == NULL ? "<stdin>" : filename) != 0;
  175.         if (filename != NULL)
  176.             fclose(fp);
  177.     }
  178.  
  179.     if (inspect && isatty((int)fileno(stdin)) &&
  180.         (filename != NULL || command != NULL))
  181.         sts = run(stdin, "<stdin>") != 0;
  182.  
  183.     goaway(sts);
  184.     /*NOTREACHED*/
  185. }
  186.