home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / sh-utils-1.12-src.lha / sh-utils-1.12 / src / expr.c < prev    next >
C/C++ Source or Header  |  1994-11-12  |  14KB  |  766 lines

  1. /* expr -- evaluate expressions.
  2.    Copyright (C) 1986, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Author: Mike Parker.
  19.  
  20.    This program evaluates expressions.  Each token (operator, operand,
  21.    parenthesis) of the expression must be a seperate argument.  The
  22.    parser used is a reasonably general one, though any incarnation of
  23.    it is language-specific.  It is especially nice for expressions.
  24.  
  25.    No parse tree is needed; a new node is evaluated immediately.
  26.    One function can handle multiple operators all of equal precedence,
  27.    provided they all associate ((x op x) op x).
  28.  
  29.    Define EVAL_TRACE to print an evaluation trace.  */
  30.  
  31. #include <config.h>
  32. #include <stdio.h>
  33. #include <sys/types.h>
  34. #include <regex.h>
  35.  
  36. #include "system.h"
  37. #include "version.h"
  38. #include "long-options.h"
  39.  
  40. #define NEW(type) ((type *) xmalloc (sizeof (type)))
  41. #define OLD(x) free ((char *) x)
  42.  
  43. /* The kinds of value we can have.  */
  44. enum valtype
  45. {
  46.   integer,
  47.   string
  48. };
  49. typedef enum valtype TYPE;
  50.  
  51. /* A value is.... */
  52. struct valinfo
  53. {
  54.   TYPE type;            /* Which kind. */
  55.   union
  56.   {                /* The value itself. */
  57.     int i;
  58.     char *s;
  59.   } u;
  60. };
  61. typedef struct valinfo VALUE;
  62.  
  63. /* The arguments given to the program, minus the program name.  */
  64. static char **args;
  65.  
  66. /* The name this program was run with. */
  67. char *program_name;
  68.  
  69. void error ();
  70. char *xstrdup ();
  71. char *strstr ();
  72. char *xmalloc ();
  73.  
  74. static VALUE *docolon ();
  75. static VALUE *eval ();
  76. static VALUE *int_value ();
  77. static VALUE *str_value ();
  78. static int isstring ();
  79. static int nextarg ();
  80. static int nomoreargs ();
  81. static int null ();
  82. static int toarith ();
  83. static void freev ();
  84. static void printv ();
  85. static void tostring ();
  86.  
  87. #ifdef EVAL_TRACE
  88. static void trace ();
  89. #endif
  90.  
  91. static void
  92. usage (status)
  93.      int status;
  94. {
  95.   if (status != 0)
  96.     fprintf (stderr, "Try `%s --help' for more information.\n",
  97.          program_name);
  98.   else
  99.     {
  100.       printf ("\
  101. Usage: %s EXPRESSION\n\
  102.   or:  %s OPTION\n\
  103. ",
  104.           program_name, program_name);
  105.       printf ("\
  106. \n\
  107.   --help      display this help and exit\n\
  108.   --version   output version information and exit\n\
  109. \n\
  110. ");
  111.       printf ("\
  112. EXPRESSION value is written on standard output.  A white line\n\
  113. separates increasing precedence groups.  EXPRESSION may be:\n\
  114. \n\
  115.   ARG1 | ARG2       ARG1 if it is neither null nor 0, otherwise ARG2\n\
  116. \n\
  117.   ARG1 & ARG2       ARG1 if neither argument is null or 0, otherwise 0\n\
  118. \n\
  119.   ARG1 < ARG2       ARG1 is less than ARG2\n\
  120.   ARG1 <= ARG2      ARG1 is less than or equal to ARG2\n\
  121.   ARG1 = ARG2       ARG1 is equal to ARG2\n\
  122.   ARG1 != ARG2      ARG1 is unequal to ARG2\n\
  123.   ARG1 >= ARG2      ARG1 is greater than or equal to ARG2\n\
  124.   ARG1 > ARG2       ARG1 is greater than ARG2\n\
  125. \n\
  126.   ARG1 + ARG2       arithmetic sum of ARG1 and ARG2\n\
  127.   ARG1 - ARG2       arithmetic difference of ARG1 and ARG2\n\
  128. \n\
  129.   ARG1 * ARG2       arithmetic product of ARG1 and ARG2\n\
  130.   ARG1 / ARG2       arithmetic quotient of ARG1 divided by ARG2\n\
  131.   ARG1 %% ARG2       arithmetic remainder of ARG1 divided by ARG2\n\
  132. \n\
  133.   STRING : REGEXP   anchored pattern match of REGEXP in STRING\n\
  134. \n\
  135.   match STRING REGEXP        same as STRING : REGEXP\n\
  136.   substr STRING POS LENGTH   substring of STRING, POS counted from 1\n\
  137.   index STRING CHARS         index in STRING where any CHARS is found, or 0\n\
  138.   length STRING              length of STRING\n\
  139. \n\
  140.   ( EXPRESSION )             value of EXPRESSION\n\
  141. ");
  142.       printf ("\
  143. \n\
  144. Beware that some operators need to be escaped by backslashes for shells.\n\
  145. Comparisons are arithmetic if both ARGs are numbers, else lexicographical.\n\
  146. Pattern matches return the string matched between \\( and \\) or null; if\n\
  147. \\( and \\) are not used, they return the number of characters matched or 0.\n\
  148. ");
  149.     }
  150.   exit (status);
  151. }
  152.  
  153. main (argc, argv)
  154.      int argc;
  155.      char **argv;
  156. {
  157.   VALUE *v;
  158.  
  159.   program_name = argv[0];
  160.  
  161.   parse_long_options (argc, argv, "expr", version_string, usage);
  162.  
  163.   if (argc == 1)
  164.     {
  165.       error (0, 0, "too few arguments");
  166.       usage (1);
  167.     }
  168.  
  169.   args = argv + 1;
  170.  
  171.   v = eval ();
  172.   if (!nomoreargs ())
  173.     error (2, 0, "syntax error");
  174.   printv (v);
  175.  
  176.   exit (null (v));
  177. }
  178.  
  179. /* Return a VALUE for I.  */
  180.  
  181. static VALUE *
  182. int_value (i)
  183.      int i;
  184. {
  185.   VALUE *v;
  186.  
  187.   v = NEW (VALUE);
  188.   v->type = integer;
  189.   v->u.i = i;
  190.   return v;
  191. }
  192.  
  193. /* Return a VALUE for S.  */
  194.  
  195. static VALUE *
  196. str_value (s)
  197.      char *s;
  198. {
  199.   VALUE *v;
  200.  
  201.   v = NEW (VALUE);
  202.   v->type = string;
  203.   v->u.s = xstrdup (s);
  204.   return v;
  205. }
  206.  
  207. /* Free VALUE V, including structure components.  */
  208.  
  209. static void
  210. freev (v)
  211.      VALUE *v;
  212. {
  213.   if (v->type == string)
  214.     free (v->u.s);
  215.   OLD (v);
  216. }
  217.  
  218. /* Print VALUE V.  */
  219.  
  220. static void
  221. printv (v)
  222.      VALUE *v;
  223. {
  224.   switch (v->type)
  225.     {
  226.     case integer:
  227.       printf ("%d\n", v->u.i);
  228.       break;
  229.     case string:
  230.       printf ("%s\n", v->u.s);
  231.       break;
  232.     default:
  233.       abort ();
  234.     }
  235. }
  236.  
  237. /* Return nonzero if V is a null-string or zero-number.  */
  238.  
  239. static int
  240. null (v)
  241.      VALUE *v;
  242. {
  243.   switch (v->type)
  244.     {
  245.     case integer:
  246.       return v->u.i == 0;
  247.     case string:
  248.       return v->u.s[0] == '\0' || strcmp(v->u.s, "0") == 0;
  249.     default:
  250.       abort ();
  251.     }
  252. }
  253.  
  254. /* Return nonzero if V is a string value.  */
  255.  
  256. static int
  257. isstring (v)
  258.      VALUE *v;
  259. {
  260.   return v->type == string;
  261. }
  262.  
  263. /* Coerce V to a string value (can't fail).  */
  264.  
  265. static void
  266. tostring (v)
  267.      VALUE *v;
  268. {
  269.   char *temp;
  270.  
  271.   switch (v->type)
  272.     {
  273.     case integer:
  274.       temp = xmalloc (4 * (sizeof (int) / sizeof (char)));
  275.       sprintf (temp, "%d", v->u.i);
  276.       v->u.s = temp;
  277.       v->type = string;
  278.       break;
  279.     case string:
  280.       break;
  281.     default:
  282.       abort ();
  283.     }
  284. }
  285.  
  286. /* Coerce V to an integer value.  Return 1 on success, 0 on failure.  */
  287.  
  288. static int
  289. toarith (v)
  290.      VALUE *v;
  291. {
  292.   int i;
  293.   int neg;
  294.   char *cp;
  295.  
  296.   switch (v->type)
  297.     {
  298.     case integer:
  299.       return 1;
  300.     case string:
  301.       i = 0;
  302.       cp = v->u.s;
  303.       /* Don't interpret the empty string as an integer.  */
  304.       if (*cp == 0)
  305.     return 0;
  306.       neg = (*cp == '-');
  307.       if (neg)
  308.     cp++;
  309.       for (; *cp; cp++)
  310.     {
  311.       if (ISDIGIT (*cp))
  312.         i = i * 10 + *cp - '0';
  313.       else
  314.         return 0;
  315.     }
  316.       free (v->u.s);
  317.       v->u.i = i * (neg ? -1 : 1);
  318.       v->type = integer;
  319.       return 1;
  320.     default:
  321.       abort ();
  322.     }
  323. }
  324.  
  325. /* Return nonzero if the next token matches STR exactly.
  326.    STR must not be NULL.  */
  327.  
  328. static int
  329. nextarg (str)
  330.      char *str;
  331. {
  332.   if (*args == NULL)
  333.     return 0;
  334.   return strcmp (*args, str) == 0;
  335. }
  336.  
  337. /* Return nonzero if there no more tokens.  */
  338.  
  339. static int
  340. nomoreargs ()
  341. {
  342.   return *args == 0;
  343. }
  344.  
  345. /* The comparison operator handling functions.  */
  346.  
  347. #define cmpf(name, rel)                \
  348. static                        \
  349. int name (l, r) VALUE *l; VALUE *r;        \
  350. {                        \
  351.   if (isstring (l) || isstring (r))        \
  352.     {                        \
  353.        tostring (l);                \
  354.        tostring (r);                \
  355.        return strcmp (l->u.s, r->u.s) rel 0;    \
  356.     }                        \
  357.  else                        \
  358.    return l->u.i rel r->u.i;            \
  359. }
  360. cmpf (less_than, <)
  361. cmpf (less_equal, <=)
  362. cmpf (equal, ==)
  363. cmpf (not_equal, !=)
  364. cmpf (greater_equal, >=)
  365. cmpf (greater_than, >)
  366.  
  367. #undef cmpf
  368.  
  369. /* The arithmetic operator handling functions.  */
  370.  
  371. #define arithf(name, op)            \
  372. static                        \
  373. int name (l, r) VALUE *l; VALUE *r;        \
  374. {                        \
  375.   if (!toarith (l) || !toarith (r))        \
  376.     error (2, 0, "non-numeric argument");    \
  377.   return l->u.i op r->u.i;            \
  378. }
  379.  
  380. #define arithdivf(name, op)            \
  381. int name (l, r) VALUE *l; VALUE *r;        \
  382. {                        \
  383.   if (!toarith (l) || !toarith (r))        \
  384.     error (2, 0, "non-numer