3 * Written by Pace Willisson (pace@blitz.com)
4 * and placed in the public domain.
6 * Largely rewritten by J.T. Conklin (jtc@wimsey.com)
8 * $FreeBSD: src/bin/expr/expr.y,v 1.28 2011/07/09 12:20:15 se Exp $
11 #include <sys/types.h>
26 * POSIX specifies a specific error code for syntax errors. We exit
27 * with this code for all errors.
32 integer, numeric_string, string
47 void assert_to_integer(struct val *);
48 void assert_div(intmax_t, intmax_t);
49 void assert_minus(intmax_t, intmax_t, intmax_t);
50 void assert_plus(intmax_t, intmax_t, intmax_t);
51 void assert_times(intmax_t, intmax_t, intmax_t);
52 int compare_vals(struct val *, struct val *);
53 void free_value(struct val *);
54 int is_integer(const char *);
55 int is_string(struct val *);
56 int is_zero_or_null(struct val *);
57 struct val *make_integer(intmax_t);
58 struct val *make_str(const char *);
59 struct val *op_and(struct val *, struct val *);
60 struct val *op_colon(struct val *, struct val *);
61 struct val *op_div(struct val *, struct val *);
62 struct val *op_eq(struct val *, struct val *);
63 struct val *op_ge(struct val *, struct val *);
64 struct val *op_gt(struct val *, struct val *);
65 struct val *op_le(struct val *, struct val *);
66 struct val *op_lt(struct val *, struct val *);
67 struct val *op_minus(struct val *, struct val *);
68 struct val *op_ne(struct val *, struct val *);
69 struct val *op_or(struct val *, struct val *);
70 struct val *op_plus(struct val *, struct val *);
71 struct val *op_rem(struct val *, struct val *);
72 struct val *op_times(struct val *, struct val *);
73 int to_integer(struct val *);
74 void to_string(struct val *);
75 int yyerror(const char *);
88 %left <val> '=' '>' '<' GE LE NE
90 %left <val> '*' '/' '%'
94 %type <val> start expr
98 start: expr { result = $$; }
101 | '(' expr ')' { $$ = $2; }
102 | expr '|' expr { $$ = op_or($1, $3); }
103 | expr '&' expr { $$ = op_and($1, $3); }
104 | expr '=' expr { $$ = op_eq($1, $3); }
105 | expr '>' expr { $$ = op_gt($1, $3); }
106 | expr '<' expr { $$ = op_lt($1, $3); }
107 | expr GE expr { $$ = op_ge($1, $3); }
108 | expr LE expr { $$ = op_le($1, $3); }
109 | expr NE expr { $$ = op_ne($1, $3); }
110 | expr '+' expr { $$ = op_plus($1, $3); }
111 | expr '-' expr { $$ = op_minus($1, $3); }
112 | expr '*' expr { $$ = op_times($1, $3); }
113 | expr '/' expr { $$ = op_div($1, $3); }
114 | expr '%' expr { $$ = op_rem($1, $3); }
115 | expr ':' expr { $$ = op_colon($1, $3); }
121 make_integer(intmax_t i)
125 vp = (struct val *)malloc(sizeof(*vp));
127 errx(ERR_EXIT, "malloc() failed");
135 make_str(const char *s)
139 vp = (struct val *)malloc(sizeof(*vp));
140 if (vp == NULL || ((vp->u.s = strdup(s)) == NULL))
141 errx(ERR_EXIT, "malloc() failed");
144 vp->type = numeric_string;
152 free_value(struct val *vp)
154 if (vp->type == string || vp->type == numeric_string)
159 to_integer(struct val *vp)
163 /* we can only convert numeric_string to integer, here */
164 if (vp->type == numeric_string) {
166 i = strtoimax(vp->u.s, (char **)NULL, 10);
167 /* just keep as numeric_string, if the conversion fails */
168 if (errno != ERANGE) {
174 return (vp->type == integer);
178 assert_to_integer(struct val *vp)
180 if (vp->type == string)
181 errx(ERR_EXIT, "not a decimal number: '%s'", vp->u.s);
183 errx(ERR_EXIT, "operand too large: '%s'", vp->u.s);
187 to_string(struct val *vp)
191 if (vp->type == string || vp->type == numeric_string)
195 * log_10(x) ~= 0.3 * log_2(x). Rounding up gives the number
196 * of digits; add one each for the sign and terminating null
197 * character, respectively.
199 #define NDIGITS(x) (3 * (sizeof(x) * CHAR_BIT) / 10 + 1 + 1 + 1)
200 tmp = malloc(NDIGITS(vp->u.i));
202 errx(ERR_EXIT, "malloc() failed");
204 sprintf(tmp, "%jd", vp->u.i);
210 is_integer(const char *s)
215 while (isspace((unsigned char)*s))
218 if (*s == '-' || (nonposix && *s == '+'))
222 while (isdigit((unsigned char)*s))
228 is_string(struct val *vp)
230 /* only TRUE if this string is not a valid integer */
231 return (vp->type == string);
244 if (strlen(p) == 1) {
245 if (strchr("|&=<>+-*/%:()", *p))
247 } else if (strlen(p) == 2 && p[1] == '=') {
249 case '>': return (GE);
250 case '<': return (LE);
251 case '!': return (NE);
255 yylval.val = make_str(p);
260 is_zero_or_null(struct val *vp)
262 if (vp->type == integer)
263 return (vp->u.i == 0);
265 return (*vp->u.s == 0 || (to_integer(vp) && vp->u.i == 0));
269 main(int argc, char *argv[])
275 setlocale(LC_ALL, "");
278 if (*av && !strcmp(*av, "--"))
281 if (getenv("EXPR_COMPAT") != NULL
282 || check_utility_compat("expr")) {
286 while ((c = getopt(argc, argv, "e")) != -1) {
293 "usage: expr [-e] expression\n");
303 if (to_integer(result))
305 if (result->type == integer)
307 printf("%jd\n", result->u.i);
309 printf("%s\n", result->u.s);
311 return (is_zero_or_null(result));
315 yyerror(const char *s __unused)
317 errx(ERR_EXIT, "syntax error");
321 op_or(struct val *a, struct val *b)
323 if (!is_zero_or_null(a)) {
328 if (!is_zero_or_null(b))
331 return (make_integer((intmax_t)0));
335 op_and(struct val *a, struct val *b)
337 if (is_zero_or_null(a) || is_zero_or_null(b)) {
340 return (make_integer((intmax_t)0));
348 compare_vals(struct val *a, struct val *b)
352 if (is_string(a) || is_string(b)) {
355 r = strcoll(a->u.s, b->u.s);
357 assert_to_integer(a);
358 assert_to_integer(b);
361 else if (a->u.i < b->u.i)
373 op_eq(struct val *a, struct val *b)
375 return (make_integer((intmax_t)(compare_vals(a, b) == 0)));
379 op_gt(struct val *a, struct val *b)
381 return (make_integer((intmax_t)(compare_vals(a, b) > 0)));
385 op_lt(struct val *a, struct val *b)
387 return (make_integer((intmax_t)(compare_vals(a, b) < 0)));
391 op_ge(struct val *a, struct val *b)
393 return (make_integer((intmax_t)(compare_vals(a, b) >= 0)));
397 op_le(struct val *a, struct val *b)
399 return (make_integer((intmax_t)(compare_vals(a, b) <= 0)));
403 op_ne(struct val *a, struct val *b)
405 return (make_integer((intmax_t)(compare_vals(a, b) != 0)));
409 assert_plus(intmax_t a, intmax_t b, intmax_t r)
412 * sum of two positive numbers must be positive,
413 * sum of two negative numbers must be negative
415 if ((a > 0 && b > 0 && r <= 0) ||
416 (a < 0 && b < 0 && r >= 0))
417 errx(ERR_EXIT, "overflow");
421 op_plus(struct val *a, struct val *b)
425 assert_to_integer(a);
426 assert_to_integer(b);
427 r = make_integer(a->u.i + b->u.i);
428 assert_plus(a->u.i, b->u.i, r->u.i);
436 assert_minus(intmax_t a, intmax_t b, intmax_t r)
438 /* special case subtraction of INTMAX_MIN */
439 if (b == INTMAX_MIN && a < 0)
440 errx(ERR_EXIT, "overflow");
441 /* check addition of negative subtrahend */
442 assert_plus(a, -b, r);
446 op_minus(struct val *a, struct val *b)
450 assert_to_integer(a);
451 assert_to_integer(b);
452 r = make_integer(a->u.i - b->u.i);
453 assert_minus(a->u.i, b->u.i, r->u.i);
461 assert_times(intmax_t a, intmax_t b, intmax_t r)
464 * if first operand is 0, no overflow is possible,
465 * else result of division test must match second operand
467 if (a != 0 && r / a != b)
468 errx(ERR_EXIT, "overflow");
472 op_times(struct val *a, struct val *b)
476 assert_to_integer(a);
477 assert_to_integer(b);
478 r = make_integer(a->u.i * b->u.i);
479 assert_times(a->u.i, b->u.i, r->u.i);
487 assert_div(intmax_t a, intmax_t b)
490 errx(ERR_EXIT, "division by zero");
491 /* only INTMAX_MIN / -1 causes overflow */
492 if (a == INTMAX_MIN && b == -1)
493 errx(ERR_EXIT, "overflow");
497 op_div(struct val *a, struct val *b)
501 assert_to_integer(a);
502 assert_to_integer(b);
503 /* assert based on operands only, not on result */
504 assert_div(a->u.i, b->u.i);
505 r = make_integer(a->u.i / b->u.i);
513 op_rem(struct val *a, struct val *b)
517 assert_to_integer(a);
518 assert_to_integer(b);
519 /* pass a=1 to only check for div by zero */
520 assert_div(1, b->u.i);
521 r = make_integer(a->u.i % b->u.i);
529 op_colon(struct val *a, struct val *b)
537 /* coerce both arguments to strings */
541 /* compile regular expression */
542 if ((eval = regcomp(&rp, b->u.s, 0)) != 0) {
543 regerror(eval, &rp, errbuf, sizeof(errbuf));
544 errx(ERR_EXIT, "%s", errbuf);
547 /* compare string against pattern */
548 /* remember that patterns are anchored to the beginning of the line */
549 if (regexec(&rp, a->u.s, (size_t)2, rm, 0) == 0 && rm[0].rm_so == 0)
550 if (rm[1].rm_so >= 0) {
551 *(a->u.s + rm[1].rm_eo) = '\0';
552 v = make_str(a->u.s + rm[1].rm_so);
554 v->type = string; /* 8319378 */
558 v = make_integer((intmax_t)(rm[0].rm_eo - rm[0].rm_so));
561 v = make_integer((intmax_t)0);
565 /* free arguments and pattern buffer */