1*63bba73cSAndrew Rist /**************************************************************
2*63bba73cSAndrew Rist  *
3*63bba73cSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*63bba73cSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*63bba73cSAndrew Rist  * distributed with this work for additional information
6*63bba73cSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*63bba73cSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*63bba73cSAndrew Rist  * "License"); you may not use this file except in compliance
9*63bba73cSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*63bba73cSAndrew Rist  *
11*63bba73cSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*63bba73cSAndrew Rist  *
13*63bba73cSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*63bba73cSAndrew Rist  * software distributed under the License is distributed on an
15*63bba73cSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*63bba73cSAndrew Rist  * KIND, either express or implied.  See the License for the
17*63bba73cSAndrew Rist  * specific language governing permissions and limitations
18*63bba73cSAndrew Rist  * under the License.
19*63bba73cSAndrew Rist  *
20*63bba73cSAndrew Rist  *************************************************************/
21*63bba73cSAndrew Rist 
22*63bba73cSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #include "precompiled_xmloff.hxx"
25cdf0e10cSrcweir 
26cdf0e10cSrcweir #include "vcl_date_handler.hxx"
27cdf0e10cSrcweir #include "xmloff/xmluconv.hxx"
28cdf0e10cSrcweir 
29cdf0e10cSrcweir #include <com/sun/star/util/DateTime.hpp>
30cdf0e10cSrcweir 
31cdf0e10cSrcweir #include <tools/diagnose_ex.h>
32cdf0e10cSrcweir #include <tools/date.hxx>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir //......................................................................................................................
35cdf0e10cSrcweir namespace xmloff
36cdf0e10cSrcweir {
37cdf0e10cSrcweir //......................................................................................................................
38cdf0e10cSrcweir 
39cdf0e10cSrcweir     using ::com::sun::star::uno::Any;
40cdf0e10cSrcweir     using ::com::sun::star::uno::makeAny;
41cdf0e10cSrcweir     using ::com::sun::star::util::DateTime;
42cdf0e10cSrcweir 
43cdf0e10cSrcweir 	//==================================================================================================================
44cdf0e10cSrcweir 	//= VCLDateHandler
45cdf0e10cSrcweir 	//==================================================================================================================
46cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
VCLDateHandler()47cdf0e10cSrcweir     VCLDateHandler::VCLDateHandler()
48cdf0e10cSrcweir     {
49cdf0e10cSrcweir     }
50cdf0e10cSrcweir 
51cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
getAttributeValue(const PropertyValues &) const52cdf0e10cSrcweir     ::rtl::OUString VCLDateHandler::getAttributeValue( const PropertyValues& /*i_propertyValues*/ ) const
53cdf0e10cSrcweir     {
54cdf0e10cSrcweir         OSL_ENSURE( false, "VCLDateHandler::getAttributeValue: unexpected call!" );
55cdf0e10cSrcweir         return ::rtl::OUString();
56cdf0e10cSrcweir     }
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
getAttributeValue(const Any & i_propertyValue) const59cdf0e10cSrcweir     ::rtl::OUString VCLDateHandler::getAttributeValue( const Any& i_propertyValue ) const
60cdf0e10cSrcweir     {
61cdf0e10cSrcweir         sal_Int32 nVCLDate(0);
62cdf0e10cSrcweir         OSL_VERIFY( i_propertyValue >>= nVCLDate );
63cdf0e10cSrcweir         ::Date aVCLDate( nVCLDate );
64cdf0e10cSrcweir 
65cdf0e10cSrcweir         DateTime aDateTime; // default-inited to 0
66cdf0e10cSrcweir         aDateTime.Day = aVCLDate.GetDay();
67cdf0e10cSrcweir         aDateTime.Month = aVCLDate.GetMonth();
68cdf0e10cSrcweir         aDateTime.Year = aVCLDate.GetYear();
69cdf0e10cSrcweir 
70cdf0e10cSrcweir         ::rtl::OUStringBuffer aBuffer;
71cdf0e10cSrcweir         SvXMLUnitConverter::convertDateTime( aBuffer, aDateTime, sal_False );
72cdf0e10cSrcweir         return aBuffer.makeStringAndClear();
73cdf0e10cSrcweir     }
74cdf0e10cSrcweir 
75cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
getPropertyValues(const::rtl::OUString i_attributeValue,PropertyValues & o_propertyValues) const76cdf0e10cSrcweir     bool VCLDateHandler::getPropertyValues( const ::rtl::OUString i_attributeValue, PropertyValues& o_propertyValues ) const
77cdf0e10cSrcweir     {
78cdf0e10cSrcweir         sal_Int32 nVCLDate(0);
79cdf0e10cSrcweir 
80cdf0e10cSrcweir         DateTime aDateTime;
81cdf0e10cSrcweir         if ( SvXMLUnitConverter::convertDateTime( aDateTime, i_attributeValue ) )
82cdf0e10cSrcweir         {
83cdf0e10cSrcweir             ::Date aVCLDate( aDateTime.Day, aDateTime.Month, aDateTime.Year );
84cdf0e10cSrcweir             nVCLDate = aVCLDate.GetDate();
85cdf0e10cSrcweir         }
86cdf0e10cSrcweir         else
87cdf0e10cSrcweir         {
88cdf0e10cSrcweir             // compatibility format, before we wrote those values in XML-schema compatible form
89cdf0e10cSrcweir 			if ( !SvXMLUnitConverter::convertNumber( nVCLDate, i_attributeValue ) )
90cdf0e10cSrcweir             {
91cdf0e10cSrcweir                 OSL_ENSURE( false, "VCLDateHandler::getPropertyValues: unknown date format (no XML-schema date, no legacy integer)!" );
92cdf0e10cSrcweir                 return false;
93cdf0e10cSrcweir             }
94cdf0e10cSrcweir         }
95cdf0e10cSrcweir 
96cdf0e10cSrcweir         const Any aPropertyValue( makeAny( nVCLDate ) );
97cdf0e10cSrcweir 
98cdf0e10cSrcweir         OSL_ENSURE( o_propertyValues.size() == 1, "VCLDateHandler::getPropertyValues: date strings represent exactly one property - not more, not less!" );
99cdf0e10cSrcweir         for (   PropertyValues::iterator prop = o_propertyValues.begin();
100cdf0e10cSrcweir                 prop != o_propertyValues.end();
101cdf0e10cSrcweir                 ++prop
102cdf0e10cSrcweir             )
103cdf0e10cSrcweir         {
104cdf0e10cSrcweir             prop->second = aPropertyValue;
105cdf0e10cSrcweir         }
106cdf0e10cSrcweir         return true;
107cdf0e10cSrcweir     }
108cdf0e10cSrcweir 
109cdf0e10cSrcweir //......................................................................................................................
110cdf0e10cSrcweir } // namespace xmloff
111cdf0e10cSrcweir //......................................................................................................................
112