Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include "calendarImpl.hxx"
22 : #include "localedata.hxx"
23 : #include <comphelper/processfactory.hxx>
24 :
25 : using namespace ::com::sun::star::uno;
26 : using namespace ::com::sun::star::lang;
27 : using ::rtl::OUString;
28 :
29 : namespace com { namespace sun { namespace star { namespace i18n {
30 :
31 : #define ERROR RuntimeException()
32 :
33 32 : CalendarImpl::CalendarImpl(const Reference< XMultiServiceFactory > &rxMSF) : xMSF(rxMSF)
34 : {
35 32 : }
36 :
37 90 : CalendarImpl::~CalendarImpl()
38 : {
39 : // Clear lookuptable
40 54 : for (size_t l = 0; l < lookupTable.size(); l++)
41 18 : delete lookupTable[l];
42 36 : lookupTable.clear();
43 54 : }
44 :
45 :
46 : void SAL_CALL
47 32 : CalendarImpl::loadDefaultCalendar( const Locale& rLocale ) throw(RuntimeException)
48 : {
49 32 : Sequence< Calendar2 > xC = LocaleData().getAllCalendars2(rLocale);
50 32 : for (sal_Int32 i = 0; i < xC.getLength(); i++) {
51 32 : if (xC[i].Default) {
52 32 : loadCalendar(xC[i].Name, rLocale);
53 32 : return;
54 : }
55 : }
56 0 : throw ERROR;
57 : }
58 :
59 : void SAL_CALL
60 32 : CalendarImpl::loadCalendar(const OUString& uniqueID, const Locale& rLocale ) throw (RuntimeException)
61 : {
62 32 : Reference < XCalendar3 > xOldCalendar( xCalendar ); // backup
63 : sal_Int32 i;
64 :
65 32 : for (i = 0; i < sal::static_int_cast<sal_Int32>(lookupTable.size()); i++) {
66 0 : lookupTableItem *listItem = lookupTable[i];
67 0 : if (uniqueID == listItem->uniqueID) {
68 0 : xCalendar = listItem->xCalendar;
69 0 : break;
70 : }
71 : }
72 :
73 32 : if (i >= sal::static_int_cast<sal_Int32>(lookupTable.size())) {
74 32 : Reference < XInterface > xI = xMSF->createInstance(
75 32 : OUString("com.sun.star.i18n.Calendar_") + uniqueID);
76 :
77 32 : if ( ! xI.is() ) {
78 : // check if the calendar is defined in localedata, load gregorian calendar service.
79 0 : Sequence< Calendar2 > xC = LocaleData().getAllCalendars2(rLocale);
80 0 : for (i = 0; i < xC.getLength(); i++) {
81 0 : if (uniqueID == xC[i].Name) {
82 0 : xI = xMSF->createInstance(
83 0 : OUString("com.sun.star.i18n.Calendar_gregorian"));
84 0 : break;
85 : }
86 0 : }
87 : }
88 :
89 32 : if ( xI.is() )
90 32 : xI->queryInterface(::getCppuType((const Reference< XCalendar3>*)0)) >>= xCalendar;
91 : else
92 0 : throw ERROR;
93 :
94 64 : lookupTable.push_back( new lookupTableItem(uniqueID, xCalendar) );
95 : }
96 :
97 32 : if ( !xCalendar.is() )
98 : {
99 0 : xCalendar = xOldCalendar;
100 0 : throw ERROR;
101 : }
102 :
103 : try
104 : {
105 32 : xCalendar->loadCalendar(uniqueID, rLocale);
106 : }
107 0 : catch ( Exception& )
108 : { // restore previous calendar and re-throw
109 0 : xCalendar = xOldCalendar;
110 0 : throw;
111 32 : }
112 32 : }
113 :
114 : Calendar2 SAL_CALL
115 0 : CalendarImpl::getLoadedCalendar2() throw(RuntimeException)
116 : {
117 0 : if (xCalendar.is())
118 0 : return xCalendar->getLoadedCalendar2();
119 : else
120 0 : throw ERROR ;
121 : }
122 :
123 : Calendar SAL_CALL
124 0 : CalendarImpl::getLoadedCalendar() throw(RuntimeException)
125 : {
126 0 : if (xCalendar.is())
127 0 : return xCalendar->getLoadedCalendar();
128 : else
129 0 : throw ERROR ;
130 : }
131 :
132 : Sequence< OUString > SAL_CALL
133 0 : CalendarImpl::getAllCalendars( const Locale& rLocale ) throw(RuntimeException)
134 : {
135 0 : Sequence< Calendar2 > xC = LocaleData().getAllCalendars2(rLocale);
136 0 : sal_Int32 nLen = xC.getLength();
137 0 : Sequence< OUString > xSeq( nLen );
138 0 : for (sal_Int32 i = 0; i < nLen; i++)
139 0 : xSeq[i] = xC[i].Name;
140 0 : return xSeq;
141 : }
142 :
143 : void SAL_CALL
144 584 : CalendarImpl::setDateTime( double timeInDays ) throw(RuntimeException)
145 : {
146 584 : if (xCalendar.is())
147 584 : xCalendar->setDateTime( timeInDays );
148 : else
149 0 : throw ERROR ;
150 584 : }
151 :
152 : double SAL_CALL
153 60 : CalendarImpl::getDateTime() throw(RuntimeException)
154 : {
155 60 : if (xCalendar.is())
156 120 : return xCalendar->getDateTime();
157 : else
158 0 : throw ERROR ;
159 : }
160 :
161 : OUString SAL_CALL
162 188 : CalendarImpl::getUniqueID() throw(RuntimeException)
163 : {
164 188 : if (xCalendar.is())
165 376 : return xCalendar->getUniqueID();
166 : else
167 0 : throw ERROR ;
168 : }
169 :
170 : void SAL_CALL
171 240 : CalendarImpl::setValue( sal_Int16 fieldIndex, sal_Int16 value ) throw(RuntimeException)
172 : {
173 240 : if (xCalendar.is())
174 240 : xCalendar->setValue( fieldIndex, value );
175 : else
176 0 : throw ERROR ;
177 240 : }
178 :
179 : sal_Int16 SAL_CALL
180 2576 : CalendarImpl::getValue( sal_Int16 fieldIndex ) throw(RuntimeException)
181 : {
182 2576 : if (xCalendar.is())
183 5152 : return xCalendar->getValue( fieldIndex );
184 : else
185 0 : throw ERROR ;
186 : }
187 :
188 : void SAL_CALL
189 0 : CalendarImpl::addValue( sal_Int16 fieldIndex, sal_Int32 amount ) throw(RuntimeException)
190 : {
191 0 : if (xCalendar.is())
192 0 : xCalendar->addValue( fieldIndex, amount);
193 : else
194 0 : throw ERROR ;
195 0 : }
196 :
197 : sal_Int16 SAL_CALL
198 0 : CalendarImpl::getFirstDayOfWeek() throw(RuntimeException)
199 : {
200 0 : if (xCalendar.is())
201 0 : return xCalendar->getFirstDayOfWeek();
202 : else
203 0 : throw ERROR ;
204 : }
205 :
206 : void SAL_CALL
207 0 : CalendarImpl::setFirstDayOfWeek( sal_Int16 day )
208 : throw(RuntimeException)
209 : {
210 0 : if (xCalendar.is())
211 0 : xCalendar->setFirstDayOfWeek(day);
212 : else
213 0 : throw ERROR ;
214 0 : }
215 :
216 : void SAL_CALL
217 0 : CalendarImpl::setMinimumNumberOfDaysForFirstWeek( sal_Int16 days ) throw(RuntimeException)
218 : {
219 0 : if (xCalendar.is())
220 0 : xCalendar->setMinimumNumberOfDaysForFirstWeek(days);
221 : else
222 0 : throw ERROR ;
223 0 : }
224 :
225 : sal_Int16 SAL_CALL
226 0 : CalendarImpl::getMinimumNumberOfDaysForFirstWeek() throw(RuntimeException)
227 : {
228 0 : if (xCalendar.is())
229 0 : return xCalendar->getMinimumNumberOfDaysForFirstWeek();
230 : else
231 0 : throw ERROR ;
232 : }
233 :
234 :
235 : OUString SAL_CALL
236 165 : CalendarImpl::getDisplayName( sal_Int16 displayIndex, sal_Int16 idx, sal_Int16 nameType ) throw(RuntimeException)
237 : {
238 165 : if (xCalendar.is())
239 330 : return xCalendar->getDisplayName( displayIndex, idx, nameType );
240 : else
241 0 : throw ERROR ;
242 : }
243 :
244 : sal_Int16 SAL_CALL
245 291 : CalendarImpl::getNumberOfMonthsInYear() throw(RuntimeException)
246 : {
247 291 : if (xCalendar.is())
248 582 : return xCalendar->getNumberOfMonthsInYear();
249 : else
250 0 : throw ERROR ;
251 : }
252 :
253 :
254 : sal_Int16 SAL_CALL
255 111 : CalendarImpl::getNumberOfDaysInWeek() throw(RuntimeException)
256 : {
257 111 : if (xCalendar.is())
258 222 : return xCalendar->getNumberOfDaysInWeek();
259 : else
260 0 : throw ERROR ;
261 : }
262 :
263 :
264 : Sequence< CalendarItem > SAL_CALL
265 0 : CalendarImpl::getDays() throw(RuntimeException)
266 : {
267 0 : if (xCalendar.is())
268 0 : return xCalendar->getDays();
269 : else
270 0 : throw ERROR ;
271 : }
272 :
273 :
274 : Sequence< CalendarItem > SAL_CALL
275 0 : CalendarImpl::getMonths() throw(RuntimeException)
276 : {
277 0 : if (xCalendar.is())
278 0 : return xCalendar->getMonths();
279 : else
280 0 : throw ERROR ;
281 : }
282 :
283 :
284 : Sequence< CalendarItem2 > SAL_CALL
285 20 : CalendarImpl::getDays2() throw(RuntimeException)
286 : {
287 20 : if (xCalendar.is())
288 40 : return xCalendar->getDays2();
289 : else
290 0 : throw ERROR ;
291 : }
292 :
293 :
294 : Sequence< CalendarItem2 > SAL_CALL
295 20 : CalendarImpl::getMonths2() throw(RuntimeException)
296 : {
297 20 : if (xCalendar.is())
298 40 : return xCalendar->getMonths2();
299 : else
300 0 : throw ERROR ;
301 : }
302 :
303 :
304 : Sequence< CalendarItem2 > SAL_CALL
305 20 : CalendarImpl::getGenitiveMonths2() throw(RuntimeException)
306 : {
307 20 : if (xCalendar.is())
308 40 : return xCalendar->getGenitiveMonths2();
309 : else
310 0 : throw ERROR ;
311 : }
312 :
313 :
314 : Sequence< CalendarItem2 > SAL_CALL
315 20 : CalendarImpl::getPartitiveMonths2() throw(RuntimeException)
316 : {
317 20 : if (xCalendar.is())
318 40 : return xCalendar->getPartitiveMonths2();
319 : else
320 0 : throw ERROR ;
321 : }
322 :
323 :
324 : sal_Bool SAL_CALL
325 60 : CalendarImpl::isValid() throw(RuntimeException)
326 : {
327 60 : if (xCalendar.is())
328 120 : return xCalendar->isValid();
329 : else
330 0 : throw ERROR ;
331 : }
332 :
333 : OUString SAL_CALL
334 280 : CalendarImpl::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode )
335 : throw (RuntimeException)
336 : {
337 280 : if (xCalendar.is())
338 560 : return xCalendar->getDisplayString(nCalendarDisplayCode, nNativeNumberMode);
339 : else
340 0 : throw ERROR ;
341 : }
342 :
343 : OUString SAL_CALL
344 0 : CalendarImpl::getImplementationName(void) throw( RuntimeException )
345 : {
346 0 : return OUString("com.sun.star.i18n.CalendarImpl");
347 : }
348 :
349 : const sal_Char cCalendar[] = "com.sun.star.i18n.LocaleCalendar";
350 :
351 : sal_Bool SAL_CALL
352 0 : CalendarImpl::supportsService(const OUString& rServiceName) throw( RuntimeException )
353 : {
354 0 : return !rServiceName.compareToAscii(cCalendar);
355 : }
356 :
357 : Sequence< OUString > SAL_CALL
358 0 : CalendarImpl::getSupportedServiceNames(void) throw( RuntimeException )
359 : {
360 0 : Sequence< OUString > aRet(1);
361 0 : aRet[0] = OUString::createFromAscii(cCalendar);
362 0 : return aRet;
363 : }
364 :
365 : }}}}
366 :
367 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|