-
Notifications
You must be signed in to change notification settings - Fork 90
/
calc.cpp
804 lines (758 loc) · 23 KB
/
calc.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
/*
* UAE - The Un*x Amiga Emulator
*
* Infix->RPN conversion and calculation
*
*/
/*
Original code from http://en.wikipedia.org/wiki/Shunting_yard_algorithm
*/
#define CALC_DEBUG 0
#if CALC_DEBUG
#define calc_log(x) do { write_log x; } while(0)
#else
#define calc_log(x)
#endif
#include "sysconfig.h"
#include "sysdeps.h"
#include "calc.h"
#include <string.h>
#include <stdio.h>
#define STACK_SIZE 32
#define MAX_VALUES 32
#define IOBUFFERS 256
uae_u32 get_byte_debug(uaecptr addr);
uae_u32 get_word_debug(uaecptr addr);
uae_u32 get_long_debug(uaecptr addr);
int getregidx(TCHAR **c);
uae_u32 returnregx(int regid);
static double parsedvaluesd[MAX_VALUES];
static TCHAR *parsedvaluess[MAX_VALUES];
// operators
// precedence operators associativity
// 1 ! right to left
// 2 * / % left to right
// 3 + - left to right
// 4 = right to left
static int op_preced(const TCHAR c)
{
switch(c) {
case 0xf0: case 0xf1: case 0xf2:
case '!':
return 4;
case '*': case '/': case '\\': case '%':
case '|': case '&': case '^':
return 3;
case '+': case '-':
return 2;
case '=': case '@': case '@' | 0x80: case '>': case '<': case '>' | 0x80: case '<' | 0x80:
return 1;
case ':':
return -1;
case '?':
return -2;
}
return 0;
}
static bool op_left_assoc(const TCHAR c)
{
switch(c) {
// left to right
case '*': case '/': case '%': case '+': case '-':
case '|': case '&': case '^':
case 0xf0: case 0xf1: case 0xf2:
return true;
// right to left
case '=': case '!': case '@': case '@' | 0x80: case '>': case '<': case '>' | 0x80: case '<' | 0x80:
return false;
}
return false;
}
static unsigned int op_arg_count(const TCHAR c)
{
switch(c) {
case '?':
return 3;
case '*': case '/': case '%': case '+': case '-': case '=': case '@': case '@' | 0x80: case '<': case '>':
case '|': case '&': case '^': case '<' | 0x80: case '>' | 0x80:
return 2;
case '!':
case ':':
case 0xf0: case 0xf1: case 0xf2:
return 1;
default:
return c - 'A';
}
return 0;
}
#define is_operator(c) (c == '+' || c == '-' || c == '/' || c == '*' || c == '!' || c == '%' || c == '=' || \
c == '|' || c == '&' || c == '^' || c == '@' || c == ('@' | 0x80) || c == '>' || c == '<' || c == ('>' | 0x80) || c == ('<' | 0x80) || \
c == '?' || c == ':' || c == 0xf0 || c == 0xf1 || c == 0xf2)
#define is_function(c) (c >= 'A' && c <= 'Z')
#define is_ident(c) ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'z'))
static bool shunting_yard(const TCHAR *input, TCHAR *output)
{
const TCHAR *strpos = input, *strend = input + _tcslen(input);
TCHAR c, *outpos = output;
TCHAR stack[STACK_SIZE]; // operator stack
unsigned int sl = 0; // stack length
TCHAR sc; // used for record stack element
while(strpos < strend) {
if (sl >= STACK_SIZE)
return false;
// read one token from the input stream
c = *strpos;
if(c != ' ') {
// If the token is a number (identifier), then add it to the output queue.
if(is_ident(c)) {
*outpos = c; ++outpos;
}
// If the token is a function token, then push it onto the stack.
else if(is_function(c)) {
stack[sl] = c;
++sl;
}
// If the token is a function argument separator (e.g., a comma):
else if(c == ',') {
bool pe = false;
while(sl > 0) {
sc = stack[sl - 1];
if(sc == '(') {
pe = true;
break;
}
else {
// Until the token at the top of the stack is a left parenthesis,
// pop operators off the stack onto the output queue.
*outpos = sc;
++outpos;
sl--;
}
}
// If no left parentheses are encountered, either the separator was misplaced
// or parentheses were mismatched.
if(!pe) {
calc_log ((_T("Error: separator or parentheses mismatched\n")));
return false;
}
}
// If the token is an operator, op1, then:
else if(is_operator(c)) {
while(sl > 0) {
sc = stack[sl - 1];
// While there is an operator token, o2, at the top of the stack
// op1 is left-associative and its precedence is less than or equal to that of op2,
// or op1 is right-associative and its precedence is less than that of op2,
if(is_operator(sc) &&
((op_left_assoc(c) && (op_preced(c) <= op_preced(sc))) ||
(!op_left_assoc(c) && (op_preced(c) < op_preced(sc))))) {
// Pop o2 off the stack, onto the output queue;
*outpos = sc;
++outpos;
sl--;
}
else {
break;
}
}
// push op1 onto the stack.
stack[sl] = c;
++sl;
}
// If the token is a left parenthesis, then push it onto the stack.
else if(c == '(') {
stack[sl] = c;
++sl;
}
// If the token is a right parenthesis:
else if(c == ')') {
bool pe = false;
// Until the token at the top of the stack is a left parenthesis,
// pop operators off the stack onto the output queue
while(sl > 0) {
sc = stack[sl - 1];
if(sc == '(') {
pe = true;
break;
}
else {
*outpos = sc;
++outpos;
sl--;
}
}
// If the stack runs out without finding a left parenthesis, then there are mismatched parentheses.
if(!pe) {
calc_log ((_T("Error: parentheses mismatched\n")));
return false;
}
// Pop the left parenthesis from the stack, but not onto the output queue.
sl--;
// If the token at the top of the stack is a function token, pop it onto the output queue.
if(sl > 0) {
sc = stack[sl - 1];
if(is_function(sc)) {
*outpos = sc;
++outpos;
sl--;
}
}
}
else {
calc_log ((_T("Unknown token %c\n"), c));
return false; // Unknown token
}
}
++strpos;
}
// When there are no more tokens to read:
// While there are still operator tokens in the stack:
while(sl > 0) {
sc = stack[sl - 1];
if(sc == '(' || sc == ')') {
printf("Error: parentheses mismatched\n");
return false;
}
*outpos = sc;
++outpos;
--sl;
}
*outpos = 0; // Null terminator
return true;
}
struct calcstack
{
TCHAR *s;
double val;
TCHAR *vals;
};
static double stacktoval(struct calcstack *st)
{
if (st->s) {
if (_tcslen(st->s) == 1 && st->s[0] >= 'a' && st->s[0] <= 'z')
return parsedvaluesd[st->s[0] - 'a'];
return _tstof(st->s);
} else {
return st->val;
}
}
static bool isstackstring(struct calcstack *st)
{
if (st->vals && st->vals[0]) {
return true;
}
if (st->s) {
if (_tcslen(st->s) == 1 && st->s[0] >= 'a' && st->s[0] <= 'z') {
TCHAR *s = parsedvaluess[st->s[0] - 'a'];
if (s) {
return true;
}
}
}
return false;
}
static TCHAR *stacktostring(struct calcstack *st)
{
if (st->s) {
if (_tcslen(st->s) == 1 && st->s[0] >= 'a' && st->s[0] <= 'z') {
TCHAR *s = parsedvaluess[st->s[0] - 'a'];
if (s) {
xfree(st->vals);
st->vals = my_strdup(s);
xfree(st->s);
st->s = NULL;
return st->vals;
}
double v = parsedvaluesd[st->s[0] - 'a'];
TCHAR tmp[256];
_stprintf(tmp, _T("%d"), (int)v);
xfree(st->vals);
st->vals = my_strdup(tmp);
xfree(st->s);
st->s = NULL;
return st->vals;
}
}
if (!st->vals || !st->vals[0]) {
TCHAR tmp[256];
_stprintf(tmp, _T("%d"), (int)st->val);
xfree(st->vals);
st->vals = my_strdup(tmp);
}
return st->vals;
}
static TCHAR *docalcxs(TCHAR op, TCHAR *v1, TCHAR *v2, double *voutp)
{
TCHAR tmp[MAX_DPATH];
tmp[0] = 0;
switch(op)
{
case '+':
_tcscpy(tmp, v1);
_tcscat(tmp, v2);
break;
case '@':
if (!_tcsicmp(v1, v2)) {
*voutp = 1;
return my_strdup(_T(""));
} else {
*voutp = 0;
return my_strdup(_T(""));
}
break;
case '@' | 0x80:
if (!_tcsicmp(v1, v2)) {
*voutp = 0;
return my_strdup(_T(""));
} else {
*voutp = 1;
return my_strdup(_T(""));
}
break;
case ':':
_tcscpy(tmp, v1);
break;
default:
return NULL;
}
return my_strdup(tmp);
}
static bool docalcx(TCHAR op, double v1, double v2, double *valp)
{
double v = 0;
switch (op)
{
case '-':
v = v1 - v2;
break;
case '+':
v = v1 + v2;
break;
case '*':
v = v1 * v2;
break;
case '/':
v = v1 / v2;
break;
case '\\':
v = (int)v1 % (int)v2;
break;
case '|':
v = (int)v1 | (int)v2;
break;
case '&':
v = (int)v1 & (int)v2;
break;
case '^':
v = (int)v1 ^ (int)v2;
break;
case '@':
v = (int)v1 == (int)v2;
break;
case '@' | 0x80:
v = (int)v1 != (int)v2;
break;
case '>':
v = (int)v1 > (int)v2;
break;
case '<':
v = (int)v1 < (int)v2;
break;
case '<' | 0x80:
if ((uae_u32)v2 < 32) {
v = (uae_u32)v1 << (uae_u32)v2;
}
break;
case '>' | 0x80:
if ((uae_u32)v2 < 32) {
v = (uae_u32)v1 >> (uae_u32)v2;
}
break;
case ':':
v = v1;
break;
case 0xf0:
v = get_byte_debug((uaecptr)v1);
break;
case 0xf1:
v = get_word_debug((uaecptr)v1);
break;
case 0xf2:
v = get_long_debug((uaecptr)v1);
break;
default:
return false;
}
*valp = v;
return true;
}
static bool docalc2(TCHAR op, struct calcstack *sv1, struct calcstack *sv2, double *valp, TCHAR *sp)
{
*sp = NULL;
*valp = 0;
if (isstackstring(sv1) || isstackstring(sv2)) {
TCHAR *v1 = stacktostring(sv1);
TCHAR *v2 = stacktostring(sv2);
double vout = 0;
TCHAR *s = docalcxs(op, v1, v2, &vout);
if (!s) {
return false;
}
_tcscpy(sp, s);
xfree(s);
if (vout) {
*valp = vout;
}
return true;
} else {
double v1 = stacktoval(sv1);
double v2 = stacktoval(sv2);
return docalcx(op, v1, v2, valp);
}
}
static bool docalc1(TCHAR op, struct calcstack *sv1, double v2, double *valp, TCHAR *sp)
{
if (isstackstring(sv1)) {
TCHAR *v1 = stacktostring(sv1);
double vout;
TCHAR *s = docalcxs(op, v1, _T(""), &vout);
if (!s) {
return false;
}
_tcscpy(sp, s);
xfree(s);
return true;
} else {
double v1 = stacktoval(sv1);
return docalcx(op, v1, v2, valp);
}
}
#if CALC_DEBUG
static TCHAR *stacktostr(struct calcstack *st)
{
static TCHAR out[256];
if (st->s)
return st->s;
_stprintf(out, _T("%f"), st->val);
return out;
}
#endif
static TCHAR *chartostack(TCHAR c)
{
TCHAR *s = xmalloc (TCHAR, 2);
s[0] = c;
s[1] = 0;
return s;
}
static struct calcstack stack[STACK_SIZE];
static bool execution_order(const TCHAR *input, double *outval, TCHAR *outstring, int maxlen)
{
const TCHAR *strpos = input, *strend = input + _tcslen(input);
TCHAR c, res[4];
unsigned int sl = 0, rn = 0;
struct calcstack *sc, *sc2;
double val = 0;
TCHAR vals[MAX_DPATH];
int i;
bool ok = false;
vals[0] = 0;
// While there are input tokens left
while(strpos < strend) {
if (sl >= STACK_SIZE)
return false;
// Read the next token from input.
c = *strpos;
// If the token is a value or identifier
if(is_ident(c)) {
// Push it onto the stack.
stack[sl].s = chartostack (c);
++sl;
}
// Otherwise, the token is an operator (operator here includes both operators, and functions).
else if(is_operator(c) || is_function(c)) {
_stprintf(res, _T("_%02d"), rn);
calc_log ((_T("%s = "), res));
++rn;
// It is known a priori that the operator takes n arguments.
unsigned int nargs = op_arg_count(c);
// If there are fewer than n values on the stack
if(sl < nargs) {
// (Error) The user has not input sufficient values in the expression.
return false;
}
// Else, Pop the top n values from the stack.
// Evaluate the operator, with the values as arguments.
if(is_function(c)) {
calc_log ((_T("%c("), c));
while(nargs > 0){
sc = &stack[sl - nargs]; // to remove reverse order of arguments
if(nargs > 1) {
calc_log ((_T("%s, "), sc));
}
else {
calc_log ((_T("%s)\n"), sc));
}
--nargs;
}
sl-=op_arg_count(c);
}
else {
if(nargs == 1) {
sc = &stack[sl - 1];
sl--;
docalc1 (c, sc, val, &val, vals);
calc_log ((_T("%c %s = %f;\n"), c, stacktostr(sc), val));
}
else if (nargs == 2) {
sc = &stack[sl - 2];
calc_log ((_T("%s %c "), stacktostr(sc), c));
sc2 = &stack[sl - 1];
docalc2 (c, sc, sc2, &val, vals);
sl--;sl--;
calc_log ((_T("%s = %f;\n"), stacktostr(sc2), val));
} else if (nargs == 3) {
// ternary
sc = &stack[sl - 3];
if (sc->val != 0) {
sc2 = &stack[sl - 2];
} else {
sc2 = &stack[sl - 1];
}
sl--;sl--;sl--;
if (isstackstring(sc2)) {
TCHAR *c = stacktostring(sc2);
_tcscpy(vals, c);
}
val = stacktoval(sc2);
}
}
// Push the returned results, if any, back onto the stack.
stack[sl].val = val;
xfree(stack[sl].vals);
stack[sl].vals = my_strdup(vals);
xfree(stack[sl].s);
stack[sl].s = NULL;
++sl;
}
++strpos;
}
// If there is only one value in the stack
// That value is the result of the calculation.
if(sl == 1) {
sc = &stack[sl - 1];
sl--;
calc_log ((_T("result = %f\n"), val));
if (outval)
*outval = val;
if (outstring) {
if (vals && _tcslen(vals) >= maxlen) {
vals[maxlen] = 0;
}
_tcscpy(outstring, vals ? vals : _T(""));
}
ok = true;
}
for (i = 0; i < STACK_SIZE; i++) {
xfree(stack[i].s);
stack[i].s = NULL;
xfree(stack[i].vals);
stack[i].vals = NULL;
}
// If there are more values in the stack
// (Error) The user input has too many values.
return ok;
}
static bool is_separator(TCHAR c)
{
if (is_operator(c))
return true;
return c == 0 || c == ')' || c == ' ';
}
static bool parse_values(const TCHAR *ins, TCHAR *out)
{
int ident = 0;
TCHAR tmp;
TCHAR inbuf[IOBUFFERS];
int op;
_tcscpy (inbuf, ins);
TCHAR *in = inbuf;
TCHAR *p = out;
op = 0;
if (in[0] == '-' || in[0] == '+') {
*p++ = '0';
}
while (*in) {
TCHAR *instart = in;
if (!_tcsncmp(in, _T("true"), 4) && is_separator(in[4])) {
in[0] = '1';
in[1] = ' ';
in[2] = ' ';
in[3] = ' ';
} else if (!_tcsncmp(in, _T("false"), 5) && is_separator(in[5])) {
in[0] = '0';
in[1] = ' ';
in[2] = ' ';
in[3] = ' ';
in[4] = ' ';
} else if (!_tcsncmp(in, _T("rl("), 3)) {
in[0] = 0xf2;
in[1] = ' ';
} else if (!_tcsncmp(in, _T("rw("), 3)) {
in[0] = 0xf1;
in[1] = ' ';
} else if (!_tcsncmp(in, _T("rb("), 3)) {
in[0] = 0xf0;
in[1] = ' ';
} else if (in[0] == '>' && in[1] == '>') {
in[0] = '>' | 0x80;
in[1] = ' ';
} else if (in[0] == '<' && in[1] == '<') {
in[0] = '<' | 0x80;
in[1] = ' ';
} else if (in[0] == '"' || in[0] == '\'') {
TCHAR *quoted = in;
TCHAR quotec = *in;
*in++ = 0;
if (ident >= MAX_VALUES)
return false;
*p++ = ident + 'a';
while (*in != 0 && *in != quotec) {
in++;
}
if (*in != quotec) {
return false;
}
*in = 0;
parsedvaluess[ident++] = my_strdup(quoted + 1);
while (quoted <= in) {
*quoted++ = ' ';
}
continue;
}
if (*in == '=' && *(in + 1) == '=') {
*in = '@';
*(in + 1) = ' ';
}
if (*in == '!' && *(in + 1) == '=') {
*in = '@' | 0x80;
*(in + 1) = ' ';
}
if (_totupper (*in) == 'R') {
if (ident >= MAX_VALUES)
return false;
TCHAR *tmpp = in + 1;
int idx = getregidx(&tmpp);
if (idx >= 0) {
*p++ = ident + 'a';
uae_u32 val = returnregx(idx);
parsedvaluesd[ident++] = val;
in = tmpp;
} else {
in++;
}
op = 0;
} else if (_istxdigit(*in) || *in == '$') {
if (ident >= MAX_VALUES)
return false;
if (op > 1 && (in[-1] == '-' || in[-1] == '+')) {
instart--;
p--;
}
*p++ = ident + 'a';
bool hex = false;
if (*in == '$') {
in++;
hex = true;
}
if (!hex) {
TCHAR *tmpp = in;
while (_istxdigit(*tmpp)) {
tmp = _totupper(*tmpp);
if (tmp >= 'A' && tmp <= 'F') {
hex = true;
}
tmpp++;
}
}
if (hex) {
uae_u32 val = 0;
while (_istxdigit(*in)) {
val *= 16;
TCHAR c = _totupper(*in);
if (_istdigit(c)) {
val += c - '0';
} else {
val += c - 'A' + 10;
}
in++;
}
parsedvaluesd[ident++] = val;
} else {
while (_istdigit(*in) || *in == '.')
in++;
tmp = *in;
*in = 0;
parsedvaluesd[ident++] = _tstof(instart);
*in = tmp;
}
op = 0;
} else {
if (is_operator(*in))
op++;
*p++ = *in++;
}
}
*p = 0;
return true;
}
int calc(const TCHAR *input, double *outval, TCHAR *outstring, int maxlen)
{
TCHAR output[IOBUFFERS], output2[IOBUFFERS];
int ret = -1;
calc_log ((_T("IN: '%s'\n"), input));
if (outval) {
*outval = 0;
}
if (outstring) {
outstring[0] = 0;
}
for (int i = 0; i < STACK_SIZE; i++) {
struct calcstack *s = &stack[i];
memset(s, 0, sizeof(struct calcstack));
}
if (parse_values(input, output2)) {
if(shunting_yard(output2, output)) {
calc_log ((_T("RPN OUT: %s\n"), output));
if(!execution_order(output, outval, outstring, maxlen)) {
calc_log ((_T("PARSE ERROR!\n")));
} else {
if (outstring && outstring[0]) {
ret = -1;
} else {
ret = 1;
}
}
}
}
for (int i = 0; i < MAX_VALUES; i++) {
xfree(parsedvaluess[i]);
parsedvaluesd[i] = 0;
parsedvaluess[i] = NULL;
}
for (int i = 0; i < STACK_SIZE; i++) {
struct calcstack *s = &stack[i];
xfree(s->vals);
xfree(s->s);
memset(s, 0, sizeof(struct calcstack));
}
return ret;
}
bool iscalcformula (const TCHAR *formula)
{
for (int i = 0; i < _tcslen (formula); i++) {
TCHAR c = formula[i];
if (is_operator (c))
return true;
}
return false;
}