Blame view

src/recup_fichierV4.c 7.79 KB
bd36ea26   mdupre1   recuperation fich...
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
  #include <stdio.h>
  #include <string.h>
  #include <stdbool.h>
  #include <stdlib.h>
  #include <ctype.h>
  
  // Conditionals
  const bool          IS_DEBUG            = true;
  
  // Constants
  const unsigned int  BUFFER_SIZE         = 2048;
  const unsigned int  FIELD_SIZE          = 20;
  const char          CSV_DELIMITERS[]    = ",";
  
  // Globals
  char**              CSV_HEADER_FIELDS;
  unsigned int        CSV_NB_FIELDS;
  
  
  
  //By Bianca and Mathis
  
  //Ce programme permet :
  //Avec un tableau de char[] donné peut créer une personne et l'ajouter a une liste. 
  
  
  //Le struct de personne:
  typedef struct Personne Personne;
  struct Personne {
      int athId; 
      int regId; 
      int divId; 
      char* lastName; 
      char* firstName; 
      char gender; 
      int age; 
      char* weight; 
      char* height; 
      int affiliateId; 
      char* affiliateName; 
      int overallScrore; 
      int overallRank; 
      int score18_1; 
      char* scoreDisplay18_1; 
      int rank18_1; 
      int score18_2; 
      char* scoreDisplay18_2; 
      int rank18_2;
      int score18_2a; 
      char* scoreDisplay18_2a; 
      int rank18_2a;
      int score18_3; 
      char* scoreDisplay18_3; 
      int rank18_3;
      int score18_4; 
      char* scoreDisplay18_4; 
      int rank18_4;
      int score18_5; 
      char* scoreDisplay18_5; 
      int rank18_5; 
      Personne* suivant;};
      
  typedef Personne* Liste;
  
  
  
  /************************************************************************/
  //Gestion de listes
  void ajout_tete(Liste *l, Personne P)
  {
      Personne *p;
      p= malloc(sizeof(Personne));
      
          p->athId = P.athId;
          p->regId = P.regId;
          p->divId = P.divId;
          p->lastName =  P.lastName;
          p->firstName = P.firstName;
          p->gender = P.gender;
          p->age =  P.age;
          p->weight =  P.weight;
          p->height  =  P.height;
          p->affiliateId = P.affiliateId; 
          p->affiliateName = P.affiliateName;
          p->overallScrore = P.overallScrore;
          p->overallRank = P.overallRank;
          p->score18_1 = P.score18_1;
          p->scoreDisplay18_1 = P.scoreDisplay18_1;
          p->rank18_1 =  P.rank18_1;
          p->score18_2 = P.score18_2;
  	p->scoreDisplay18_2 = P.scoreDisplay18_2;	
  	p->rank18_2 = P.rank18_2;
          p->score18_2a = P.score18_2a;
          p->scoreDisplay18_2a = P.scoreDisplay18_2a;
          p->rank18_2a =  P.rank18_2a;
          p->score18_3 =  P.score18_3;
          p->scoreDisplay18_3 = P.scoreDisplay18_3;
          p->rank18_3 =  P.rank18_3;
          p->score18_4 = P.score18_4;
          p->scoreDisplay18_4 = P.scoreDisplay18_4;
          p->rank18_4 = P.rank18_4;
          p->score18_5 = P.score18_5;
          p->scoreDisplay18_5 = P.scoreDisplay18_5;
          p->rank18_5 = P.rank18_5;
          
      p->suivant = *l;
      *l=p;
  }
  
  void suppr_tete(Liste *l)
  {
      Personne* a_suppr = *l;
      *l = (*l)->suivant;
      free(a_suppr);
  }
  
  void affiche_personne(Personne P)
  {
      printf("%s %s %d %c \n", P.lastName, P.firstName, P.overallScrore, P.gender);
  }
  
  void affiche_liste(Liste l)
  {
      Liste tmp = l;
      
      if(tmp==NULL)
      {
          printf("Liste de personne vide\n");   
          return;
      }
      
      while(tmp != NULL)
      {
          affiche_personne(*tmp);
          tmp = tmp->suivant;
      }
      printf("\n"); 
  }
  
  /************************************************************************/
  
  
  
  void remplissage_personne(char* tab_char[], Personne *P)
  {
          P->athId = atoi(tab_char[0]);
          P->regId = atoi(tab_char[1]);
          P->divId = atoi(tab_char[2]);
          P->lastName = tab_char[3];
          P->firstName = tab_char[4];
          P->gender = *tab_char[5];
          P->age = atoi(tab_char[6]);
          P->weight = tab_char[7];
          P->height  = tab_char[8];
          P->affiliateId = atoi(tab_char[9]);
          P->affiliateName = tab_char[10];
          P->overallScrore = atoi(tab_char[11]);
          P->overallRank = atoi(tab_char[12]);
          P->score18_1 = atoi(tab_char[13]);
          P->scoreDisplay18_1 = tab_char[14];
          P->rank18_1 = atoi(tab_char[15]);
          P->score18_2 = atoi(tab_char[16]);
  	P->scoreDisplay18_2 = tab_char[17];	
  	P->rank18_2 = atoi(tab_char[18]);
          P->score18_2a = atoi(tab_char[19]);
          P->scoreDisplay18_2a = tab_char[20];
          P->rank18_2a = atoi(tab_char[21]);
          P->score18_3 = atoi(tab_char[22]);
          P->scoreDisplay18_3 = tab_char[23];
          P->rank18_3 = atoi(tab_char[24]);
          P->score18_4 = atoi(tab_char[25]);
          P->scoreDisplay18_4 = tab_char[26];
          P->rank18_4 = atoi(tab_char[27]);
          P->score18_5 = atoi(tab_char[28]);
          P->scoreDisplay18_5 = tab_char[29];
          P->rank18_5 = atoi(tab_char[30]);
          
  }
  
  
  
  
  void display_header()
  {
      for(unsigned int i = 0; i < CSV_NB_FIELDS; i++)
      {
          printf("%d - %s\n", i, CSV_HEADER_FIELDS[i]);
      }
  }
  
  void read_csv_header(char * header_line)
  {
      //int     line_length = strlen(header_line);
      int     nb_fields   = 0;
      char*   string_ptr  = header_line;
  
      // Count the occurrences of delimiters
      while (NULL != string_ptr)
      {
          nb_fields++;
          string_ptr = strpbrk(string_ptr, CSV_DELIMITERS);
          if (NULL != string_ptr)
          {
              string_ptr++;
          }
      }
  
      // Globals allocation
      CSV_NB_FIELDS       = nb_fields;
      CSV_HEADER_FIELDS   = malloc( nb_fields * sizeof(char*) );
  
      char* token         = strtok(header_line, CSV_DELIMITERS);                  // strtok init.
  
      // Re-read the line to get the header of the columns
      for (unsigned int i = 0; i < nb_fields; i++)
      {
          CSV_HEADER_FIELDS[i] = malloc( FIELD_SIZE * sizeof(char) );             // alloc
          memset(CSV_HEADER_FIELDS[i], 0, FIELD_SIZE);                            // 0 init.
          strcpy(CSV_HEADER_FIELDS[i], token);                                    // copy field in the structure
          token = strtok(NULL, CSV_DELIMITERS);                                   // loop to get a new field label
      }
  
      if (IS_DEBUG) display_header();
  }
  
  void read_csv_file(const char * filename, Liste *liste_personne)
  {
      FILE*   fp = fopen(filename, "r");
      char    buffer[BUFFER_SIZE]; 
      
      char *string; //pointeur de string va être utiliser dans strsep
      
      
      // Check if the file is really opened
      if (NULL == fp)
      {
          fprintf(stderr, "Unable to open file: %s\n", filename);
          return;
      }
  
      // 1st row is a header with field descriptions
      fgets(buffer, BUFFER_SIZE, fp);
      read_csv_header(buffer);
      
      string = strdup(buffer); //string pointe vers la chaine de caractère buffer
  
      // Remaining rows are the entries
      while ( NULL != fgets(buffer, BUFFER_SIZE, fp) )
      {
          char*           token;
          unsigned int    i = 0;
          char* tab_char[50];
          Personne P;
         
          
          string = strdup(buffer); //string pointe vers la chaine de caractère buffer 
  
  
          // strsep init.
          token = strsep(&string, CSV_DELIMITERS); 
          //strsep permet de séparer une chaine de caractère en prenant en compte les ,,
  
          while (NULL != token)
          {
              //if (IS_DEBUG) printf("Field %d is %s\n", i++, token);
  
              tab_char[i]=token;
              
             // printf(" %s",tab_char[i]);
              i++;
  
              token = strsep(&string, CSV_DELIMITERS);
          }
          //printf("\n");
          
          remplissage_personne(tab_char, &P);
          ajout_tete(liste_personne, P); 
          
      }
  
      fclose(fp);
  }
  
  void usage(const char * prog_name)
  {
      printf("Usage is %s your_csv_file\n\n", prog_name);
  }
  
  int main(int argc, char * argv[])
  {
      Liste liste_personne = NULL;
      
      if (2 != argc)
      {
          usage(argv[0]);
          return 0;
      }
  
      read_csv_file(argv[1], &liste_personne);
      
      affiche_liste(liste_personne);
      
      printf("Done\n");
      
      for(unsigned int i = 0; i < CSV_NB_FIELDS; i++)
      {
          free(CSV_HEADER_FIELDS[i]);
      }
      free(CSV_HEADER_FIELDS);
      
  
      return 0;
  }