-
Notifications
You must be signed in to change notification settings - Fork 0
/
arithmetic_expr_val.c
210 lines (187 loc) · 4.91 KB
/
arithmetic_expr_val.c
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
#include <string.h>
#include <stdio.h>
#include <limits.h>
#include <stdbool.h>
#include "../include/arithmetic_expr_val.h"
// Private function declarations
static int eval(const char **expr, ErrorType *error, int *parentheses);
static void skip_spaces(const char **expr);
static const char read_operand(const char **expr, ErrorType *error, int *parentheses);
static const char read_operator(const char **expr, ErrorType *error);
static int string2int(const char **expr, ErrorType *error);
int evaluate(const char *expr, ErrorType *error)
{
int parentheses = 0;
int result = eval(&expr, error, &parentheses);
if (parentheses != 0)
{
*error = ParenthesesMismatchError;
}
return result;
}
/**
* ********************************************************************************************************************
* Helper functions
********************************************************************************************************************
*/
static int eval(const char **expr, ErrorType *error, int *parentheses)
{
int left = 0, right = 0, result = 0;
char op = ' ';
char c = ' '; // variabile temporanea per le funzioni di lettura
// lettura del primo operando, c è il primo carattere dell'operando
c = read_operand(expr, error, parentheses);
if (*error != NoError)
{
return 0;
}
left = (c == '(') ? eval(expr, error, parentheses) : string2int(expr, error);
// lettura dell'operatore
op = read_operator(expr, error);
if (*error != NoError)
{
return 0;
}
// lettura secondo operando
c = read_operand(expr, error, parentheses);
if (*error != NoError)
{
return 0;
}
right = (c == '(') ? eval(expr, error, parentheses) : string2int(expr, error);
// controllo della chiusura delle parentesi
skip_spaces(expr);
if (**expr == ')')
{
(*parentheses)--;
if (*parentheses < 0)
{
*error = ParenthesesMismatchError;
return 0;
}
(*expr)++; // incremento il puntatore per leggere il prossimo carattere
}
else if (**expr != '\0')
{
*error = SyntaxError;
return 0;
}
// calcolo del risultato in base all'operatore
switch (op)
{
case '+':
return safe_add(left, right, error);
case '-':
return safe_sub(left, right, error);
case '*':
return safe_mul(left, right, error);
case '/':
return safe_div(left, right, error);
default:
return result;
}
}
static void skip_spaces(const char **expr)
{
while (**expr == ' ')
{
(*expr)++;
}
}
// incrementa il puntatore (*expr) solo se il carattere letto è '('
static const char read_operand(const char **expr, ErrorType *error, int *parentheses)
{
skip_spaces(expr);
char c = **expr;
if (c == '(' || (c >= '0' && c <= '9'))
{
if (c == '(')
{
(*parentheses)++;
(*expr)++;
}
}
else
{
*error = SyntaxError;
}
return c;
}
// incrementa anche il puntatore (*expr)
const char read_operator(const char **expr, ErrorType *error)
{
skip_spaces(expr);
char c = **expr;
if (c != '+' && c != '-' && c != '*' && c != '/')
{
*error = SyntaxError;
}
(*expr)++;
return c;
}
static int string2int(const char **expr, ErrorType *error)
{
int result = 0;
while (**expr >= '0' && **expr <= '9')
{
result = result * 10 + (**expr) - '0';
(*expr)++;
if (result < 0) // controllo dell'overflow
{
*error = OverflowError;
return 0;
}
}
return result;
}
/***********************************************************************************************************************
* Operazioni aritmetiche sicure con il controllo dell'overflow e della divisione per zero
* ********************************************************************************************************************
*/
int safe_add(int a, int b, ErrorType *error)
{
if (b > 0 && a > (INT_MAX - b) || b < 0 && a < (INT_MIN - b))
{
*error = OverflowError;
return 0;
}
return a + b;
}
int safe_sub(int a, int b, ErrorType *error)
{
if (b > 0 && a < (INT_MIN + b) || b < 0 && a > (INT_MAX + b))
{
*error = OverflowError;
return 0;
}
return a - b;
}
int safe_mul(int a, int b, ErrorType *error)
{
if (a > 0)
{
if (b > 0 && a > (INT_MAX / b) || b < 0 && b < (INT_MIN / a))
{
*error = OverflowError;
return 0;
}
}
else
{
if (b > 0 && a < (INT_MIN / b) || b < 0 && a < (INT_MAX / b))
{
*error = OverflowError;
return 0;
}
}
return a * b;
}
int safe_div(int a, int b, ErrorType *error)
{
if (b == 0)
{
*error = DivisionByZeroError;
return 0;
}
return a / b;
}