-
Notifications
You must be signed in to change notification settings - Fork 0
/
validation.hpp
271 lines (260 loc) · 8.49 KB
/
validation.hpp
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
/* - Villasenor Rivas Alejandro Rodrigo.
- Ingenieria en Computacion.
- Codigo: 218414783.
- Materia: Estructura de Datos.
- Profesor: Ramiro Lupercio Coronel.
*/
//Librerias
#include <iostream>
#include <cstdlib>
#include <math.h>
#include <cstring>
#include <string>
#include <cmath>
#include <vector>
using namespace std;
/* Archivo de cabecera que incluye las funciones de validacion para las
diversos tipos de inputs */
bool validnum(string *num);
bool validnumP(string *numP);
bool validintP(string *intp);
bool validint(string *numint);
bool validbin(string *binN);
bool validoct(string *octN);
bool validhex(string *hexN);
bool validname(string *name);
/* VALIDACIONES NUMERICAS */
// Funcion para validar que la entrada sea un numero, que solo tenga un punto decimal y/o una sola barra de negacion (si es que lo tiene)
bool validnum(string *num){
bool ban = false;
int points = 0;//Para validar que solo tenga un punto decimal
int neg = 0;//Para validar que solo tenga un signo negativo
//Hacemos una validaacion para que no se ingresen numeros muy grandes y evitar desbordamientos
int longitud = 0;
longitud = (*num).length();
if ((*num).length() > 6){
ban = false;
cout << "ERROR || Ingresa un numero menor a 6 digitos" << endl;
}else{
for (int n=0; n<longitud; n++){
/* Validamos con ASCII */
if ((((*num)[n] >= 48) && ((*num)[n] <= 57) ) || ((*num)[n] == 46) || ((*num)[n] == 45)){
ban = true;
if ((*num)[n] == 46){
points++;
}
if ((*num)[n] == 45){
neg++;
}
//Validamos en caso de que el ultimo miembro del string sea un punto decimal o un signo negativo
if(((((*num)[n] == 46) && (n == longitud-1))) || (((*num)[n] == 45) && (n == longitud-1))){
ban = false;
break;
}
if ((points > 1) || (neg > 1) || (((neg == 1 && (*num)[0] == 45) || (points == 1 && (*num)[0] == 46)) && (longitud == 1))){
ban = false;
break;
}
if ((*num)[0] == 45 && (*num)[1] == 46){
ban = false;
break;
}
}else{
ban = false;
break;
}
}
}
return ban;
}
// Funcion para validar que la entrada sea un numero positivo, que solo tenga un punto decimal(si es que lo tiene)
bool validnumP(string *numP){
bool ban = false;
int points = 0;//Para validar que solo tenga un punto decimal
int longitud = 0;
longitud = (*numP).length();
if (longitud > 6){
ban = false;
cout << "ERROR || Ingresa un numero menor a 6 digitos" << endl;
}else{
for (int np=0; np<longitud; np++){
/* Validamos con ASCII */
if ((((*numP)[np] >= 48) && ((*numP)[np] <= 57)) || ((*numP)[np] == 46)){
ban = true;
if ((*numP)[np] == 46){
points++;
}
//Validamos en caso de que el ultimo miembro del string sea un punto decimal
if(((*numP)[np] == 46) && (np == longitud-1)){
ban = false;
break;
}
if ((points > 1) || ((points == 1 && (*numP)[0] == 46) && (longitud== 1))){
ban = false;
break;
}
if ((*numP)[0] == 46){
ban = false;
break;
}
}else{
ban = false;
break;
}
}
}
return ban;
}
// Funcion para validar que la entrada sea un numero entero positivo
bool validintP(string *intp){
bool ban = false;
int longit = 0;
longit = (*intp).length();
if ((*intp).length() > 6){
ban = false;
cout << "ERROR || Ingresa un numero menor a 6 digitos" << endl;
}else{
for (int ip=0; ip<longit; ip++){
/* Validamos con ASCII */
if (((*intp)[ip] >= 48) && ((*intp)[ip] <= 57)){
ban = true;
}else{
ban = false;
break;
}
}
}
return ban;
}
// Funcion para validar que la entrada sea un numero entero ya sea positivo o negativo
bool validint(string *numint){
bool ban = false;
int neg = 0;//Para validar que solo tenga un signo negativo
int longitu = 0;
longitu = (*numint).length();
if ((*numint).length() > 6){
ban = false;
cout << "ERROR || Ingresa un numero menor a 6 digitos" << endl;
}else{
for (int i=0; i<longitu; i++){
/* Validamos con ASCII */
if ((((*numint)[i] >= 48) && ((*numint)[i] <= 57)) || ((*numint)[i] == 45)){
ban = true;
if ((*numint)[i] == 45){
neg++;
}
//Validamos en caso de que el ultimo miembro del string sea un signo negativo
if(((*numint)[i] == 45) && (i == longitu-1)){
ban = false;
break;
}
if (neg > 1 || (((neg == 1) && ((*numint)[0] == 45)) && (longitu == 1))){
ban = false;
break;
}
}else{
ban = false;
break;
}
}
}
return ban;
}
/* VALIDACIONES DE LOS SISTEMAS DE NUMERACION */
//Funcion que valida si se ingreso un numero binario valido
bool validbin(string *binN){
bool ban = false;
int longitud = 0;
longitud = (*binN).length();
if((*binN).length() > 15){
ban = false;
cout << "ERROR || Ingresa un numero menor a 15 digitos" << endl;
}else{
for(int b=0;b<longitud;b++){
if(((*binN)[b] == 48) || ((*binN)[b] == 49)){
ban = true;
}else{
ban = false;
break;
}
}
}
return ban;
}
//Funcion que valida si se ingreso un numero octal valido
bool validoct(string *oct){
bool ban = false;
int longitud = 0;
longitud = (*oct).length();
if ((*oct).length() > 8){
ban = false;
cout << "ERROR || Ingresa un numero menor a 8 digitos" << endl;
}else{
for(int o=0;o<longitud;o++){
if(((*oct)[o] >= 48) && ((*oct)[o] <= 55)){
ban = true;
}else{
ban = false;
break;
}
}
}
return ban;
}
//Funcion para validar los inputs de tipo hexadecimal
bool validhex(string *hex){
bool ban = false;
int longitud = 0;
longitud = (*hex).length();
if((*hex).length() > 8){
ban = false;
cout << "ERROR || Ingresa un numero menor a 8 digitos" << endl;
}else{
//Aplicamos upper para que no importe si el usuario ingresa en mayusculas o minusculas
for(int h=0;h<longitud;h++){
(*hex)[h] = toupper((*hex)[h]);
}
//Validamos que solo tenga caracteres validos en el sistema hexadecimal
for(int h=0;h<longitud;h++){
if(((((*hex)[h] >= 48) && ((*hex)[h] <= 57))) || ((*hex)[h] >= 65 && (*hex)[h] <= 70)){
ban = true;
}else{
ban = false;
break;
}
}
}
return ban;
}
/* FUNCIONES PARA VECTORES */
//Funcion para validar que el vector no este vacio
bool empty(vector <string> *vec){
bool ban = false;
if((*vec).size() == 0){
ban = true;
}else{
ban = false;
}
return ban;
}
/* VALIDAMOS STRING */
//Funcion para validar que se ingreso un numbre sin numeros
bool validname(string *name){
bool ban = false;
int longitud = 0;
longitud = (*name).length();
if((*name).length() > 20){
ban = false;
cout << "ERROR || Ingresa un nombre menor a 20 caracteres" << endl;
}else{
for(int n=0;n<longitud;n++){
if(((*name)[n] >= 65 && (*name)[n] <= 90) || ((*name)[n] >= 97 && (*name)[n] <= 122)){
ban = true;
}else{
ban = false;
break;
}
}
}
return ban;
}