1a2232a11f05a54376eec3e59ce7cf5cce4aa40e
[gedcom-parse.git] / gedcom / date.c
1 /* Date manipulation routines.
2    Copyright (C) 2001,2002 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 "gedcom_internal.h"
25 #include "sdncal.h"
26 #include "date.h"
27
28 struct date_value dv_s;
29 struct date date_s;
30
31 struct date_value def_date_val;
32 struct date def_date;
33
34 const char* curr_line_value;
35
36 int max_month[] = { 12,  /* CAL_GREGORIAN */
37                     12,  /* CAL_JULIAN */
38                     13,  /* CAL_HEBREW */
39                     13,  /* CAL_FRENCH_REV */
40                     0    /* CAL_UNKNOWN */
41                   };
42
43 typedef long int (*cal_func_type) (int, int, int);
44
45 cal_func_type cal_func[] = { &GregorianToSdn,   /* CAL_GREGORIAN */
46                              &JulianToSdn,      /* CAL_JULIAN */
47                              &JewishToSdn,      /* CAL_JEWISH */
48                              &FrenchToSdn       /* CAL_FRENCH_REV */
49                            };
50
51 void copy_date(struct date *to, struct date from)
52 {
53   memcpy(to, &from, sizeof(struct date));
54 }
55
56 void init_date(struct date *d)
57 {
58   d->cal = CAL_UNKNOWN;
59   d->day_str[0] = '\0';
60   d->month_str[0] = '\0';
61   d->year_str[0] = '\0';
62   d->day = -1;
63   d->month = -1;
64   d->year = -1;
65   d->year_type = YEAR_SINGLE;
66   d->type = DATE_UNRECOGNIZED;
67   d->sdn1 = -1;
68   d->sdn2 = -1;
69 }
70
71 struct date_value make_date_value(Date_value_type t, struct date d1,
72                                   struct date d2, const char* p)
73 {
74   dv_s.type = t;
75   copy_date(&dv_s.date1, d1);
76   copy_date(&dv_s.date2, d2);
77   strncpy(dv_s.phrase, p, MAX_PHRASE_LEN + 1);
78   return dv_s;
79 }
80
81 void make_date_complete(struct date *d)
82 {
83   if (d->cal == CAL_UNKNOWN)
84     d->type = DATE_UNRECOGNIZED;
85   else {
86     struct date end_date;
87     cal_func_type to_sdn;
88     if (d->day == -1 || d->month == -1 || d->year == -1) {
89       d->type = DATE_BOUNDED;
90       copy_date(&end_date, *d);
91       if (d->month == -1) {
92         d->month = 1; end_date.month = 1;
93         d->day   = 1; end_date.day   = 1;
94         end_date.year += 1;
95       }
96       else if (d->day == -1) {
97         d->day   = 1; end_date.day   = 1;
98         end_date.month += 1;
99         if (end_date.month > max_month[d->cal]) {
100           end_date.month -= max_month[d->cal];
101           end_date.year  += 1;
102         }
103       }
104     }
105     else {
106       d->type = DATE_EXACT;
107     }
108
109     to_sdn = cal_func[d->cal];
110     d->sdn1 = (*to_sdn)(d->year, d->month, d->day);
111     if (d->type == DATE_BOUNDED) {
112       d->sdn2 = (*to_sdn)(end_date.year, end_date.month, end_date.day);
113       d->sdn2 -= 1;
114     }
115   }
116 }
117
118 struct date_value gedcom_parse_date(const char* line_value)
119 {
120   init_date(&date_s);
121   init_date(&def_date);
122   curr_line_value = line_value;
123   init_gedcom_date_lex(line_value);
124   gedcom_date_parse();
125   close_gedcom_date_lex();
126   make_date_complete(&dv_s.date1);
127   make_date_complete(&dv_s.date2);
128   return dv_s;
129 }
130