-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
80 lines (66 loc) · 2.15 KB
/
main.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
#define _POSIX_C_SOURCE 200809L
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdbool.h>
#include <string.h>
#include "heap.h"
#include "hash.h"
#include "abb.h"
#include "lista.h"
#include "comandos.h"
#include "post.h"
#include "usuario.h"
#include "dupla.h"
#define NRO_ARGUMENTOS_INGRESO_TXT 2
#define ARGUMENTO_NOMBRE_ARCHIVO 1
#define CAP_CANT_POSTS 50
#define TAM_MAX_INGRESO 15000
void esperar_orden(hash_t* usuarios){
bool terminar = false;
char* ingreso = NULL;
size_t tam_buffer = 0;
usuario_t* usuario_activo = NULL;
vector_t* arreglo_posts = vector_crear();
while(!terminar){
if(getline(&ingreso, &tam_buffer, stdin) == EOF){
break;
}
if (strcmp(ingreso, "login\n") == 0){
usuario_activo = login(usuarios, usuario_activo);
}else if(strcmp(ingreso, "logout\n") == 0){
usuario_activo = logout(usuario_activo);
}else if(strcmp(ingreso, "publicar\n") == 0){
publicar(usuario_activo, arreglo_posts,usuarios);
}else if(strcmp(ingreso, "ver_siguiente_feed\n") == 0){
ver_prox(usuario_activo);
}else if(strcmp(ingreso, "likear_post\n") == 0){
likear(usuario_activo, arreglo_posts);
}else if(strcmp(ingreso, "mostrar_likes\n") == 0){
ver_likes(usuario_activo, arreglo_posts);
}else if(strcmp(ingreso, "quit\n") == 0){
terminar = true;
}else{
printf("COMANDO INEXISTENTE. INTENTELO DE NUEVO\n");
}
}
free(ingreso);
vector_destruir(arreglo_posts,post_destruir);
return;
}
int main(int argc, char *argv[]){
if (argc != NRO_ARGUMENTOS_INGRESO_TXT) {
printf("ERROR: el número de argumentos ingresados es erroneo.\n");
return -1;
}
if (access(argv[ARGUMENTO_NOMBRE_ARCHIVO], R_OK) == -1) {
printf("Error: archivo fuente inaccesible");
return -1;
}
FILE* archivo = fopen(argv[ARGUMENTO_NOMBRE_ARCHIVO], "r");
hash_t* hash_usuarios = usuario_guardar_hash(archivo);
fclose(archivo);
esperar_orden(hash_usuarios);
hash_destruir(hash_usuarios);
return 0;
}