-
Notifications
You must be signed in to change notification settings - Fork 1
/
gestaoDados.c
266 lines (233 loc) · 7.5 KB
/
gestaoDados.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
//
// Created by Luis on 30/04/2020.
//
#include <sys/time.h>
#include "gestaoDados.h"
//************************************************************
// Guardar Fim da lista User
//************************************************************
int inserirFimListaUser(ELEMENTO **iniListaUser,ELEMENTO **fimListaUser, USER aux_info){
ELEMENTO *novo=NULL;
novo=(ELEMENTO *)calloc(1,sizeof(ELEMENTO));
if(novo==NULL){
printf("Erro ao alocar memória\n");
return -1;
}
novo->info=aux_info;
novo->anterior=NULL;
novo->seguinte=NULL;
if(*fimListaUser==NULL){
*iniListaUser=novo;
*fimListaUser=novo;
}
else{
novo->anterior=*fimListaUser;
(*fimListaUser)->seguinte=novo;
*fimListaUser=novo;
}
return 0;
}
//************************************************************
//************************************************************
// Limpar Lista User
//************************************************************
void limparListaUser(ELEMENTO **iniListaUser, ELEMENTO **fimListaUser){
ELEMENTO *aux, *proximo;
aux=*iniListaUser;
while(aux!=NULL){
proximo=aux->seguinte;
free(aux);
aux=proximo;
}
*iniListaUser=NULL;
*fimListaUser=NULL;
free(proximo);
}
//************************************************************
//************************************************************
// Login de utilizador existente
//************************************************************
ELEMENTO *login(ELEMENTO *iniLista){
char user[30], passw[100];
ELEMENTO *aux=NULL;
int tentativas=3;
printf("Introduza o nome de utilizador:\n");
scanf(" %30[^\n]s",user);
aux=iniLista;
while((strcmp(aux->info.username,user)!=0) && aux!=NULL){
while((strcmp(aux->info.username,user)!=0)){
aux=aux->seguinte;
if(aux==NULL){
break;
}
}
if(aux==NULL){
printf("Utilizador inexistente\n");
return aux;
}
do{
printf("Introduza a password:\n");
scanf(" %100[^\n]s",passw);
if(strcmp(aux->info.passwd,passw)==0){
printf("Password Correta\n");
return aux;
}
else{
tentativas--;
printf("Password incorreta - %i tentativas restantes\n",tentativas);
}
}while(tentativas>0);
return NULL;
}
//************************************************************
//************************************************************
// Guardar Fim da lista
//************************************************************
int inserirFimLista(ELEMENTO **inilista,ELEMENTO **fimlista, USER aux_info){
ELEMENTO *novo=NULL;
novo=(ELEMENTO *)calloc(1,sizeof(ELEMENTO));
if(novo==NULL){
printf("Erro ao alocar memória\n");
return -1;
}
novo->info=aux_info;
novo->anterior=NULL;
novo->seguinte=NULL;
if(*fimlista==NULL){
*inilista=novo;
*fimlista=novo;
}
else{
novo->anterior=*fimlista;
(*fimlista)->seguinte=novo;
*fimlista=novo;
}
return 0;
}
//************************************************************
//************************************************************
// Guardar Fim da lista Perguntas
//************************************************************
int inserirFimListaPerguntas(ELEMENTOP **inilista,ELEMENTOP **fimlista, PERGUNTA aux_info){
ELEMENTOP *novo=NULL;
novo=(ELEMENTOP *)calloc(1,sizeof(ELEMENTOP));
if(novo==NULL){
printf("Erro ao alocar memória\n");
return -1;
}
novo->info=aux_info;
novo->anterior=NULL;
novo->seguinte=NULL;
if(*fimlista==NULL){
*inilista=novo;
*fimlista=novo;
}
else{
novo->anterior=*fimlista;
(*fimlista)->seguinte=novo;
*fimlista=novo;
}
return 0;
}
//************************************************************
//************************************************************
// Limpar Lista
//************************************************************
void limparLista(ELEMENTO **inilista, ELEMENTO **fimlista){
ELEMENTO *aux, *proximo;
aux=*inilista;
while(aux!=NULL){
proximo=aux->seguinte;
free(aux);
aux=proximo;
}
*inilista=NULL;
*fimlista=NULL;
free(proximo);
}
//************************************************************
//************************************************************
// Limpar Lista Perguntas
//************************************************************
void limparListaPerguntas(ELEMENTOP **inilista, ELEMENTOP **fimlista){
ELEMENTOP *aux, *proximo;
aux=*inilista;
while(aux!=NULL){
proximo=aux->seguinte;
free(aux);
aux=proximo;
}
*inilista=NULL;
*fimlista=NULL;
free(proximo);
}
//************************************************************
//************************************************************
// Guardar em ficheiro
//************************************************************
int gravarEmFicheiro(ELEMENTO *inilista) {
ELEMENTO *aux = NULL;
FILE *fp = NULL;
fp = fopen("C:\\Users\\mingo\\Desktop\\IPVC\\PROG1\\I know better\\utilizadores.dat", "wb");
fp = fopen("utilizadores.dat", "wb");
if (fp == NULL) {
printf("Erro ao criar ficheiro\n");
return -1;
}
//fwrite(totregistos, sizeof(int), 1, fp);
for (aux = inilista; aux != NULL; aux = aux->seguinte) {
fwrite(&(aux->info), sizeof(USER), 1, fp);
}
fclose(fp);
printf("Ficheiro criado com sucesso\n");
return 0;
}
//************************************************************
//************************************************************
// Obter tempo atual
//************************************************************
DATA getdate(){
DATA atual;
struct timeval usec_time;
time_t now = time(0);
gettimeofday(&usec_time,NULL);
struct tm *current = localtime(&now);
atual.ano=current->tm_year+1900;
atual.mes=current->tm_mon+1;
atual.dia=current->tm_mday;
return atual;
}
//************************************************************
//************************************************************
//Lê cada utilizador em ficheiro
//************************************************************
void lerUserEmFicheiro(ELEMENTO **iniListaUser, ELEMENTO **fimListaUser){
FILE *fp=NULL;
USER aux;
fp=fopen("utilizadores.dat","rb");
if(fp==NULL){
fp=fopen("utilizadores.dat","wb");
fclose(fp);
fp=fopen("utilizadores.dat","rb");
}
while(1){
fread(&aux,sizeof(USER),1,fp);
inserirFimListaUser(iniListaUser,fimListaUser,aux);
if(feof(fp)){
break;
}
}
fclose(fp);
}
//************************************************************
//************************************************************
// Listar perguntas lidas do ficheiro
//************************************************************
void listarPerguntas(ELEMENTOP *iniLista){
ELEMENTOP *aux=NULL;
for(aux=iniLista;aux!=NULL;aux=aux->seguinte){
printf(" %i - %s\n %s\t %s\n %s\t %s\n",aux->info.indice,aux->info.pergunta,aux->info.respostas[0],
aux->info.respostas[1],aux->info.respostas[2],aux->info.respostas[3]);
}
}
//************************************************************