-
Notifications
You must be signed in to change notification settings - Fork 1
/
6.rs
279 lines (242 loc) · 7.82 KB
/
6.rs
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
use std::io;
const MAXOP : usize = 100; /// Max size of operand or operator
const EOF : char = '#'; /// Simulate C EOF
const NUMBER : char = '0'; /// Signal that a number was found
const LAST : char = 'L'; /// signal that last value command was found
const SWAP : char = '~'; /// signal that swap command was found
const DUPLICATE : char = 'D'; /// signal that duplicate command was found
const CLEAR : char = 'C'; /// signal that clear was found
const FAKE_DOUBLE_MIN : f32 = -999999.0; /// set a minimum value for stack operands
const MAXVAL : usize = 100; /// Maximum depth of operand stack
static mut VAL : Vec<f32> = Vec::new(); /// Our operand stack
const BUFSIZE : usize = 100; /// Max size for ungetch buffer
static mut BUFFER : Vec<char> = Vec::new(); /// Buffer to control characters read from input (ungetch)
static mut INPUT : String = String::new(); /// Holds characters from stdin (getchar simulation)
/// reverse Polish calculator
fn main()
{
let mut _type : char;
let mut op2 : f32;
let mut aux : f32;
let mut _lp : f32 = 0.0;
let mut _last_read_variable : usize = 0;
let mut s = String::new();
s.reserve(MAXOP);
let mut variables : Vec<f32> = Vec::new(); // keeps track all variable values
// init variables value
for _i in 0..26 {
variables.push(FAKE_DOUBLE_MIN);
}
// We need a unsafe scope here, because we create global (static) variables
// and manipulate them here. Rust makes a big effort to avoid concurrency
// bugs hard to run into, that's the reason for code that doesn't guarantee
// data race protection being labeled unsafe.
// SOURCES:
// https://doc.rust-lang.org/reference/items/static-items.html
unsafe {
loop {
_type = getop(&mut s);
if _type == EOF {
break;
}
match _type {
NUMBER => { push(s.parse().unwrap_or(-0.0)); },
'+' => { push(pop() + pop()); },
'*' => { push(pop() * pop()); },
'-' => {
op2 = pop();
push(pop() - op2);
},
'/' => {
op2 = pop();
if op2 != 0.0 {
push(pop() / op2);
} else {
print!("error: zero divisor\n");
}
},
'%' => {
op2 = pop();
if op2 != 0.0 {
push(pop() as f32 % op2 as f32);
} else {
print!("error: zero divisor\n");
}
},
'S' => { push( pop().sin() ); },
'E' => { push( pop().exp() ); },
'^' => {
op2 = pop();
aux = pop();
if aux == 0.0 && op2 <= 0.0 {
print!("error: pow({}, {}) is not a valid operation.\n", aux, op2);
} else {
push( aux.powf(op2) );
}
},
LAST => { _lp = last(); print!("top value: {}\n", _lp); },
DUPLICATE => { duplicate(); },
SWAP => { swap(); },
CLEAR => { clear(); },
'\n' => { _lp = pop(); print!("\t{}\n", _lp); },
'=' => { variables[_last_read_variable] = pop(); },
'_' => { push(_lp); },
'?' => {
for _i in 0..26 {
if variables[_i] != FAKE_DOUBLE_MIN {
print!("'{}' == {}\n", std::char::from_u32('a' as u32 + (_i as u32)).unwrap_or('#'), variables[_i]);
}
}
},
_ => {
if _type.is_ascii_lowercase() {
_last_read_variable = (_type as u32 - 'a' as u32) as usize;
//if variable had a value assigned before, push it to stack
if variables[_last_read_variable] != FAKE_DOUBLE_MIN {
push(variables[_last_read_variable]);
} else {
// if variable wasn't used before, initialize it to 0
variables[_last_read_variable] = 0.0;
}
} else {
print!("error: unknown command {}\n", s);
}
}
}
}
}
}
/// push: push f onto value stack
/// It is unsafe because we manipulate a static mut variable inside it.
unsafe fn push(f: f32)
{
if VAL.len() < MAXVAL {
VAL.push(f);
} else {
print!("error: stack full, can't push {}\n", f);
}
}
/// pop: pop and return top value from stack
/// It is unsafe because we manipulate a static mut variable inside it.
unsafe fn pop() -> f32
{
if VAL.len() > 0 {
return VAL.pop().unwrap_or(0.0);
} else {
print!("error: stack empty\n");
return 0.0;
}
}
/* return top value from stack without popping */
unsafe fn last() -> f32 {
if VAL.len() > 0 {
return *VAL.last().unwrap_or(&0.0);
} else {
print!("error: stack empty\n");
return 0.0;
}
}
/* duplicate top value from stack */
unsafe fn duplicate() {
if VAL.len() > 0 {
push(last());
} else {
print!("error: stack empty\n");
}
}
/* swap top two values from stack */
unsafe fn swap() {
let aux1 : f32;
let aux2 : f32;
if VAL.len() >= 2 {
aux1 = pop();
aux2 = pop();
push(aux1);
push(aux2);
} else {
print!("error: can't swap with {} elements\n", VAL.len());
}
}
/* clear all stack */
unsafe fn clear() {
print!("stack cleared\n");
VAL.clear();
}
/// getop: get next character or numeric operand
/// It is unsafe because we manipulate a static mut variable inside it.
unsafe fn getop(s: &mut String) -> char
{
let mut c: char;
s.clear();
loop {
c = getch();
if c != ' ' && c != '\t' {
break;
}
}
s.push(c);
if !c.is_digit(10) && c != '.' {
return c; // not a number
}
if c.is_digit(10) { // collect integer part
loop {
c = getch();
if c.is_digit(10) {
s.push(c);
} else {
break;
}
}
}
if c == '.' { // collect fraction part
loop {
c = getch();
if c.is_digit(10) {
s.push(c);
} else {
break;
}
}
}
if c != EOF {
ungetch(c);
}
return NUMBER;
}
/// get a (possibly pushed-back) character
/// It is unsafe because we manipulate a static mut variable inside it.
unsafe fn getch() -> char
{
return if BUFFER.len() > 0 { BUFFER.pop().unwrap_or(EOF) } else { getchar() };
}
/// push character back on input
/// It is unsafe because we manipulate a static mut variable inside it.
unsafe fn ungetch(c: char)
{
if BUFFER.len() >= BUFSIZE {
print!("ungetch: too many characters\n");
} else {
BUFFER.push(c);
}
}
/// A simulation of C getchar function.
/// It is unsafe because we manipulate a static mut variable inside it.
unsafe fn getchar() -> char
{
let mut c = INPUT.pop();
if c == None {
// clear input so lines don't get appended
INPUT.clear();
match io::stdin().read_line(&mut INPUT) {
Ok (_bytes) => {
if _bytes == 0 { return EOF }
INPUT = INPUT.chars().rev().collect::<String>();
c = INPUT.pop();
},
Err(_) => {
panic!("Unexpected error.");
}
}
}
c.unwrap_or(EOF)
}