2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 16:24:54 +00:00
|
|
|
#include "internal.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */
|
|
|
|
|
1999-10-19 20:03:34 +00:00
|
|
|
static const char math_usage[] = "math expression ...";
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static double stack[100];
|
|
|
|
static unsigned int pointer;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void push(double a)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
if (pointer >= (sizeof(stack) / sizeof(*stack))) {
|
1999-10-05 16:24:54 +00:00
|
|
|
fprintf(stderr, "math: stack overflow\n");
|
|
|
|
exit(-1);
|
2000-02-08 19:58:47 +00:00
|
|
|
} else
|
1999-10-05 16:24:54 +00:00
|
|
|
stack[pointer++] = a;
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static double pop()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
if (pointer == 0) {
|
1999-10-05 16:24:54 +00:00
|
|
|
fprintf(stderr, "math: stack underflow\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
return stack[--pointer];
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void add()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
|
|
|
push(pop() + pop());
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void sub()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
double subtrahend = pop();
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
push(pop() - subtrahend);
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void mul()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
|
|
|
push(pop() * pop());
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void divide()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
double divisor = pop();
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
push(pop() / divisor);
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void and()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
push((unsigned int) pop() & (unsigned int) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void or()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
push((unsigned int) pop() | (unsigned int) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void eor()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
push((unsigned int) pop() ^ (unsigned int) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void not()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
push(~(unsigned int) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void print()
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
|
|
|
printf("%g\n", pop());
|
|
|
|
}
|
|
|
|
|
|
|
|
struct op {
|
2000-02-08 19:58:47 +00:00
|
|
|
const char *name;
|
|
|
|
void (*function) ();
|
1999-10-05 16:24:54 +00:00
|
|
|
};
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static const struct op operators[] = {
|
|
|
|
{"add", add},
|
|
|
|
{"and", and},
|
|
|
|
{"div", divide},
|
|
|
|
{"eor", eor},
|
|
|
|
{"mul", mul},
|
|
|
|
{"not", not},
|
|
|
|
{"or", or},
|
|
|
|
{"sub", sub},
|
|
|
|
{0, 0}
|
1999-10-05 16:24:54 +00:00
|
|
|
};
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static void stack_machine(const char *argument)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
char *endPointer = 0;
|
|
|
|
double d;
|
|
|
|
const struct op *o = operators;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
if (argument == 0) {
|
1999-10-05 16:24:54 +00:00
|
|
|
print();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = strtod(argument, &endPointer);
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
if (endPointer != argument) {
|
1999-10-05 16:24:54 +00:00
|
|
|
push(d);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
while (o->name != 0) {
|
|
|
|
if (strcmp(o->name, argument) == 0) {
|
|
|
|
(*(o->function)) ();
|
1999-10-05 16:24:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
o++;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "math: %s: syntax error.\n", argument);
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
int math_main(int argc, char **argv)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-02-08 19:58:47 +00:00
|
|
|
while (argc >= 2) {
|
1999-10-05 16:24:54 +00:00
|
|
|
stack_machine(argv[1]);
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
}
|
|
|
|
stack_machine(0);
|
|
|
|
return 0;
|
|
|
|
}
|