2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-07-12 07:56:04 +00:00
|
|
|
/*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
/* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */
|
|
|
|
|
2007-03-24 14:06:51 +00:00
|
|
|
|
2008-03-17 09:29:43 +00:00
|
|
|
struct globals {
|
|
|
|
unsigned pointer;
|
|
|
|
unsigned base;
|
|
|
|
double stack[1];
|
2010-02-04 14:00:15 +00:00
|
|
|
} FIX_ALIASING;
|
2008-03-17 09:29:43 +00:00
|
|
|
enum { STACK_SIZE = (COMMON_BUFSIZE - offsetof(struct globals, stack)) / sizeof(double) };
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define pointer (G.pointer )
|
|
|
|
#define base (G.base )
|
|
|
|
#define stack (G.stack )
|
2008-12-30 10:40:05 +00:00
|
|
|
#define INIT_G() do { \
|
|
|
|
base = 10; \
|
|
|
|
} while (0)
|
2008-03-17 09:29:43 +00:00
|
|
|
|
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
|
|
|
{
|
2007-03-24 14:06:51 +00:00
|
|
|
if (pointer >= STACK_SIZE)
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("stack overflow");
|
2000-12-01 02:55:13 +00:00
|
|
|
stack[pointer++] = a;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static double pop(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2000-12-01 02:55:13 +00:00
|
|
|
if (pointer == 0)
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_error_msg_and_die("stack underflow");
|
1999-10-05 16:24:54 +00:00
|
|
|
return stack[--pointer];
|
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void add(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
|
|
|
push(pop() + pop());
|
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void sub(void)
|
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);
|
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void mul(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
|
|
|
push(pop() * pop());
|
|
|
|
}
|
|
|
|
|
2008-10-20 08:43:10 +00:00
|
|
|
#if ENABLE_FEATURE_DC_LIBM
|
2003-10-22 11:24:39 +00:00
|
|
|
static void power(void)
|
|
|
|
{
|
|
|
|
double topower = pop();
|
|
|
|
|
|
|
|
push(pow(pop(), topower));
|
|
|
|
}
|
2008-10-20 08:43:10 +00:00
|
|
|
#endif
|
2003-10-22 11:24:39 +00:00
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void divide(void)
|
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);
|
|
|
|
}
|
|
|
|
|
2003-10-22 11:24:39 +00:00
|
|
|
static void mod(void)
|
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
unsigned d = pop();
|
2003-10-22 11:24:39 +00:00
|
|
|
|
2008-03-17 09:29:43 +00:00
|
|
|
push((unsigned) pop() % d);
|
2003-10-22 11:24:39 +00:00
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void and(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
push((unsigned) pop() & (unsigned) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void or(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
push((unsigned) pop() | (unsigned) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void eor(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
push((unsigned) pop() ^ (unsigned) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2001-12-06 03:29:37 +00:00
|
|
|
static void not(void)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
push(~(unsigned) pop());
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2002-12-12 10:31:53 +00:00
|
|
|
static void set_output_base(void)
|
|
|
|
{
|
2008-10-30 23:25:50 +00:00
|
|
|
static const char bases[] ALIGN1 = { 2, 8, 10, 16, 0 };
|
|
|
|
unsigned b = (unsigned)pop();
|
|
|
|
|
|
|
|
base = *strchrnul(bases, b);
|
|
|
|
if (base == 0) {
|
|
|
|
bb_error_msg("error, base %u is not supported", b);
|
2007-03-24 14:06:51 +00:00
|
|
|
base = 10;
|
2002-12-12 10:31:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_base(double print)
|
|
|
|
{
|
2008-10-30 23:25:50 +00:00
|
|
|
unsigned x, i;
|
|
|
|
|
|
|
|
if (base == 10) {
|
2007-03-24 14:06:51 +00:00
|
|
|
printf("%g\n", print);
|
2008-10-30 23:25:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
x = (unsigned)print;
|
|
|
|
switch (base) {
|
|
|
|
case 16:
|
|
|
|
printf("%x\n", x);
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
printf("%o\n", x);
|
|
|
|
break;
|
|
|
|
default: /* base 2 */
|
|
|
|
i = (unsigned)INT_MAX + 1;
|
|
|
|
do {
|
|
|
|
if (x & i) break;
|
|
|
|
i >>= 1;
|
|
|
|
} while (i > 1);
|
|
|
|
do {
|
|
|
|
bb_putchar('1' - !(x & i));
|
|
|
|
i >>= 1;
|
|
|
|
} while (i);
|
|
|
|
bb_putchar('\n');
|
|
|
|
}
|
2002-12-12 10:31:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void print_stack_no_pop(void)
|
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
unsigned i = pointer;
|
2002-12-12 10:31:53 +00:00
|
|
|
while (i)
|
|
|
|
print_base(stack[--i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void print_no_pop(void)
|
|
|
|
{
|
|
|
|
print_base(stack[pointer-1]);
|
|
|
|
}
|
|
|
|
|
1999-10-05 16:24:54 +00:00
|
|
|
struct op {
|
2007-03-24 14:06:51 +00:00
|
|
|
const char name[4];
|
2001-12-06 03:29:37 +00:00
|
|
|
void (*function) (void);
|
1999-10-05 16:24:54 +00:00
|
|
|
};
|
|
|
|
|
2000-02-08 19:58:47 +00:00
|
|
|
static const struct op operators[] = {
|
2000-06-21 18:00:46 +00:00
|
|
|
{"+", add},
|
|
|
|
{"add", add},
|
|
|
|
{"-", sub},
|
|
|
|
{"sub", sub},
|
|
|
|
{"*", mul},
|
|
|
|
{"mul", mul},
|
|
|
|
{"/", divide},
|
|
|
|
{"div", divide},
|
2008-10-20 08:43:10 +00:00
|
|
|
#if ENABLE_FEATURE_DC_LIBM
|
2003-10-22 11:24:39 +00:00
|
|
|
{"**", power},
|
|
|
|
{"exp", power},
|
|
|
|
{"pow", power},
|
2008-10-20 08:43:10 +00:00
|
|
|
#endif
|
2003-10-22 11:24:39 +00:00
|
|
|
{"%", mod},
|
|
|
|
{"mod", mod},
|
2000-02-08 19:58:47 +00:00
|
|
|
{"and", and},
|
2000-06-21 18:00:46 +00:00
|
|
|
{"or", or},
|
2000-04-15 16:34:54 +00:00
|
|
|
{"not", not},
|
|
|
|
{"eor", eor},
|
2003-10-22 11:24:39 +00:00
|
|
|
{"xor", eor},
|
2002-12-12 10:31:53 +00:00
|
|
|
{"p", print_no_pop},
|
|
|
|
{"f", print_stack_no_pop},
|
|
|
|
{"o", set_output_base},
|
2009-09-06 10:47:55 +00:00
|
|
|
{ "", NULL }
|
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
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
char *endPointer;
|
2000-02-08 19:58:47 +00:00
|
|
|
double d;
|
|
|
|
const struct op *o = operators;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
d = strtod(argument, &endPointer);
|
|
|
|
|
2009-12-30 17:37:08 +00:00
|
|
|
if (endPointer != argument && *endPointer == '\0') {
|
1999-10-05 16:24:54 +00:00
|
|
|
push(d);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-30 17:37:08 +00:00
|
|
|
while (o->function) {
|
2000-02-08 19:58:47 +00:00
|
|
|
if (strcmp(o->name, argument) == 0) {
|
2007-03-24 14:06:51 +00:00
|
|
|
o->function();
|
1999-10-05 16:24:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
o++;
|
|
|
|
}
|
2009-12-30 17:37:08 +00:00
|
|
|
bb_error_msg_and_die("syntax error at '%s'", argument);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
|
|
|
|
2000-06-12 22:59:12 +00:00
|
|
|
/* return pointer to next token in buffer and set *buffer to one char
|
2004-03-15 08:29:22 +00:00
|
|
|
* past the end of the above mentioned token
|
2000-06-12 22:59:12 +00:00
|
|
|
*/
|
|
|
|
static char *get_token(char **buffer)
|
|
|
|
{
|
2008-03-17 09:29:43 +00:00
|
|
|
char *current = skip_whitespace(*buffer);
|
|
|
|
if (*current != '\0') {
|
|
|
|
*buffer = skip_non_whitespace(current);
|
|
|
|
return current;
|
2000-06-12 22:59:12 +00:00
|
|
|
}
|
2008-03-17 09:29:43 +00:00
|
|
|
return NULL;
|
2000-06-12 22:59:12 +00:00
|
|
|
}
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int dc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int dc_main(int argc UNUSED_PARAM, char **argv)
|
2008-03-17 09:29:43 +00:00
|
|
|
{
|
2008-03-17 09:33:45 +00:00
|
|
|
INIT_G();
|
|
|
|
|
2008-03-17 09:29:43 +00:00
|
|
|
argv++;
|
|
|
|
if (!argv[0]) {
|
|
|
|
/* take stuff from stdin if no args are given */
|
|
|
|
char *line;
|
|
|
|
char *cursor;
|
|
|
|
char *token;
|
2008-03-26 20:04:27 +00:00
|
|
|
while ((line = xmalloc_fgetline(stdin)) != NULL) {
|
2000-06-12 22:59:12 +00:00
|
|
|
cursor = line;
|
2008-03-17 09:29:43 +00:00
|
|
|
while (1) {
|
2000-06-12 22:59:12 +00:00
|
|
|
token = get_token(&cursor);
|
2009-12-30 17:37:08 +00:00
|
|
|
if (!token)
|
|
|
|
break;
|
2008-03-17 09:29:43 +00:00
|
|
|
*cursor++ = '\0';
|
2000-06-12 22:59:12 +00:00
|
|
|
stack_machine(token);
|
|
|
|
}
|
|
|
|
free(line);
|
|
|
|
}
|
|
|
|
} else {
|
2009-12-30 17:37:08 +00:00
|
|
|
// why? it breaks "dc -2 2 * p"
|
|
|
|
//if (argv[0][0] == '-')
|
|
|
|
// bb_show_usage();
|
2008-03-17 09:29:43 +00:00
|
|
|
do {
|
|
|
|
stack_machine(*argv);
|
|
|
|
} while (*++argv);
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|