Eliminated code duplication.
[gedcom-parse.git] / gedcom / date.c
1 /* Date manipulation routines.
2    Copyright (C) 2001 The Genes Development Team
3    This file is part of the Gedcom parser library.
4    Contributed by Peter Verthez <Peter.Verthez@advalvas.be>, 2001.
5
6    The Gedcom parser library is free software; you can redistribute it
7    and/or modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    The Gedcom parser library is distributed in the hope that it will be
12    useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the Gedcom parser library; if not, write to the
18    Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19    02111-1307 USA.  */
20
21 /* $Id$ */
22 /* $Name$ */
23
24 #include <stdio.h>
25 #include "gedcom_internal.h"
26 #include "sdncal.h"
27 #include "date.h"
28
29 struct date_value dv_s;
30 struct date date_s;
31
32 struct date_value def_date_val;
33 struct date def_date;
34
35 int max_month[] = { 12,  /* CAL_GREGORIAN */
36                     12,  /* CAL_JULIAN */
37                     13,  /* CAL_HEBREW */
38                     13,  /* CAL_FRENCH_REV */
39                     0    /* CAL_UNKNOWN */
40                   };
41
42 typedef long int (*cal_func_type) (int, int, int);
43
44 cal_func_type cal_func[] = { &GregorianToSdn,   /* CAL_GREGORIAN */
45                              &JulianToSdn,      /* CAL_JULIAN */
46                              &JewishToSdn,      /* CAL_JEWISH */
47                              &FrenchToSdn       /* CAL_FRENCH_REV */
48                            };
49
50 void copy_date(struct date *to, struct date from)
51 {
52   memcpy(to, &from, sizeof(struct date));
53 }
54
55 void init_date(struct date *d)
56 {
57   d->cal = CAL_UNKNOWN;
58   d->day_str[0] = '\0';
59   d->month_str[0] = '\0';
60   d->year_str[0] = '\0';
61   d->day = -1;
62   d->month = -1;
63   d->year = -1;
64   d->year_type = YEAR_SINGLE;
65   d->type = DATE_UNRECOGNIZED;
66   d->sdn1 = -1;
67   d->sdn2 = -1;
68 }
69
70 struct date_value make_date_value(Date_value_type t, struct date d1,
71                                   struct date d2, char* p)
72 {
73   dv_s.type = t;
74   copy_date(&dv_s.date1, d1);
75   copy_date(&dv_s.date2, d2);
76   strncpy(dv_s.phrase, p, MAX_PHRASE_LEN + 1);
77   return dv_s;
78 }
79
80 void make_date_complete(struct date *d)
81 {
82   if (d->cal == CAL_UNKNOWN)
83     d->type = DATE_UNRECOGNIZED;
84   else {
85     struct date end_date;
86     cal_func_type to_sdn;
87     if (d->day == -1 || d->month == -1 || d->year == -1) {
88       d->type = DATE_BOUNDED;
89       copy_date(&end_date, *d);
90       if (d->month == -1) {
91         d->month = 1; end_date.month = 1;
92         d->day   = 1; end_date.day   = 1;
93         end_date.year += 1;
94       }
95       else if (d->day == -1) {
96         d->day   = 1; end_date.day   = 1;
97         end_date.month += 1;
98         if (end_date.month > max_month[d->cal]) {
99           end_date.month -= max_month[d->cal];
100           end_date.year  += 1;
101         }
102       }
103     }
104     else {
105       d->type = DATE_EXACT;
106     }
107
108     to_sdn = cal_func[d->cal];
109     d->sdn1 = (*to_sdn)(d->year, d->month, d->day);
110     if (d->type == DATE_BOUNDED) {
111       d->sdn2 = (*to_sdn)(end_date.year, end_date.month, end_date.day);
112       d->sdn2 -= 1;
113     }
114   }
115 }
116
117 struct date_value gedcom_parse_date(char* line_value)
118 {
119   init_date(&date_s);
120   init_date(&def_date);
121   init_gedcom_date_lex(line_value);
122   gedcom_date_parse();
123   close_gedcom_date_lex();
124   make_date_complete(&dv_s.date1);
125   make_date_complete(&dv_s.date2);
126   return dv_s;
127 }
128