-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSVOperations.c
143 lines (115 loc) · 3.86 KB
/
CSVOperations.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
#pragma once
#include "CSVOperations.h"
#include "LinkedList.h"
//Cria um ficheiro com o nome do input e extrai os dados usando os delimitadores ; que são os do csv da versao portuguesa.
//Depois de extraidos os dados são adicionados ou "empurrados" para uma lista linkada.
//Como não foi explicitado nos requisitos que os produtos teriam de ser adicionados de certa forma o método push é a implementação mais fácil e foi a que usei, mas poderia facilmente usar outra.
long* storeProductsCSVMemory(char* name) {
struct node* head = NULL;
struct node* current = NULL;
FILE* fp;
char line[1000];
char* field;
char id[100];
char description[100];
char price[100];
fp = fopen(name, "r");
if (fp == NULL) {
printf("Error opening file.\n");
return 0;
}
while (fgets(line, 1000, fp)) {
//Extrair Id
field = strtok(line, ";");
strncpy(id, field, 100);
//Extrair descricao
field = strtok(NULL, ";");
strncpy(description, field, 100);
//Extrair o preco
field = strtok(NULL, ";");
strncpy(price, field, 100);
//Guardar os dados em memoria
struct Product newProd;
newProd.code = atoi(id);
strcpy(newProd.description, description);
newProd.price = atof(price);
push(&head, newProd);
}
return head;
}
//Cria um ficheiro com o nome do input e extrai os dados usando os delimitadores ; que são os do csv da versao portuguesa.
//Depois de extraidos os dados são adicionados ou "empurrados" para uma lista linkada.
//Como não foi explicitado nos requisitos que os produtos teriam de ser adicionados de certa forma o método push é a implementação mais fácil e foi a que usei, mas poderia facilmente usar outra.
long* storeSalesCSVMemory(char* name) {
struct node* head = NULL;
struct node* current = NULL;
FILE* fp;
char line[1000];
char* field;
char id[100];
char description[100];
char price[100];
char quantity[100];
char date[100];
fp = fopen(name, "r");
if (fp == NULL) {
printf("Error opening file.\n");
return 0;
}
while (fgets(line, 1000, fp)) {
//Extrair Id
field = strtok(line, ";");
strncpy(id, field, 100);
//Extrair descricao
field = strtok(NULL, ";");
strncpy(description, field, 100);
//Extrair o preco
field = strtok(NULL, ";");
strncpy(price, field, 100);
//Extrair a quantidade
field = strtok(NULL, ";");
strncpy(quantity, field, 100);
//Extrair a data
field = strtok(NULL, ";");
strncpy(date, field, 100);
//Guardar os dados em memoria
struct Product newSales;
newSales.code = atoi(id);
strcpy(newSales.description, description);
newSales.price = atof(price);
newSales.quantity = atoi(quantity);
strcpy(newSales.date, date);
push(&head, newSales);
}
return head;
}
//Guarda os dados da Lista Linkada num ficheiro CSV
int storeProductsCSVDisk(struct node* head, char* filename) {
FILE* fp;
fp = fopen("mydata.csv", "w+");
if (fp == NULL) {
printf("Error creating file.\n");
return 0;
}
struct node* p = head;
while (p != NULL) {
fprintf(fp, "%d;%s;%.2f;\n", p->data.code, p->data.description, p->data.price);
p = p->next;
}
return 1;
}
//Guarda os dados da Lista Linkada num ficheiro CSV
int storeSalesCSVDisk(struct node* head, char* filename) {
FILE* fp;
fp = fopen("mysales.csv", "w+");
if (fp == NULL) {
printf("Error creating file.\n");
return 0;
}
struct node* p = head;
while (p != NULL) {
fprintf(fp, "%d;%s;%.2f;%i;%s\n", p->data.code, p->data.description, p->data.price, p->data.quantity, p->data.date);
p = p->next;
}
return 1;
}