fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / lotuswordpro / source / filter / localtime.cxx
blobf8af7e69d6c0dd013bc7c02f342b4f5e1239278a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * The Contents of this file are made available subject to the terms of
5 * either of the following licenses
7 * - GNU Lesser General Public License Version 2.1
8 * - Sun Industry Standards Source License Version 1.1
10 * Sun Microsystems Inc., October, 2000
12 * GNU Lesser General Public License Version 2.1
13 * =============================================
14 * Copyright 2000 by Sun Microsystems, Inc.
15 * 901 San Antonio Road, Palo Alto, CA 94303, USA
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License version 2.1, as published by the Free Software Foundation.
21 * This library is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 * Lesser General Public License for more details.
26 * You should have received a copy of the GNU Lesser General Public
27 * License along with this library; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
32 * Sun Industry Standards Source License Version 1.1
33 * =================================================
34 * The contents of this file are subject to the Sun Industry Standards
35 * Source License Version 1.1 (the "License"); You may not use this file
36 * except in compliance with the License. You may obtain a copy of the
37 * License at http://www.openoffice.org/license.html.
39 * Software provided under this License is provided on an "AS IS" basis,
40 * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
41 * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
42 * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
43 * See the License for the specific provisions governing your rights and
44 * obligations concerning the Software.
46 * The Initial Developer of the Original Code is: IBM Corporation
48 * Copyright: 2008 by IBM Corporation
50 * All Rights Reserved.
52 * Contributor(s): _______________________________________
55 ************************************************************************/
56 #include "localtime.hxx"
57 #include <limits.h>
58 #include <unicode/timezone.h>
59 //End by
60 const long DAY_SEC =24 * 60 * 60;
61 const long YEAR_SEC = 365 * DAY_SEC;
62 const long FOURYEAR_SEC = 4 * YEAR_SEC + DAY_SEC;
63 #ifndef LONG_MAX
64 const long LONG_MAX=2147483647;
65 #endif
66 //01-01-70 was a Thursday
67 const long BASE_DOW = 4;
69 long _lpdays[] = {-1, 30, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365};
71 long _days[] = {-1, 30, 58, 89, 119, 150, 180, 211, 242, 272, 303, 333, 364};
73 bool LtgGmTime(long rtime,LtTm& rtm)
75 if (rtime < 0)
77 return false;
79 //is-current-year-a-leap-year flag
80 int islpyr = 0;
82 long tmptim;
83 long caltim = rtime;
84 tmptim = (long)(caltim / FOURYEAR_SEC);
85 caltim -= ((long)tmptim * FOURYEAR_SEC);
87 //Determine which year of the interval
89 // 1970, 1974, 1978,...,etc.
90 tmptim = (tmptim * 4) + 70;
92 if (caltim >= YEAR_SEC)
94 //1971, 1975, 1979,...,etc.
95 tmptim++;
96 caltim -= YEAR_SEC;
98 if ( caltim >= YEAR_SEC )
100 // 1972, 1976, 1980,...,etc.
101 tmptim++;
102 caltim -= YEAR_SEC;
104 //Note, it takes 366 days-worth of seconds to get past a leap year.
105 if (caltim >= (YEAR_SEC + DAY_SEC))
107 //1973, 1977, 1981,...,etc.
108 tmptim++;
109 caltim -= (YEAR_SEC + DAY_SEC);
111 else
113 //In a leap year after all, set the flag.
114 islpyr++;
119 //tmptim now holds the value for tm_year. caltim now holds the
120 //number of elapsed seconds since the beginning of that year.
122 rtm.tm_year = tmptim;
124 //Determine days since January 1 (0 - 365). This is the tm_yday value.
125 //Leave caltim with number of elapsed seconds in that day.
127 rtm.tm_yday = (long)(caltim / DAY_SEC);
128 caltim -= (long)(rtm.tm_yday) * DAY_SEC;
130 //Determine months since January (0 - 11) and day of month (1 - 31)
132 long* mdays;
133 if ( islpyr )
135 mdays = _lpdays;
137 else
139 mdays = _days;
142 for ( tmptim = 1 ; mdays[tmptim] < rtm.tm_yday ; tmptim++ ) ;
144 rtm.tm_mon = --tmptim;
146 rtm.tm_mday = rtm.tm_yday - mdays[tmptim];
148 //Determine days since Sunday (0 - 6)
150 rtm.tm_wday = ((long)(rtime / DAY_SEC) + BASE_DOW) % 7;
152 //Determine hours since midnight (0 - 23), minutes after the hour
153 //(0 - 59), and seconds after the minute (0 - 59).
155 rtm.tm_hour = (long)(caltim / 3600);
156 caltim -= (long)rtm.tm_hour * 3600;
158 rtm.tm_min = (long)(caltim / 60);
159 rtm.tm_sec = (long)(caltim - (rtm.tm_min) * 60);
161 rtm.tm_isdst = 0;
163 //adjust year & month
164 rtm.tm_year += 1900;
165 ++(rtm.tm_mon);
167 return true;
170 bool LtgLocalTime(long rtime,LtTm& rtm)
172 if (rtime < 0)
174 return false;
177 if ((rtime > 3 * DAY_SEC)&&(rtime < LONG_MAX - 3 * DAY_SEC))
179 TimeZone* pLocalZone = TimeZone::createDefault();
180 long offset = (pLocalZone->getRawOffset())/1000;
181 delete pLocalZone;
182 long ltime = rtime + offset;
183 return LtgGmTime(ltime,rtm);
185 return false;
188 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */