#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: arith_token.c,v 1.8 2026/03/22 19:18:50 kre Exp $");
#endif
#include <inttypes.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "shell.h"
#include "arith_tokens.h"
#include "expand.h"
#include "error.h"
#include "memalloc.h"
#include "parser.h"
#include "syntax.h"
#include "show.h"
#if ARITH_BOR + ARITH_ASS_GAP != ARITH_BORASS || \
ARITH_ASS + ARITH_ASS_GAP != ARITH_EQ
#error Arithmetic tokens are out of order.
#endif
int
arith_token(void)
{
int token;
const char *buf = arith_buf;
char *end;
const char *p;
for (;;) {
token = *buf;
if (is_digit(token)) {
a_t_val.val = strtoimax(buf, &end, 0);
if (is_in_name(*end)) {
token = *end;
while (is_in_name(*++end))
continue;
error("arithmetic: unexpected '%c' "
"(out of range) in numeric constant: "
"%.*s", token, (int)(end - buf), buf);
}
arith_buf = end;
VTRACE(DBG_ARITH, ("Arith token ARITH_NUM=%jd\n",
a_t_val.val));
return ARITH_NUM;
} else if (is_name(token)) {
arith_var_lno = arith_lno;
p = buf;
while (buf++, is_in_name(*buf))
;
a_t_val.name = stalloc(buf - p + 1);
memcpy(a_t_val.name, p, buf - p);
a_t_val.name[buf - p] = '\0';
arith_buf = buf;
VTRACE(DBG_ARITH, ("Arith token ARITH_VAR=\"%s\"\n",
a_t_val.name));
return ARITH_VAR;
} else switch (token) {
case '\n':
arith_lno++;
VTRACE(DBG_ARITH, ("Arith: newline\n"));
case ' ':
case '\t':
buf++;
continue;
default:
error("arithmetic: unexpected '%c' (%#x) in expression",
token, token);
case '=':
token = ARITH_ASS;
checkeq:
buf++;
checkeqcur:
if (*buf != '=')
goto out;
token += ARITH_ASS_GAP;
break;
case '>':
switch (*++buf) {
case '=':
token = ARITH_GE;
break;
case '>':
token = ARITH_RSHIFT;
goto checkeq;
default:
token = ARITH_GT;
goto out;
}
break;
case '<':
switch (*++buf) {
case '=':
token = ARITH_LE;
break;
case '<':
token = ARITH_LSHIFT;
goto checkeq;
default:
token = ARITH_LT;
goto out;
}
break;
case '|':
if (*++buf != '|') {
token = ARITH_BOR;
goto checkeqcur;
}
token = ARITH_OR;
break;
case '&':
if (*++buf != '&') {
token = ARITH_BAND;
goto checkeqcur;
}
token = ARITH_AND;
break;
case '!':
if (*++buf != '=') {
token = ARITH_NOT;
goto out;
}
token = ARITH_NE;
break;
case 0:
goto out;
case '(':
token = ARITH_LPAREN;
break;
case ')':
token = ARITH_RPAREN;
break;
case '*':
token = ARITH_MUL;
goto checkeq;
case '/':
token = ARITH_DIV;
goto checkeq;
case '%':
token = ARITH_REM;
goto checkeq;
case '+':
if (buf[1] == '+') {
buf++;
token = ARITH_INCR;
break;
}
token = ARITH_ADD;
goto checkeq;
case '-':
if (buf[1] == '-') {
buf++;
token = ARITH_DECR;
break;
}
token = ARITH_SUB;
goto checkeq;
case '~':
token = ARITH_BNOT;
break;
case '^':
token = ARITH_BXOR;
goto checkeq;
case '?':
token = ARITH_QMARK;
break;
case ':':
token = ARITH_COLON;
break;
case ',':
token = ARITH_COMMA;
break;
}
break;
}
buf++;
out:
arith_buf = buf;
VTRACE(DBG_ARITH, ("Arith token: %d\n", token));
return token;
}