2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-06-13 04:29:12 +05:30
|
|
|
#include <ctype.h>
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2001-03-09 20:06:42 +05:30
|
|
|
#include <string.h>
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <math.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
/* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static double stack[100];
|
|
|
|
static unsigned int pointer;
|
2002-12-12 16:01:53 +05:30
|
|
|
static unsigned char base;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static void push(double a)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-12-01 08:25:13 +05:30
|
|
|
if (pointer >= (sizeof(stack) / sizeof(*stack)))
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("stack overflow");
|
2000-12-01 08:25:13 +05:30
|
|
|
stack[pointer++] = a;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static double pop(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-12-01 08:25:13 +05:30
|
|
|
if (pointer == 0)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("stack underflow");
|
1999-10-05 21:54:54 +05:30
|
|
|
return stack[--pointer];
|
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void add(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
|
|
|
push(pop() + pop());
|
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void sub(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
double subtrahend = pop();
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
push(pop() - subtrahend);
|
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void mul(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
|
|
|
push(pop() * pop());
|
|
|
|
}
|
|
|
|
|
2003-10-22 16:54:39 +05:30
|
|
|
static void power(void)
|
|
|
|
{
|
|
|
|
double topower = pop();
|
|
|
|
|
|
|
|
push(pow(pop(), topower));
|
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void divide(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
double divisor = pop();
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
push(pop() / divisor);
|
|
|
|
}
|
|
|
|
|
2003-10-22 16:54:39 +05:30
|
|
|
static void mod(void)
|
|
|
|
{
|
|
|
|
unsigned int d = pop();
|
|
|
|
|
|
|
|
push((unsigned int) pop() % d);
|
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void and(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
push((unsigned int) pop() & (unsigned int) pop());
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void or(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
push((unsigned int) pop() | (unsigned int) pop());
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void eor(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
push((unsigned int) pop() ^ (unsigned int) pop());
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void not(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
push(~(unsigned int) pop());
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2002-12-12 16:01:53 +05:30
|
|
|
static void set_output_base(void)
|
|
|
|
{
|
|
|
|
base=(unsigned char)pop();
|
|
|
|
if ((base != 10) && (base != 16)) {
|
|
|
|
fprintf(stderr, "Error: base = %d is not supported.\n", base);
|
|
|
|
base=10;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_base(double print)
|
|
|
|
{
|
|
|
|
if (base == 16)
|
|
|
|
printf("%x\n", (unsigned int)print);
|
|
|
|
else
|
|
|
|
printf("%g\n", print);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_stack_no_pop(void)
|
|
|
|
{
|
|
|
|
unsigned int i=pointer;
|
|
|
|
while (i)
|
|
|
|
print_base(stack[--i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_no_pop(void)
|
|
|
|
{
|
|
|
|
print_base(stack[pointer-1]);
|
|
|
|
}
|
|
|
|
|
2001-12-06 08:59:37 +05:30
|
|
|
static void print(void)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2002-12-12 16:01:53 +05:30
|
|
|
print_base(pop());
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
struct op {
|
2000-02-09 01:28:47 +05:30
|
|
|
const char *name;
|
2001-12-06 08:59:37 +05:30
|
|
|
void (*function) (void);
|
1999-10-05 21:54:54 +05:30
|
|
|
};
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static const struct op operators[] = {
|
2000-06-21 23:30:46 +05:30
|
|
|
{"+", add},
|
|
|
|
{"add", add},
|
|
|
|
{"-", sub},
|
|
|
|
{"sub", sub},
|
|
|
|
{"*", mul},
|
|
|
|
{"mul", mul},
|
|
|
|
{"/", divide},
|
|
|
|
{"div", divide},
|
2003-10-22 16:54:39 +05:30
|
|
|
{"**", power},
|
|
|
|
{"exp", power},
|
|
|
|
{"pow", power},
|
|
|
|
{"%", mod},
|
|
|
|
{"mod", mod},
|
2000-02-09 01:28:47 +05:30
|
|
|
{"and", and},
|
2000-06-21 23:30:46 +05:30
|
|
|
{"or", or},
|
2000-04-15 22:04:54 +05:30
|
|
|
{"not", not},
|
|
|
|
{"eor", eor},
|
2003-10-22 16:54:39 +05:30
|
|
|
{"xor", eor},
|
2002-12-12 16:01:53 +05:30
|
|
|
{"p", print_no_pop},
|
|
|
|
{"f", print_stack_no_pop},
|
|
|
|
{"o", set_output_base},
|
2000-06-21 23:30:46 +05:30
|
|
|
{0, 0}
|
1999-10-05 21:54:54 +05:30
|
|
|
};
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
static void stack_machine(const char *argument)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
char *endPointer = 0;
|
|
|
|
double d;
|
|
|
|
const struct op *o = operators;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argument == 0) {
|
1999-10-05 21:54:54 +05:30
|
|
|
print();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
d = strtod(argument, &endPointer);
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (endPointer != argument) {
|
1999-10-05 21:54:54 +05:30
|
|
|
push(d);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while (o->name != 0) {
|
|
|
|
if (strcmp(o->name, argument) == 0) {
|
|
|
|
(*(o->function)) ();
|
1999-10-05 21:54:54 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
o++;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("%s: syntax error.", argument);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2000-06-13 04:29:12 +05:30
|
|
|
/* return pointer to next token in buffer and set *buffer to one char
|
|
|
|
* past the end of the above mentioned token
|
|
|
|
*/
|
|
|
|
static char *get_token(char **buffer)
|
|
|
|
{
|
|
|
|
char *start = NULL;
|
|
|
|
char *current = *buffer;
|
|
|
|
|
|
|
|
while (isspace(*current)) { current++; }
|
|
|
|
if (*current != 0) {
|
|
|
|
start = current;
|
2003-08-29 03:42:53 +05:30
|
|
|
while (!isspace(*current) && *current != 0) { current++; }
|
2000-06-13 04:29:12 +05:30
|
|
|
*buffer = current;
|
|
|
|
}
|
|
|
|
return start;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* In Perl one might say, scalar m|\s*(\S+)\s*|g */
|
|
|
|
static int number_of_tokens(char *buffer)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
char *b = buffer;
|
|
|
|
while (get_token(&b)) { i++; }
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2000-06-22 00:36:16 +05:30
|
|
|
int dc_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-06-13 04:29:12 +05:30
|
|
|
/* take stuff from stdin if no args are given */
|
|
|
|
if (argc <= 1) {
|
|
|
|
int i, len;
|
|
|
|
char *line = NULL;
|
|
|
|
char *cursor = NULL;
|
|
|
|
char *token = NULL;
|
2003-03-19 14:43:01 +05:30
|
|
|
while ((line = bb_get_chomped_line_from_file(stdin))) {
|
2000-06-13 04:29:12 +05:30
|
|
|
cursor = line;
|
|
|
|
len = number_of_tokens(line);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
token = get_token(&cursor);
|
|
|
|
*cursor++ = 0;
|
|
|
|
stack_machine(token);
|
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (*argv[1]=='-')
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2000-06-13 04:29:12 +05:30
|
|
|
while (argc >= 2) {
|
|
|
|
stack_machine(argv[1]);
|
|
|
|
argv++;
|
|
|
|
argc--;
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
stack_machine(0);
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|