-
Notifications
You must be signed in to change notification settings - Fork 0
/
distro-info-util.c
1001 lines (878 loc) · 30.8 KB
/
distro-info-util.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2012-2014, Benjamin Drung <bdrung@debian.org>
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
// C standard libraries
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <getopt.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include "distro-info-util.h"
/* All recognised dated database tags for milestones
* (corresponding to distro_t date_t's).
*
* NOTE: Must be kept in sync with MILESTONE enum.
*/
static char *milestones[] = {"created"
,"release"
,"eol"
#ifdef DEBIAN
,"eol-lts"
,"eol-elts"
#endif
#ifdef UBUNTU
,"eol-server"
,"eol-esm"
#endif
};
static unsigned int days_in_month[] = {31, 28, 31, 30, 31, 30,
31, 31, 30, 31, 30, 31};
static inline int milestone_to_index(const char *milestone) {
int i;
assert(milestone);
for(i = 0; i < (int)MILESTONE_COUNT; i++) {
if (!strcmp(milestone, milestones[i])) {
return i;
}
}
return -1;
}
static inline char *index_to_milestone(unsigned int i) {
return milestones[i];
}
static char *read_full_file(const char *filename) {
char *content;
FILE *f;
size_t size;
struct stat stat;
f = fopen(filename, "r");
if(unlikely(f == NULL)) {
fprintf(stderr, NAME ": Failed to open %s: %s\n", filename,
strerror(errno));
return NULL;
}
fstat(fileno(f), &stat);
if(unlikely(stat.st_size < 0)) {
fprintf(stderr, NAME ": %s has a negative file size.\n", filename);
return NULL;
}
size = stat.st_size;
content = malloc(size + 1);
if(unlikely(fread(content, sizeof(char), size, f) != size)) {
fprintf(stderr, NAME ": Failed to read %zu bytes from %s.\n", size,
filename);
free(content);
return NULL;
}
content[size] = '\0';
fclose(f);
return content;
}
static inline bool is_leap_year(const int year) {
return (year % 4 == 0 && year % 100 != 0) || year % 400 == 0;
}
static inline bool is_valid_date(const date_t *date) {
return date->month >= 1 && date->month <= 12 &&
date->day >= 1 &&
date->day <= (is_leap_year(date->year) &&
date->month == 2 ? 29 : days_in_month[date->month-1]);
}
static time_t date_to_secs(const date_t *date) {
time_t seconds = 0;
struct tm tm;
assert(date);
memset(&tm, '\0', sizeof(struct tm));
tm.tm_year = date->year - 1900;
tm.tm_mon = date->month - 1;
tm.tm_mday = date->day;
seconds = mktime(&tm);
return seconds;
}
static inline size_t date_diff(const date_t *date1, const date_t *date2) {
time_t time1;
time_t time2;
time_t diff;
unsigned int days;
time1 = date_to_secs(date1);
time2 = date_to_secs(date2);
diff = (time_t)difftime(time1, time2);
days = (unsigned int)diff / (60 * 60 * 24);
return days;
}
static inline bool is_valid_codename(const char *codename) {
// Only codenames with lowercase ASCII letters are accepted
return strlen(codename) > 0 &&
strspn(codename, "abcdefghijklmnopqrstuvwxyz") == strlen(codename);
}
// Read an ISO 8601 formatted date
static date_t *read_date(const char *s, int *failures, const char *filename,
const int lineno, const char *column) {
date_t *date = NULL;
int n;
if(s) {
date = malloc(sizeof(date_t));
n = sscanf(s, "%u-%u-%u", &date->year, &date->month, &date->day);
if(unlikely(n != 3 || !is_valid_date(date))) {
fprintf(stderr, NAME ": Invalid date `%s' in file `%s' at line %i "
"in column `%s'.\n", s, filename, lineno, column);
(*failures)++;
free(date);
date = NULL;
}
}
return date;
}
static inline bool date_ge(const date_t *date1, const date_t *date2) {
return date1->year > date2->year ||
(date1->year == date2->year && date1->month > date2->month) ||
(date1->year == date2->year && date1->month == date2->month &&
date1->day >= date2->day);
}
static inline bool created(const date_t *date, const distro_t *distro) {
return distro->milestones[MILESTONE_CREATED] &&
date_ge(date, distro->milestones[MILESTONE_CREATED]);
}
static inline bool released(const date_t *date, const distro_t *distro) {
return *distro->version != '\0' &&
distro->milestones[MILESTONE_RELEASE] &&
date_ge(date, distro->milestones[MILESTONE_RELEASE]);
}
static inline bool eol(const date_t *date, const distro_t *distro) {
return distro->milestones[MILESTONE_EOL] &&
date_ge(date, distro->milestones[MILESTONE_EOL])
#ifdef UBUNTU
&& (!distro->milestones[MILESTONE_EOL_SERVER] ||
(distro->milestones[MILESTONE_EOL_SERVER] &&
date_ge(date, distro->milestones[MILESTONE_EOL_SERVER])))
#endif
;
}
#ifdef DEBIAN
static inline bool eol_lts(const date_t *date, const distro_t *distro) {
return !distro->milestones[MILESTONE_EOL_LTS] ||
date_ge(date, distro->milestones[MILESTONE_EOL_LTS])
;
}
static inline bool eol_elts(const date_t *date, const distro_t *distro) {
return !distro->milestones[MILESTONE_EOL_ELTS] ||
date_ge(date, distro->milestones[MILESTONE_EOL_ELTS])
;
}
#endif
#ifdef UBUNTU
static inline bool eol_esm(const date_t *date, const distro_t *distro) {
return distro->milestones[MILESTONE_EOL] &&
date_ge(date, distro->milestones[MILESTONE_EOL])
&& (!distro->milestones[MILESTONE_EOL_ESM] ||
(distro->milestones[MILESTONE_EOL_ESM] &&
date_ge(date, distro->milestones[MILESTONE_EOL_ESM])))
;
}
#endif
// Filter callbacks
static bool filter_all(unused(const date_t *date),
unused(const distro_t *distro)) {
return true;
}
static bool filter_stable(const date_t *date, const distro_t *distro) {
return released(date, distro) && !eol(date, distro);
}
static bool filter_supported(const date_t *date, const distro_t *distro) {
return created(date, distro) && !eol(date, distro);
}
#ifdef DEBIAN
static bool filter_lts_supported(const date_t *date, const distro_t *distro) {
return created(date, distro) && eol(date, distro) && !eol_lts(date, distro);
}
static bool filter_elts_supported(const date_t *date, const distro_t *distro) {
return created(date, distro) && eol_lts(date, distro) && !eol_elts(date, distro);
}
#endif
#ifdef UBUNTU
static bool filter_esm_supported(const date_t *date, const distro_t *distro) {
return created(date, distro) && !eol_esm(date, distro) &&
strstr(distro->version, "LTS") != NULL;
}
#endif
static bool filter_unsupported(const date_t *date, const distro_t *distro) {
return created(date, distro) && eol(date, distro);
}
// Select callbacks
static const distro_t *select_latest_created(const distro_elem_t *distro_list) {
const distro_t *selected;
selected = distro_list->distro;
while(distro_list != NULL) {
distro_list = distro_list->next;
if(distro_list && date_ge(distro_list->distro->milestones[MILESTONE_CREATED],
selected->milestones[MILESTONE_CREATED])) {
selected = distro_list->distro;
}
}
return selected;
}
static const distro_t *select_latest_release(const distro_elem_t *distro_list) {
const distro_t *selected;
selected = distro_list->distro;
while(distro_list != NULL) {
distro_list = distro_list->next;
if(distro_list && date_ge(distro_list->distro->milestones[MILESTONE_RELEASE],
selected->milestones[MILESTONE_RELEASE])) {
selected = distro_list->distro;
}
}
return selected;
}
static const distro_t *select_series(const distro_elem_t *distro_list, const char *series) {
const distro_t *selected;
selected = NULL;
while(distro_list != NULL) {
if(distro_list && (strcmp(distro_list->distro->series, series) == 0)) {
selected = distro_list->distro;
break;
}
distro_list = distro_list->next;
}
return selected;
}
static bool calculate_days(const distro_t *distro, const date_t *date,
int date_index, ssize_t *days) {
const date_t *first;
const date_t *second;
int direction;
assert(date_index >= 0 && date_index < MILESTONE_COUNT);
/* distro may not have specified a particular milestone date
* (yet).
*/
if(!distro->milestones[date_index]) {
return false;
}
if(date_ge(date, distro->milestones[date_index])) {
first = date;
second = distro->milestones[date_index];
direction = -1;
} else {
first = distro->milestones[date_index];
second = date;
direction = 1;
}
*days = (ssize_t)date_diff(first, second) * direction;
return true;
}
// Print callbacks
static bool print_codename(const distro_t *distro, const date_t *date,
int date_index, int just_days) {
ssize_t days;
if(date_index == -1) {
printf("%s\n", distro->series);
} else {
if(!calculate_days(distro, date, date_index, &days)) {
printf("%s%s%s\n",
just_days ? "" : distro->series,
just_days ? "" : " ",
UNKNOWN_DAYS);
} else {
printf("%s%s%zd\n",
just_days ? "" : distro->series,
just_days ? "" : " ",
days);
}
}
return true;
}
static bool print_fullname(const distro_t *distro, const date_t *date,
int date_index, int just_days) {
ssize_t days;
if(date_index == -1) {
printf(DISTRO_NAME " %s \"%s\"\n", distro->version, distro->codename);
} else {
if(!calculate_days(distro, date, date_index, &days)) {
if(just_days) {
printf("%s\n", UNKNOWN_DAYS);
} else {
printf(DISTRO_NAME " %s \"%s\" %s\n",
distro->version, distro->codename, UNKNOWN_DAYS);
}
} else {
if(just_days) {
printf("%zd\n", days);
} else {
printf(DISTRO_NAME " %s \"%s\" %zd\n",
distro->version, distro->codename, days);
}
}
}
return true;
}
static bool print_release(const distro_t *distro, const date_t *date,
int date_index, int just_days) {
ssize_t days;
char *str;
str = unlikely(*distro->version == '\0') ? distro->series : distro->version;
if(date_index == -1) {
printf("%s\n", str);
} else {
if(!calculate_days(distro, date, date_index, &days)) {
printf("%s%s%s\n",
just_days ? "" : str,
just_days ? "" : " ",
UNKNOWN_DAYS);
} else {
printf("%s%s%zd\n",
just_days ? "" : str,
just_days ? "" : " ",
days);
}
}
return true;
}
// End of callbacks
static void free_data(distro_elem_t *list, char **content) {
distro_elem_t *next;
while(list != NULL) {
next = list->next;
free(list->distro->milestones[MILESTONE_CREATED]);
free(list->distro->milestones[MILESTONE_RELEASE]);
free(list->distro->milestones[MILESTONE_EOL]);
#ifdef DEBIAN
free(list->distro->milestones[MILESTONE_EOL_LTS]);
free(list->distro->milestones[MILESTONE_EOL_ELTS]);
#endif
#ifdef UBUNTU
free(list->distro->milestones[MILESTONE_EOL_SERVER]);
free(list->distro->milestones[MILESTONE_EOL_ESM]);
#endif
free(list->distro);
free(list);
list = next;
}
free(*content);
*content = NULL;
}
static distro_elem_t *read_data(const char *filename, char **content) {
char *data;
char *line;
distro_elem_t *current;
distro_elem_t *distro_list = NULL;
distro_elem_t *last = NULL;
distro_t *distro;
int lineno;
int failures = 0;
data = *content = read_full_file(filename);
line = strsep(&data, "\n");
lineno = 1;
if(unlikely(strncmp(CSV_HEADER, line, strlen(CSV_HEADER)) != 0)) {
fprintf(stderr, NAME ": Header `%s' in file `%s' does not start with "
"`" CSV_HEADER "'.\n", line, filename);
failures++;
}
while((line = strsep(&data, "\n")) != NULL) {
lineno++;
// Ignore empty lines and comments (starting with #).
if(likely(*line != '\0' && *line != '#')) {
int milestone_index;
distro = malloc(sizeof(distro_t));
distro->version = strsep(&line, ",");
distro->codename = strsep(&line, ",");
distro->series = strsep(&line, ",");
for(milestone_index = 0; milestone_index < (int)MILESTONE_COUNT;
milestone_index++) {
distro->milestones[milestone_index] =
read_date(strsep(&line, ","), &failures, filename,
lineno, milestones[milestone_index]);
}
current = malloc(sizeof(distro_elem_t));
current->distro = distro;
current->next = NULL;
if(last == NULL) {
distro_list = current;
} else {
last->next = current;
}
last = current;
}
}
if(unlikely(distro_list == NULL)) {
fprintf(stderr, NAME ": No data found in file `%s'.\n", filename);
failures++;
}
if(unlikely(failures > 0)) {
free_data(distro_list, content);
distro_list = NULL;
}
return distro_list;
}
static bool filter_data(const distro_elem_t *distro_list, const date_t *date,
int date_index, int just_days,
bool (*filter_cb)(const date_t*, const distro_t*),
bool (*print_cb)(const distro_t*, const date_t*, int, int)) {
while(distro_list != NULL) {
if(filter_cb(date, distro_list->distro)) {
if(!print_cb(distro_list->distro, date, date_index, just_days)) {
return false;
}
}
distro_list = distro_list->next;
}
return false;
}
static const distro_t *get_distro(const distro_elem_t *distro_list,
const date_t *date,
bool (*filter_cb)(const date_t*, const distro_t*),
const distro_t *(*select_cb)(const distro_elem_t*)) {
distro_elem_t *current;
distro_elem_t *filtered_list = NULL;
distro_elem_t *last = NULL;
const distro_t *selected;
while(distro_list != NULL) {
if(filter_cb(date, distro_list->distro)) {
current = malloc(sizeof(distro_elem_t));
current->distro = distro_list->distro;
current->next = NULL;
if(last == NULL) {
filtered_list = current;
} else {
last->next = current;
}
last = current;
}
distro_list = distro_list->next;
}
if(filtered_list == NULL) {
selected = NULL;
} else {
selected = select_cb(filtered_list);
}
while(filtered_list != NULL) {
current = filtered_list->next;
free(filtered_list);
filtered_list = current;
}
return selected;
}
static void print_help(void) {
int i;
printf("Usage: " NAME " [options]\n"
"\n"
"Options:\n"
" -h --help show this help message and exit\n"
" --date=DATE date for calculating the version (default: today)\n"
" --series=SERIES series to calculate the version for\n"
" -y[MILESTONE] additionally, display days until milestone\n"
" --days=[MILESTONE] ("
);
for(i = 0; i < (int)MILESTONE_COUNT; i++) {
printf("%s%s", milestones[i], i + 1 == MILESTONE_COUNT ? ")\n" : ", ");
}
printf(""
#ifdef DEBIAN
" --alias=DIST print the alias (oldstable, stable, testing, unstable)\n"
" relative to the given distribution codename\n"
#endif
" -a --all list all known versions\n"
" -d --devel latest development version\n"
#ifdef DEBIAN
" -t --testing current testing version\n"
#endif
" -s --stable latest stable version\n"
#ifdef UBUNTU
" --lts latest long term support (LTS) version\n"
#endif
#ifdef DEBIAN
" -o --oldstable latest oldstable version\n"
#endif
" --supported list of all supported versions (including development)\n"
#ifdef DEBIAN
" -l --lts list of all LTS supported versions\n"
" -e --elts list of all Extended LTS supported versions\n"
#endif
#ifdef UBUNTU
" --supported-esm list of all Ubuntu Advantage supported stable versions\n"
#endif
" --unsupported list of all unsupported stable versions\n"
" -c --codename print the codename (default)\n"
" -f --fullname print the full name\n"
" -r --release print the release version\n"
"\n"
"See " NAME "(1) for more info.\n");
}
static inline int not_exactly_one(void) {
fprintf(stderr, NAME ": You have to select exactly one of "
#ifdef DEBIAN
"--alias, "
#endif
"--all, --devel, "
#ifdef DEBIAN
"--elts, "
#endif
#ifdef UBUNTU
"--latest, "
#endif
"--lts, "
#ifdef DEBIAN
"--oldstable, "
#endif
"--stable, --supported, "
#ifdef UBUNTU
"--supported-esm, "
#endif
"--series, "
#ifdef DEBIAN
"--testing, "
#endif
"--unsupported.\n");
return EXIT_FAILURE;
}
int main(int argc, char *argv[]) {
bool show_days = false;
bool just_days = true;
char *content;
date_t *date = NULL;
distro_elem_t *distro_list;
const distro_t *selected;
int i;
int date_index = -1;
char *series_name = NULL;
int option;
int option_index;
int return_value = EXIT_SUCCESS;
int selected_filters = 0;
bool (*filter_cb)(const date_t*, const distro_t*) = NULL;
const distro_t *(*select_cb)(const distro_elem_t*) = NULL;
bool (*print_cb)(const distro_t*, const date_t*, int, int) = print_codename;
#ifdef DEBIAN
char *alias_codename = NULL;
#endif
#ifdef UBUNTU
bool filter_latest = false;
#endif
const struct option long_options[] = {
{"help", no_argument, NULL, 'h' },
{"date", required_argument, NULL, 'D' },
{"series", required_argument, NULL, 'R' },
{"all", no_argument, NULL, 'a' },
{"days", optional_argument, NULL, 'y' },
{"devel", no_argument, NULL, 'd' },
{"stable", no_argument, NULL, 's' },
{"supported", no_argument, NULL, 'S' },
#ifdef UBUNTU
{"supported-esm", no_argument, NULL, 'e' },
#endif
{"unsupported", no_argument, NULL, 'U' },
{"codename", no_argument, NULL, 'c' },
{"fullname", no_argument, NULL, 'f' },
{"release", no_argument, NULL, 'r' },
#ifdef DEBIAN
{"alias", required_argument, NULL, 'A' },
{"elts", no_argument, NULL, 'e' },
{"lts", no_argument, NULL, 'l' },
{"oldstable", no_argument, NULL, 'o' },
{"testing", no_argument, NULL, 't' },
#endif
#ifdef UBUNTU
{"latest", no_argument, NULL, 'l' },
{"lts", no_argument, NULL, 'L' },
#endif
{NULL, 0, NULL, '\0' }
};
#ifdef UBUNTU
const char *short_options = "hadscrfly::";
#endif
#ifdef DEBIAN
const char *short_options = "hadescrfloty::";
#endif
// Suppress error messages from getopt_long
opterr = 0;
while ((option = getopt_long(argc, argv, short_options,
long_options, &option_index)) != -1) {
switch (option) {
#ifdef DEBIAN
case 'A':
// Only long option --alias is used
if(unlikely(alias_codename != NULL)) {
fprintf(stderr, NAME ": --alias requested multiple times.\n");
free(date);
return EXIT_FAILURE;
}
if(!is_valid_codename(optarg)) {
fprintf(stderr, NAME ": invalid distribution codename `%s'\n",
optarg);
free(date);
return EXIT_FAILURE;
}
selected_filters++;
alias_codename = optarg;
break;
#endif
case 'a':
selected_filters++;
filter_cb = filter_all;
select_cb = NULL;
break;
case 'c':
just_days = false;
print_cb = print_codename;
break;
case 'd':
selected_filters++;
filter_cb = filter_devel;
#ifdef UBUNTU
select_cb = select_latest_created;
#endif
#ifdef DEBIAN
select_cb = select_first;
#endif
break;
case 'D':
// Only long option --date is used
if(unlikely(date != NULL)) {
fprintf(stderr, NAME ": Date specified multiple times.\n");
free(date);
return EXIT_FAILURE;
}
date = malloc(sizeof(date_t));
i = sscanf(optarg, "%u-%u-%u", &date->year, &date->month,
&date->day);
if(i != 3 || !is_valid_date(date)) {
fprintf(stderr, NAME ": invalid date `%s'\n", optarg);
free(date);
return EXIT_FAILURE;
}
break;
case 'R':
// Only long option --series is used
if(unlikely(series_name != NULL)) {
fprintf(stderr, NAME ": series requested multiple times.\n");
return EXIT_FAILURE;
}
if(!optarg || !is_valid_codename(optarg)) {
fprintf(stderr, NAME ": invalid distribution series `%s'\n",
optarg);
free(date);
return EXIT_FAILURE;
}
selected_filters++;
series_name = optarg;
break;
case 'f':
just_days = false;
print_cb = print_fullname;
break;
case 'h':
print_help();
free(date);
return EXIT_SUCCESS;
#ifdef UBUNTU
case 'l':
selected_filters++;
filter_latest = true;
filter_cb = filter_devel;
select_cb = select_latest_created;
break;
case 'L':
// Only long option --lts is used
selected_filters++;
filter_cb = filter_lts;
select_cb = select_latest_release;
break;
#endif
#ifdef DEBIAN
case 'e':
selected_filters++;
filter_cb = filter_elts_supported;
select_cb = NULL;
break;
case 'l':
selected_filters++;
filter_cb = filter_lts_supported;
select_cb = NULL;
break;
case 'o':
selected_filters++;
filter_cb = filter_oldstable;
select_cb = select_oldstable;
break;
#endif
case 'r':
just_days = false;
print_cb = print_release;
break;
case 's':
selected_filters++;
filter_cb = filter_stable;
select_cb = select_latest_release;
break;
case 'S':
// Only long option --supported is used
selected_filters++;
filter_cb = filter_supported;
select_cb = NULL;
break;
#ifdef UBUNTU
case 'e':
// Only long option --supported-esm is used
selected_filters++;
filter_cb = filter_esm_supported;
select_cb = NULL;
break;
#endif
#ifdef DEBIAN
case 't':
selected_filters++;
filter_cb = filter_testing;
select_cb = select_latest_created;
break;
#endif
case 'U':
// Only long option --unsupported is used
selected_filters++;
filter_cb = filter_unsupported;
select_cb = NULL;
break;
case 'y':
show_days = true;
if(optarg) {
date_index = milestone_to_index(optarg);
if(date_index < 0) {
fprintf(stderr, NAME ": invalid milestone: %s\n",
optarg);
return EXIT_FAILURE;
}
}
break;
case '?':
if(optopt == '\0') {
// Long option failed
fprintf(stderr, NAME ": unrecognized option `%s'\n",
argv[optind-1]);
#ifdef DEBIAN
} else if(optopt == 'A') {
fprintf(stderr, NAME ": option `--alias' requires "
"an argument DIST\n");
#endif
} else if(optopt == 'D') {
fprintf(stderr, NAME ": option `--date' requires "
"an argument DATE\n");
} else if(optopt == 'R') {
fprintf(stderr, NAME ": option `--series' requires "
"an argument SERIES\n");
} else {
fprintf(stderr, NAME ": unrecognized option `-%c'\n",
optopt);
}
free(date);
return EXIT_FAILURE;
break;
default:
fprintf(stderr, NAME ": getopt returned character code %i. "
"Please file a bug report.\n", option);
free(date);
return EXIT_FAILURE;
}
}
if(show_days && date_index < 0) {
date_index = MILESTONE_RELEASE;
}
if(unlikely(optind < argc)) {
fprintf(stderr, NAME ": unrecognized arguments: %s", argv[optind]);
for(i = optind + 1; i < argc; i++) {
fprintf(stderr, " %s", argv[i]);
}
fprintf(stderr, "\n");
free(date);
return EXIT_FAILURE;
}
if(unlikely(selected_filters != 1)) {
free(date);
return not_exactly_one();
}
if(unlikely(date == NULL)) {
time_t time_now = time(NULL);
struct tm *now = gmtime(&time_now);
date = malloc(sizeof(date_t));
date->year = 1900 + now->tm_year;
date->month = 1 + now->tm_mon;
date->day = now->tm_mday;
}
distro_list = read_data(DATA_DIR "/" CSV_NAME ".csv", &content);
if(unlikely(distro_list == NULL)) {
free(date);
return EXIT_FAILURE;
}
#ifdef DEBIAN
if(alias_codename) {
const distro_t *oldstable = get_distro(distro_list, date, filter_oldstable,
select_oldstable);
const distro_t *stable = get_distro(distro_list, date, filter_stable,
select_latest_release);
const distro_t *testing = get_distro(distro_list, date, filter_testing,
select_latest_created);
const distro_t *unstable = get_distro(distro_list, date, filter_devel,
select_first);
if(unlikely(oldstable == NULL || stable == NULL || testing == NULL ||
unstable == NULL)) {
fprintf(stderr, NAME ": " OUTDATED_ERROR "\n");
return_value = EXIT_FAILURE;
} else if(strcmp(oldstable->series, alias_codename) == 0) {
printf("oldstable\n");
} else if(strcmp(stable->series, alias_codename) == 0) {
printf("stable\n");
} else if(strcmp(testing->series, alias_codename) == 0) {
printf("testing\n");
} else if(strcmp(unstable->series, alias_codename) == 0) {
printf("unstable\n");
} else {
printf("%s\n", alias_codename);
}
free(date);
free_data(distro_list, &content);
return return_value;
}
#endif
if(select_cb == NULL && !series_name) {
filter_data(distro_list, date, date_index, just_days, filter_cb, print_cb);
} else {
if(series_name) {
selected = select_series(distro_list, series_name);
} else {
selected = get_distro(distro_list, date, filter_cb, select_cb);
#ifdef UBUNTU
if(selected == NULL && filter_latest) {
selected = get_distro(distro_list, date, filter_stable, select_latest_release);
}
#endif
}
if(selected == NULL) {
if(series_name) {
fprintf(stderr, NAME ": unknown distribution series `%s'\n", series_name);
} else {
fprintf(stderr, NAME ": " OUTDATED_ERROR "\n");
}
return_value = EXIT_FAILURE;
} else {
if(!print_cb(selected, date, date_index, just_days)) {
return_value = EXIT_FAILURE;
}
}
}
free(date);
free_data(distro_list, &content);
return return_value;