-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexto.cpp
346 lines (288 loc) · 10.2 KB
/
texto.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
#include "Texto.h"
size_t Texto::countWord(string word)
{
size_t count = 0;
size_t last_pos = 0;
while ((last_pos = this->text.find(word, last_pos)) != string::npos)
{
++last_pos;
++count;
}
return count;
}
size_t Texto::countCharacter(char character)
{
size_t count = 0;
for (size_t i = 0; i < this->text.size(); ++i)
{
if (this->text[i] == character)
{
++count;
}
}
return count;
}
map<char, size_t> Texto::countAllCharacters()
{
map<char, size_t> listaDeConteo;
pair< map<char, size_t>::iterator, bool> valorInsertado;
// Por cada letra
for (size_t i = 0; i < this->text.size(); i++)
{
// Intentamos insertar la palabra con el valor de 1
valorInsertado = listaDeConteo.insert(pair<char, size_t>(this->text[i], 1));
// si el valor de retorno es falso quiere decir que esa palabra ya existe
if (valorInsertado.second == false)
{
// entonces incrementamos en 1 el contador
valorInsertado.first->second++;
}
}
return listaDeConteo;
}
map< string, size_t> Texto::countAllWords()
{
map<string, size_t> listaDeConteo;
list<string> listaDePalabras = this->split(' ');
pair< map<string, size_t>::iterator, bool> valorInsertado;
// Por cada palabra en el texto
for (auto palabra = listaDePalabras.begin(); palabra != listaDePalabras.end(); palabra++)
{
// Intentamos insertar la palabra con el valor de 1
valorInsertado = listaDeConteo.insert(pair<string, size_t>(*palabra, 1));
// si el valor de retorno es falso quiere decir que esa palabra ya existe
if (valorInsertado.second == false)
{
// entonces incrementamos en 1 el contador
valorInsertado.first->second++;
}
}
return listaDeConteo;
}
list<string> Texto::split(char character)
{
list<string> WordsList; // lista de string que contiene las palabras separadas por el token especificado como argumento
size_t szWordBegin = 0; // Indice del inicio de la palabra que se va a agregar en la lista, cambia en cada itineracion
size_t szWordEnd = 0; // Indice del final de la palabra que se va a agregar en la lista, cambia en cada itineracion
size_t szWordSize = 0; // Tamano de la Palabra a agregar en la lista de palabras, cambia en cada itineracion
string sWord;
while ((szWordEnd = this->text.find(character, szWordBegin)) != string::npos)
{
szWordSize = szWordEnd - szWordBegin;
sWord = this->text.substr(szWordBegin, szWordSize);
szWordBegin = szWordEnd + 1; // Actualizamos el indice de donde debe buscar
WordsList.push_back(sWord);
}
sWord = this->text.substr(szWordBegin);
WordsList.push_back(sWord);
return WordsList;
}
bool Texto::isBigEndian()
{
union {
uint32_t i;
char c[4];
} bint = { 0x01020304 };
return bint.c[0] == 1;
}
bool Texto::isEmail( const string email )
{
string dominio;
size_t indiceDelArroba = email.find("@");
string dominios[] = {
"gmail.com",
"outlook.com"
"hotmail.com"
"live.com"
};
// SI CONTIENE EL ARROBA @
if( indiceDelArroba != string::npos )
{
// EXTRAEMOS EL DOMINIO DEL CORREO
dominio = email.substr( indiceDelArroba + 1 );
// VERIFICAMOS SI EL DOMINIO DEL CORREO ESTA EN ALGUN DOMNIO VALIDO
for(string dominioValido : dominios)
{
if( dominioValido.find(dominio) != string::npos )
return true;
}
// PENDIENTE VALIDAR LOS ESPACIOS EN BALNCO Y CARACTERES ESPECIALES
}
else
{
// NO TIENE ARROBA POR LO TANTO NO ES UN EMAIL VALIDO
return false;
}
// SI NO PASA NINGUNA PRUEBA ES UN CORREO INVALIDO
return false;
}
void Texto::detectEnconding() {
const size_t BIT_8 = 7;
const size_t BIT_7 = 6;
const size_t BIT_6 = 5;
const size_t BIT_5 = 4;
const size_t BIT_4 = 3;
const bool ONE = true;
const bool CERO = false;
ifstream inputStream;
size_t inputStreamSize;
inputStream.open("txt.pdf", ios::in | ios::binary);
if (inputStream.is_open()) {
inputStream.seekg(0, ios_base::end);
inputStreamSize = inputStream.tellg();
inputStream.seekg(0, ios_base::beg);
char* buffer = new char[inputStreamSize];
inputStream.read(buffer, inputStreamSize);
inputStream.close();
cout << "Tamano del buffer: " << inputStreamSize << endl;
cout << "Buffer: " << buffer << endl;
int contador = 0;
for (size_t i = 0; i < inputStreamSize; i++) {
contador++;
//readChar(buffer[i]);
bitset<8> byte1(buffer[i]);
if (byte1.test(BIT_8) == CERO) { // 0xxx xxxx
cout << buffer[i] << " -- ASCII 1 byte" << endl;
}
else {
if (byte1.test(BIT_8) == ONE && // 110x xxxx
byte1.test(BIT_7) == ONE &&
byte1.test(BIT_6) == CERO) {
cout << buffer[i] << buffer[i + 1] << "-- UTF-8 2 bytes" << endl;
i++;
}
else {
if (byte1.test(BIT_8) == ONE && // 1110 xxxx
byte1.test(BIT_7) == ONE &&
byte1.test(BIT_6) == ONE &&
byte1.test(BIT_6) == CERO) {
cout << buffer[i] << buffer[i + 1] << buffer[i + 2] << "-- UTF-16 3 bytes" << endl;
i += 2;
}
else {
if (byte1.test(BIT_8) == ONE && // 1111 0xxx
byte1.test(BIT_7) == ONE &&
byte1.test(BIT_6) == ONE &&
byte1.test(BIT_5) == ONE &&
byte1.test(BIT_4) == CERO) {
cout << buffer[i] << buffer[i + 1] << buffer[i + 2] << buffer[i + 3] << "-- UNICODE 4 bytes" << endl;
i += 3;
}
}
}
}
}
cout << "Ciclos en for: " << contador << endl;
delete[] buffer;
}
}
vector<long> Texto::getAllNumericStrings()
{
vector<long> numeros;
long numero;
size_t i = 0, f;
while( (f = this->text.find(",", i)) != string::npos )
{
numero = stoi( this->text.substr(i,f-i) );
numeros.push_back(numero);
i = f+1;
}
numero = stoi( this->text.substr(i, this->text.size()-i) );
numeros.push_back(numero);
return numeros;
}
map<long, size_t> Texto::countAllNumericStrings()
{
map<long, size_t> listaDeConteo;
list<string> listaDePalabras = this->split(' ');
pair< map<long, size_t>::iterator, bool> valorInsertado;
int tmp_numero;
// Por cada palabra en el texto
for (auto palabra = listaDePalabras.begin(); palabra != listaDePalabras.end(); palabra++)
{
// Intentamos insertar la palabra con el valor de 1
tmp_numero = stoi(palabra->c_str());
valorInsertado = listaDeConteo.insert(pair<long, size_t>(tmp_numero, 1));
// si el valor de retorno es falso quiere decir que esa palabra ya existe
if (valorInsertado.second == false)
{
// entonces incrementamos en 1 el contador
valorInsertado.first->second++;
}
}
return listaDeConteo;
}
/**
* @brief Funcion encargada de validar si una cadena es un telefono valido
* @return verdadero si es un telefono valido de lo contrario retorna falso
*/
bool Texto::isCellPhone( string cell ){
// Si tiene este formato 868-353-4291
if(cell.size() == 12 && cell[7] == '-' && cell[3] == '-')
{
for( size_t i=0; i < cell.size(); ++i ){
if( !isdigit(cell[i]) ){
if( i == 4 || i == 8)
continue;
else
return false;
}
return true;
}
}
if( cell.size() == 10 ){
for( size_t i=0; i < cell.size(); ++i ){
if( !isdigit(cell[i]) ){
return false;
}
}
return true;
}
return false;
}
/**
* Valida el formato de una cadena para ver si es una CURP valida.
*
* Sexo
* 'H' o 'M'
* ^
* /_\
* Fecha de Nacimiento |
* 1994/11/21 | Estado
* ^ | ^
* /_\ | /_\
* ___________|___________ | ___|___
* | | | | |
* +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
* | S | E | A | J | 9 | 4 | 1 | 1 | 2 | 1 | H | T | S | G | G | S | 0 | 4 |
* +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
* | | | | | | | | | | | | | | | | | |
* +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
* | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10| 11| 12| 13| 14| 15| 16| 17|
* +---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
*
* @return verdadero si tiene el formato correcto y falso si no lo tiene
*/
bool Texto::isCURP(string CURP){
// La CURP constan de 18 caracteres alfanumericos
if( CURP.size() != 18 )
return false;
// 10 indica el genero
if( CURP[10] != 'M' && CURP[10] != 'H')
return false;
// 4-9 Contiene la Fecha de Nacimiento
for(size_t i = 4; i <= 9; ++i){
if( !isdigit( CURP[i]) )
return false;
}
return true;
}
/**
* @brief Verifica si una cadena tiene el formato de un RFC
* @return si el rfc tiene el formato Correcto retorna true de lo contrario false
*/
bool Texto::isRFC(string RFC){
if( RFC.size() != 13)
return false;
return true;
}