-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcifrasBeale_lib.c
298 lines (256 loc) · 7.42 KB
/
cifrasBeale_lib.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
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
#include "cifrasBeale_lib.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <wctype.h>
/* Cria o sistema de cifras e retorna ponteiro para struct cifrasBeale.*/
struct cifrasBeale *criaCifras()
{
struct cifrasBeale *pt = malloc(sizeof(struct cifrasBeale));
if (pt == NULL) {
printf ("Erro: Nao foi possivel criar sistema de cifras.\n");
}
else {
pt->tam = 0;
pt->tamTotal = TAM_CIFRAS;
pt->cifras = malloc(sizeof(struct chaveLista*) * TAM_CIFRAS);
}
return pt;
}
/* Coloca a primeira letra da proxima palavra no texto em @*letra, retorna
* 1 caso tenha sucesso e 0 caso contrario.*/
int letraProxPalavra(FILE *texto, wchar_t *letra)
{
wchar_t aux[64];
int status = fscanf(texto, "%ls", aux);
if (status == -1)
return 0;
*letra = aux[0];
return 1;
}
/* Aumenta a quantidade de cifras.
* Retorn 0 se tudo deu certo e 1 caso contrario.*/
int aumentaSistemaCifras(struct cifrasBeale *cb)
{
cb->tamTotal += TAM_CIFRAS;
cb->cifras = realloc(cb->cifras, sizeof(struct chaveLista) * cb->tamTotal);
if (cb->cifras != NULL){
return 0;
}
printf ("Erro: Impossivel aumentar tamanho do sistema de cifras.\n");
return 1;
}
/* Troca os valores de dois enderecos.*/
void trocaCifras(struct chaveLista **a, struct chaveLista **b)
{
struct chaveLista *aux = *a;
*a = *b;
*b = aux;
}
/* Retorna a posição de inserção de um elemento @x
* num vetor de inicio @a e fim @b */
int buscaBinariaCifra(wchar_t x, struct chaveLista **listas, int a, int b, int *sts)
{
if (a > b){
*sts = 0;
return b + 1;
}
int meio = (a + b) / 2;
if (listas[meio]->chave == x)
return meio;
if (listas[meio]->chave < x)
return buscaBinariaCifra(x, listas, meio + 1, b, sts);
return buscaBinariaCifra(x, listas, a, meio - 1, sts);
}
/* Retorna 1 se a letra ja existir no sistema e 0 caso contrario.*/
int letraExisteCifra(struct cifrasBeale *cb, wchar_t letra)
{
if (cb->tam == 0)
return 0;
int sts = 1;
buscaBinariaCifra(letra, cb->cifras, 0, cb->tam-1, &sts);
return sts;
}
/* Coloca o ultimo elemento do sistema de cifras na posicao correta.*/
void ordenaUltimoItemCifra(struct cifrasBeale *cb)
{
int sts = 0;
int tam = cb->tam;
struct chaveLista **listas = cb->cifras;
int p = buscaBinariaCifra(listas[tam-1]->chave, listas, 0, tam-1, &sts);
for (int i = tam-1; i > p; i--)
trocaCifras(&listas[i], &listas[i - 1]);
}
/* Adiciona uma letra para o sistema de cifras. A adicao pode ser
* sobre uma cifra ja existente ou sobre a criacao de uma nova cifra.
* Retorna 0 caso tudo de certo e 1 caso contrario.*/
int adicionaLetra(struct cifrasBeale *cb, wchar_t letra, int posi)
{
int sts, p;
if (cb->tam == cb->tamTotal){
if(aumentaSistemaCifras(cb))
return 1;
}
if (!letraExisteCifra(cb, letra)){
cb->cifras[cb->tam] = criaChaveLista(letra);
addItemLista(cb->cifras[cb->tam], posi);
cb->tam++;
ordenaUltimoItemCifra(cb);
} else {
p = buscaBinariaCifra(letra, cb->cifras, 0, cb->tam-1, &sts);
addItemLista(cb->cifras[p], posi);
}
return 0;
}
/* Monta o sistema de cifras a partir de um texto no strem @texto.
* Retorna um ponteiro para struct cifrasBeale.*/
struct cifrasBeale *montaChavesTxt(FILE *texto)
{
wchar_t letra;
int i, status = 0;
struct cifrasBeale *cifras = criaCifras();
if (cifras == NULL)
return NULL;
rewind(texto);
i = 0;
while(letraProxPalavra(texto, &letra) && status == 0){
letra = towlower(letra);
status = adicionaLetra(cifras, letra, i);
i++;
}
if (status != 0){
destroiCifras(cifras);
return NULL;
}
return cifras;
}
/* Retorna um ponteiro para uma string contendo os valores da linha atual.*/
char *leLinha(FILE *arq)
{
int tam = 0;
while (fgetc(arq) != '\n')
tam++;
fseek(arq, -tam, SEEK_CUR);
char *str = malloc(sizeof(char) * (tam + 1));
str = fgets(str, tam+1, arq);
str[strcspn(str, "\n")] = '\0';
return str;
}
/* Cria a linha da cifra com seus respectivos codigos de acordo
* com o stream. Retorna 0 se deu tudo certo e 1 caso contrario.*/
int montaLinhaCifra(FILE *arqCifras, struct cifrasBeale *cb, wchar_t letra)
{
int tam, posi, status = 0;
char *linha;
tam = cb->tam;
if (tam == cb->tamTotal){
if(aumentaSistemaCifras(cb))
return 1;
}
cb->cifras[tam] = criaChaveLista(letra);
linha = leLinha(arqCifras);
char *pt = strtok(linha, " ");
while (pt != NULL && status == 0) {
sscanf(pt, "%d", &posi) ;
status = addItemLista(cb->cifras[tam], posi);
pt = strtok(NULL, " ");
}
free(linha);
if (status != 0)
return 1;
cb->tam++;
return 0;
}
/* Le um arquivo de cifras e o transcreve para uma struct do
* tipo cifrasBeale, a qual tem seu ponteiro retornado.*/
struct cifrasBeale *leArqCifras(FILE *arqCifras)
{
rewind(arqCifras);
wchar_t chave;
int status = 0;
struct cifrasBeale *cb = criaCifras();
if (cb == NULL)
return cb;
fscanf(arqCifras, "%1lc", &chave);
getc(arqCifras);
while (!feof(arqCifras) && status == 0){
status = montaLinhaCifra(arqCifras, cb, chave);
fscanf(arqCifras, "%1lc", &chave);
getc(arqCifras);
}
if (status != 0){
destroiCifras(cb);
return NULL;
}
return cb;
}
/* Imprime as cifras no stdout.*/
void imprimeTodasCifras(struct cifrasBeale *cb)
{
for (int i = 0; i < cb->tam; i++) {
printf ("%lc: ", cb->cifras[i]->chave);
imprimeLista(cb->cifras[i]);
}
}
/* Desaloca toda memoria de uma struct cifrasBeale.*/
struct cifrasBeale **destroiCifras(struct cifrasBeale *cb)
{
for (int i = 0; i < cb->tam; i++)
destroiChaveLista(cb->cifras[i]);
free(cb->cifras);
free(cb);
return NULL;
}
/* Retorna a letra correspondente ao numero como base no sistema de cifras.
* Caso nao exista retorna o caractere '?'.*/
wchar_t buscaCifra(struct cifrasBeale *cb, int num)
{
int i = 0;
while (i < cb->tam) {
if (buscaElemento(cb->cifras[i], num))
return cb->cifras[i]->chave;
i++;
}
return L'?';
}
/* Retorna um numero aleatorio da lista da cifra com a chave igual a @letra.*/
int aleatNumCifra(struct cifrasBeale *cb, wchar_t letra)
{
int num, tam, posi, alea, sts = 1;
posi = buscaBinariaCifra(letra, cb->cifras, 0, cb->tam-1, &sts);
if (sts == 0)
return -3;
tam = cb->cifras[posi]->tam;
alea = rand() % tam;
num = cb->cifras[posi]->lista[alea];
return num;
}
/* Retorna a chave da cifra passada.*/
wchar_t chaveCifra(struct chaveLista *cl)
{
return cl->chave;
}
/* Passa o proximo elemento da cifra em @valor.
* Retorna 1 se deu certo e 0 caso contrario.*/
int iteraListaCifra(struct chaveLista *cl, int *valor)
{
if (iteraLista(cl, valor)) {
return 1;
}
return 0;
}
/* Escreve as cifras no arquivo @arq.*/
void escreveCifras(struct cifrasBeale *cb, FILE *arq)
{
int i = 0, valor;
while (i < cb->tam) {
fprintf(arq ,"%lc: ", chaveCifra(cb->cifras[i]));
while (iteraListaCifra(cb->cifras[i], &valor))
fprintf(arq, "%d ", valor);
fseek(arq, -sizeof(char), SEEK_CUR);
fprintf(arq, "\n");
rstIteradorLista(cb->cifras[i]);
i++;
}
}