-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathload.c
430 lines (359 loc) · 8.8 KB
/
load.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
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
/*
* Copyright 2011-2015 Thierry FOURNIER
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License.
*
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include "list.h"
#include "pla.h"
#include "utf8.h"
#define BUFSIZE 1024
char *rtrim(char *s)
{
char* back = s + strlen(s);
while ((*--back) == ' ' );
*(back+1) = '\0';
return s;
}
void pla_load(struct list_head *base, struct list_head *res, const char *file)
{
FILE *fp;
char buf[BUFSIZE];
char *p;
char *attr;
char *value;
struct task *t = NULL;
struct task *tt = NULL;
struct res *r;
int line = 0;
char *id;
/* open file */
fp = fopen(file, "r");
if (fp == NULL) {
fprintf(stderr, "cant open file \"%s\"\n", file);
exit(1);
}
/* read file */
while (1) {
/**************************** LECTURE *************************/
/* read line */
memset(buf, 0, BUFSIZE);
fgets(buf, BUFSIZE, fp);
if (feof(fp))
break;
/* next line */
line ++;
/* remove white spaces */
p = buf;
while (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n') {
if (*p == '\0')
break;
p++;
}
/* empty line */
if (*p == 0)
continue;
/* extrait le premier parametre */
attr = p;
while (*p != ' ' && *p != '\t' && *p != '\r' && *p != '\n') {
if (*p == '\0') {
fprintf(stderr, "bad file format at line %d\n", line);
exit(1);
}
p++;
}
/* saute les espaces */
while (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n') {
if (*p == '\0') {
fprintf(stderr, "bad file format at line %d\n", line);
exit(1);
}
*p = '\0';
p++;
}
/* voila la valeur */
value = p;
/* degage les saut de lignes */
while (*p != '\0') {
if (*p == '\r' || *p == '\n')
*p = '\0';
p++;
}
/**************************** TRAITEMENT *************************/
/* nouvelle tache */
if (attr[0] == '[') {
/* get task id */
p = attr + 1;
while (1) {
if (*p == '\0') {
fprintf(stderr, "bad file format at line %d: expect word\n", line);
exit(1);
}
else if (*p == ']' && *(p+1) == '\0')
break;
p++;
}
id = malloc(p - attr + 3);
if (id == NULL) {
fprintf(stderr, "malloc failed\n");
exit(1);
}
memcpy(id, attr + 1, p - attr - 1);
id[p - attr - 1] = '\0';
/* verif des doublons */
if (pla_task_get_by_id(base, id) != NULL) {
fprintf(stderr, "task '%s', line %d: this id already exists\n", id, line);
exit(1);
}
/* check if cvalue is utf8 */
if (utf8_is_valid(value) == 0) {
fprintf(stderr, "task '%s', line %d: task name is not UTF8\n", id, line);
exit(1);
}
/* add task */
t = pla_task_new(base, value, NULL, 0, 0);
t->id = id;
}
}
fclose(fp);
/* open file */
fp = fopen(file, "r");
if (fp == NULL) {
fprintf(stderr, "cant open file \"%s\"\n", file);
exit(1);
}
line = 0;
/* read file */
while (1) {
/**************************** LECTURE *************************/
/* read line */
memset(buf, 0, BUFSIZE);
fgets(buf, BUFSIZE, fp);
if (feof(fp))
break;
/* next line */
line ++;
/* remove white spaces */
p = buf;
while (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n') {
if (*p == '\0')
break;
p++;
}
/* empty line */
if (*p == 0)
continue;
/* extrait le premier parametre */
attr = p;
while (*p != ' ' && *p != '\t' && *p != '\r' && *p != '\n') {
if (*p == '\0') {
fprintf(stderr, "bad file format at line %d\n", line);
exit(1);
}
p++;
}
/* saute les espaces */
while (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n') {
if (*p == '\0') {
fprintf(stderr, "bad file format at line %d\n", line);
exit(1);
}
*p = '\0';
p++;
}
/* voila la valeur */
value = p;
/* degage les saut de lignes */
while (*p != '\0') {
if (*p == '\r' || *p == '\n')
*p = '\0';
p++;
}
/**************************** TRAITEMENT *************************/
/* nouvelle tache */
if (attr[0] == '[') {
/* get task id */
p = attr + 1;
while (1) {
if (*p == '\0') {
fprintf(stderr, "bad file format at line %d: expect word\n", line);
exit(1);
}
else if (*p == ']' && *(p+1) == '\0')
break;
p++;
}
t = pla_task_get_by_id_n(base, attr + 1, p - attr - 1);
if (t == NULL) {
fprintf(stderr, "strange error: id does not exists at line %d\n", line);
exit(1);
}
}
/* date de debut */
else if (strcmp(attr, "start") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
if (strlen(value) > 10 && value[10] == ' ') {
if (pla_task_set_start_ymdhh(t, value) < 0) {
fprintf(stderr, "bad date format at line %d\n", line);
exit(1);
}
}
else {
if (pla_task_set_start_ymdd(t, value) < 0) {
fprintf(stderr, "bad date format at line %d\n", line);
exit(1);
}
}
}
/* durée */
else if (strcmp(attr, "duration") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
if (pla_task_set_duration_sh(t, value) < 0) {
fprintf(stderr, "bad duration format at line %d\n", line);
exit(1);
}
}
/* couleur */
else if (strcmp(attr, "color") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
pla_task_set_color(t, value);
}
/* couleur de fond */
else if (strcmp(attr, "bg") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
pla_task_set_bg(t, value);
}
/* percent */
else if (strcmp(attr, "percent") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
if (pla_task_set_percent_s(t, value) < 0) {
fprintf(stderr, "bad file format at line %d: bad percent\n", line);
exit(1);
}
}
/* fils */
else if (strcmp(attr, "child") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
tt = pla_task_get_by_id(base, value);
if (tt == NULL) {
fprintf(stderr, "error: child id does not exists at line %d\n", line);
exit(1);
}
pla_task_add_child(t, tt);
}
/* dependances */
else if (strcmp(attr, "dep") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
tt = pla_task_get_by_id(base, value);
if (tt == NULL) {
fprintf(stderr, "error: dep id does not exists at line %d\n", line);
exit(1);
}
pla_task_add_dep(t, tt);
}
/* resource */
else if (strcmp(attr, "res") == 0) {
if (t == NULL) {
fprintf(stderr, "bad file format at line %d: task expected\n", line);
exit(1);
}
/* get resource */
r = pla_res_get_by_name(res, rtrim(value));
/* not found: new resource */
if (r == NULL)
r = pla_res_new(res, rtrim(value));
/* add resource */
pla_task_add_res(t, r);
}
/* unknown keyword */
else {
fprintf(stderr, "bad file format at line %d: unknown keyword\n", line);
exit(1);
}
}
fclose(fp);
/* update dependencies on background color
* default color is unherited from parent
* else, color is white
*/
list_for_each_entry(t, base, c) {
/* if backgroud already set, next entry */
if (t->bg_isset == 1)
continue;
/* check for parent existency and parent bg color is set */
if (t->parent != NULL && t->parent->bg_isset == 1)
memcpy(&t->bg, &t->parent->bg, sizeof(struct color));
/* set default color */
else
pla_task_set_bg(t, "#ffffff");
}
/* sort resources */
pla_res_sort(res);
}
void pla_store(struct list_head *base, const char *file)
{
FILE *fp;
struct task *t;
struct task *tt;
struct tm tm;
int i;
/* open file */
fp = fopen(file, "w");
if (fp == NULL) {
fprintf(stderr, "cant open file \"%s\"\n", file);
exit(1);
}
/* write file */
list_for_each_entry(t, base, c) {
localtime_r(&t->start, &tm);
/* new task */
fprintf(fp, "[%s] %s\n", t->id, t->name);
/* save start time */
fprintf(fp, "\tstart %04d-%02d-%02d %02d\n",
tm.tm_year + 1900, tm.tm_mon+1, tm.tm_mday, tm.tm_hour);
/* save duration */
fprintf(fp, "\tduration %d\n", t->duration / 3600);
/* save percent */
fprintf(fp, "\tpercent %u\n", t->percent);
/* save color */
fprintf(fp, "\tcolor #%02x%02x%02x\n",
(unsigned int)(t->color.r * 255),
(unsigned int)(t->color.g * 255),
(unsigned int)(t->color.b * 255));
/* save deps */
for (i=0; i<t->ndep; i++)
fprintf(fp, "\tdep %s\n", t->deps[i]->id);
/* save childrens */
list_for_each_entry(tt, &t->childs, _child)
fprintf(fp, "\tchild %s\n", tt->id);
/* end */
fprintf(fp, "\n");
}
}