-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtesteLer.c
85 lines (66 loc) · 1.64 KB
/
testeLer.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
/*
============================================================================
Name : testeLer.c
Autor : Miguel Soeiro
Versao : 0.5
Descriçao : le do ficheiro bin e escreve no ficheiro .csv
(ainda tem o erro de spamar a ultima medição)
============================================================================
*/
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <signal.h>
#include <string.h>
#include <sys/time.h>
#include <time.h>
void confirma(){
char resp[4];
printf("Tem a Certeza que quer SAIR ? (Escreva 'sim' para sair)\n");
scanf("%3s",resp);
if(strcmp("sim",resp)) {
printf("Nao saiu\n");
} else {
printf("Saiu\n");
exit(0);
}
}
char * nome_ficheiro()
{
static char filename[30];
struct timeval tv;
time_t timenow;
gettimeofday(&tv, NULL);
timenow=tv.tv_sec;
strftime(filename,sizeof(filename),"log_%Y-%m-%d_%H-%M-%S.csv",localtime(&timenow));
return filename;
}
struct informacao
{
uint8_t h;
uint8_t t;
char time[20];
};
int main(int argc, char ** argv){
if (argc != 2) {
printf("Utilização -> nomeDoPrograma ficheiroQueSeQuerAbrir \n");
printf("\n");
return 0;
}
char *filename;
filename = nome_ficheiro();
char *c1 = argv[1];
int tamanho = sizeof(c1);
struct informacao infoRead;
FILE* filein = fopen(c1, "rb");
FILE* stream = fopen(filename, "w");
signal(SIGINT, confirma);
for(;;){
fread(&infoRead, sizeof(struct informacao), 1, filein);
printf("%s %u %u\n", infoRead.time, infoRead.h, infoRead.t);
fprintf(stream,"%s,%u,%u\n", infoRead.time, infoRead.h, infoRead.t);
}
fclose(filein);
fclose(stream);
return 0;
}