home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / editor / less / main.c < prev    next >
C/C++ Source or Header  |  1994-01-31  |  6KB  |  324 lines

  1. /*
  2.  * Entry point, initialization, miscellaneous routines.
  3.  */
  4.  
  5. #include "less.h"
  6. #include "position.h"
  7.  
  8. #ifdef OS2
  9. #include <stdio.h>
  10. #include <fcntl.h>
  11. #endif
  12.  
  13. public int      ispipe, iscompressed, wascompressed;
  14. public char *    every_first_cmd = NULL;
  15. public int    new_file;
  16. public int    is_tty;
  17. public IFILE    curr_ifile = NULL_IFILE;
  18. public IFILE    old_ifile = NULL_IFILE;
  19. public struct scrpos initial_scrpos;
  20. public int    any_display = 0;
  21. public int    scroll;
  22. public char *    progname;
  23. public int    quitting;
  24.  
  25. extern int    file;
  26. extern int    quit_at_eof;
  27. extern int    hit_eof;
  28. extern int    cbufs;
  29. extern int    errmsgs;
  30. extern int    screen_trashed;
  31. extern int    force_open;
  32.  
  33. public FILE *   compress;
  34. public FILE *   oldcompr;
  35.  
  36. #if LOGFILE
  37. public int    logfile = -1;
  38. public int    force_logfile = 0;
  39. public char *    namelogfile = NULL;
  40. #endif
  41.  
  42. #if EDITOR
  43. public char *    editor;
  44. public char *    editproto;
  45. #endif
  46.  
  47. #if TAGS
  48. extern char *    tagfile;
  49. extern char *    tagpattern;
  50. extern int    tagoption;
  51. #endif
  52.  
  53. char *myname;
  54. extern char version[];
  55.  
  56. extern char *strchr();
  57.  
  58.  
  59. usage()
  60. {
  61.   int x = strlen(myname);
  62.  
  63.   printf("\nThis is %s.\n", version + 5);
  64.   printf("\nUsage: %s [-[+]aABcCdeEfgimMnNqQruUsw] [-bN] [-hN] [-xN] [-[z]N]", myname);
  65.   printf("\n       %*s [-P[mM=]string] [-[lL]logfile] [-kkeyfile]", x, "");
  66.   printf("\n       %*s [+cmd] [-ttag] [filename]...\n", x, "");
  67.   printf("\n   or: %s -?\n", myname);
  68. }
  69.  
  70.  
  71. int isZfile(name)
  72. char *name;
  73. {
  74.   int res, magic, file;
  75.  
  76. #ifdef OS2
  77.   file = open(name, O_RDONLY | O_BINARY);
  78. #else
  79.   file = open(name, O_RDONLY);
  80. #endif
  81.   res = read(file, &magic, 2);
  82.   close(file);
  83.  
  84.   return (res == 2) && (magic == 0x9D1F);
  85. }
  86.  
  87.  
  88. /*
  89.  * Entry point.
  90.  */
  91. main(argc, argv)
  92.     int argc;
  93.     char *argv[];
  94. {
  95.     IFILE h;
  96.     int nofiles;
  97.     extern char *getenv();
  98.  
  99.         myname = argv[0];
  100.     progname = *argv++;
  101.  
  102.     /*
  103.      * Process command line arguments and LESS environment arguments.
  104.      * Command line arguments override environment arguments.
  105.      */
  106.     init_prompt();
  107.     init_charset();
  108.     init_option();
  109.     scan_option(getenv("LESS"));
  110.  
  111. #define    isoptstring(s)    (((s)[0] == '-' || (s)[0] == '+') && (s)[1] != '\0')
  112.     while (--argc > 0 && (isoptstring(argv[0]) || isoptpending()))
  113.         scan_option(*argv++);
  114. #undef isoptstring
  115.  
  116.     if (isoptpending())
  117.     {
  118.         /*
  119.          * Last command line option was a flag requiring a
  120.          * following string, but there was no following string.
  121.          */
  122.         nopendopt();
  123.         quit(0);
  124.     }
  125.  
  126. #if USERFILE
  127.     /*
  128.      * Try to use the lesskey file "$HOME/.less".
  129.      */
  130.     add_hometable();
  131. #endif
  132. #if EDITOR
  133.     editor = getenv("EDITOR");
  134.     if (editor == NULL || *editor == '\0')
  135.         editor = EDIT_PGM;
  136.     editproto = getenv("LESSEDIT");
  137.     if (editproto == NULL || *editproto == '\0')
  138.         editproto = "%E ?lm+%lm. %f";
  139. #endif
  140.  
  141.     /*
  142.      * Set up terminal, etc.
  143.      */
  144.     is_tty = isatty(1);
  145.     if (!is_tty)
  146.     {
  147.         /*
  148.          * Output is not a tty.
  149.          * Just copy the input file(s) to output.
  150.          */
  151.         if (argc <= 0)
  152.         {
  153.             if (edit("-", 0) == 0)
  154.                 cat_file();
  155.         } else
  156.         {
  157.             while (--argc >= 0)
  158.             {
  159.                 if (edit(*argv++, 0) == 0)
  160.                     cat_file();
  161.             }
  162.         }
  163.         quit(0);
  164.     }
  165.  
  166.     /*
  167.      * Call get_ifile with all the command line filenames
  168.      * to "register" them with the ifile system.
  169.      */
  170.     h = NULL_IFILE;
  171.     while (--argc >= 0)
  172.         h = get_ifile(*argv++, h);
  173.  
  174.     init_mark();
  175.     raw_mode(1);
  176.     get_term();
  177.     open_getchr();
  178.  
  179.     init_signals(1);
  180.  
  181.     /*
  182.      * Select the first file to examine.
  183.      */
  184. #if TAGS
  185.     if (tagoption)
  186.     {
  187.         /*
  188.          * A -t option was given.
  189.          * Verify that no filenames were also given.
  190.          * Edit the file selected by the "tags" search,
  191.          * and search for the proper line in the file.
  192.          */
  193.         if (nifile() > 0)
  194.         {
  195.             error("No filenames allowed with -t option", NULL_PARG);
  196.             quit(1);
  197.         }
  198.         if (tagfile == NULL)
  199.             quit(1);
  200.         if (edit(tagfile, 0) || tagsearch())
  201.             quit(1);
  202.     } else
  203. #endif
  204.     if (nifile() == 0)
  205.         nofiles = edit("-", 0);    /* Standard input */
  206.     else
  207.         nofiles = edit_first();
  208.  
  209.     if (nofiles)
  210.     {
  211.         quit(1);
  212.         /*NOTREACHED*/
  213.     }
  214.  
  215.     init();
  216.     commands();
  217.     quit(0);
  218.     /*NOTREACHED*/
  219. }
  220.  
  221. /*
  222.  * Copy a string, truncating to the specified length if necessary.
  223.  * Unlike strncpy(), the resulting string is guaranteed to be null-terminated.
  224.  */
  225.     public void
  226. strtcpy(to, from, len)
  227.     char *to;
  228.     char *from;
  229.     unsigned int len;
  230. {
  231.     strncpy(to, from, len);
  232.     to[len-1] = '\0';
  233. }
  234.  
  235. /*
  236.  * Copy a string to a "safe" place
  237.  * (that is, to a buffer allocated by calloc).
  238.  */
  239.     public char *
  240. save(s)
  241.     char *s;
  242. {
  243.     register char *p;
  244.  
  245.     p = (char *) ecalloc(strlen(s)+1, sizeof(char));
  246.     strcpy(p, s);
  247.     return (p);
  248. }
  249.  
  250.     public VOID_POINTER
  251. ecalloc(count, size)
  252.     int count;
  253.     unsigned int size;
  254. {
  255.     register VOID_POINTER p;
  256.  
  257.     p = calloc(count, size);
  258.     if (p != NULL)
  259.         return (p);
  260.     error("Cannot allocate memory", NULL_PARG);
  261.     quit(1);
  262.     /*NOTREACHED*/
  263. }
  264.  
  265. /*
  266.  * Skip leading spaces in a string.
  267.  */
  268.     public char *
  269. skipsp(s)
  270.     register char *s;
  271. {
  272.     while (*s == ' ' || *s == '\t')
  273.         s++;
  274.     return (s);
  275. }
  276.  
  277. /*
  278.  * Exit the program.
  279.  */
  280.     public void
  281. quit(status)
  282.     int status;
  283. {
  284.     static int save_status;
  285.  
  286.     /*
  287.      * Put cursor at bottom left corner, clear the line,
  288.      * reset the terminal modes, and exit.
  289.      */
  290.     if (status < 0)
  291.         status = save_status;
  292.     else
  293.         save_status = status;
  294.     quitting = 1;
  295. #if LOGFILE
  296.     end_logfile();
  297. #endif
  298.     if (any_display)
  299.     {
  300.         lower_left();
  301.         clear_eol();
  302.  
  303.           if (file > 0)
  304.             if (wascompressed)
  305.               pclose(oldcompr);
  306.             else
  307.               close(file);
  308.     }
  309.     deinit();
  310.     flush();
  311.     raw_mode(0);
  312. #if __MSDOS__
  313.     restore_screen();
  314.     /*
  315.      * If we don't close 2, we get some garbage from
  316.      * 2's buffer when it flushes automatically.
  317.      * I cannot track this one down  RB
  318.      * The same bug shows up if we use ^C^C to abort.
  319.      */
  320.     close(2);
  321. #endif
  322.     exit(status);
  323. }
  324.