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_time_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/time.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 	//= VCLTimeHandler
45cdf0e10cSrcweir 	//==================================================================================================================
46cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
VCLTimeHandler()47cdf0e10cSrcweir     VCLTimeHandler::VCLTimeHandler()
48cdf0e10cSrcweir     {
49cdf0e10cSrcweir     }
50cdf0e10cSrcweir 
51cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
getAttributeValue(const PropertyValues &) const52cdf0e10cSrcweir     ::rtl::OUString VCLTimeHandler::getAttributeValue( const PropertyValues& /*i_propertyValues*/ ) const
53cdf0e10cSrcweir     {
54cdf0e10cSrcweir         OSL_ENSURE( false, "VCLTimeHandler::getAttributeValue: unexpected call!" );
55cdf0e10cSrcweir         return ::rtl::OUString();
56cdf0e10cSrcweir     }
57cdf0e10cSrcweir 
58cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
getAttributeValue(const Any & i_propertyValue) const59cdf0e10cSrcweir     ::rtl::OUString VCLTimeHandler::getAttributeValue( const Any& i_propertyValue ) const
60cdf0e10cSrcweir     {
61cdf0e10cSrcweir         sal_Int32 nVCLTime(0);
62cdf0e10cSrcweir         OSL_VERIFY( i_propertyValue >>= nVCLTime );
63cdf0e10cSrcweir         ::Time aVCLTime( nVCLTime );
64cdf0e10cSrcweir 
65cdf0e10cSrcweir         DateTime aDateTime; // default-inited to 0
66cdf0e10cSrcweir         aDateTime.Hours = aVCLTime.GetHour();
67cdf0e10cSrcweir         aDateTime.Minutes = aVCLTime.GetMin();
68cdf0e10cSrcweir         aDateTime.Seconds = aVCLTime.GetSec();
69cdf0e10cSrcweir         aDateTime.HundredthSeconds = aVCLTime.Get100Sec();
70cdf0e10cSrcweir 
71cdf0e10cSrcweir         ::rtl::OUStringBuffer aBuffer;
72cdf0e10cSrcweir         SvXMLUnitConverter::convertTime( aBuffer, aDateTime );
73cdf0e10cSrcweir         return aBuffer.makeStringAndClear();
74cdf0e10cSrcweir     }
75cdf0e10cSrcweir 
76cdf0e10cSrcweir 	//------------------------------------------------------------------------------------------------------------------
getPropertyValues(const::rtl::OUString i_attributeValue,PropertyValues & o_propertyValues) const77cdf0e10cSrcweir     bool VCLTimeHandler::getPropertyValues( const ::rtl::OUString i_attributeValue, PropertyValues& o_propertyValues ) const
78cdf0e10cSrcweir     {
79cdf0e10cSrcweir         sal_Int32 nVCLTime(0);
80cdf0e10cSrcweir 
81cdf0e10cSrcweir         DateTime aDateTime;
82cdf0e10cSrcweir         if ( SvXMLUnitConverter::convertTime( aDateTime, i_attributeValue ) )
83cdf0e10cSrcweir         {
84cdf0e10cSrcweir             ::Time aVCLTime( aDateTime.Hours, aDateTime.Minutes, aDateTime.Seconds, aDateTime.HundredthSeconds );
85cdf0e10cSrcweir             nVCLTime = aVCLTime.GetTime();
86cdf0e10cSrcweir         }
87cdf0e10cSrcweir         else
88cdf0e10cSrcweir         {
89cdf0e10cSrcweir             // compatibility format, before we wrote those values in XML-schema compatible form
90cdf0e10cSrcweir 			if ( !SvXMLUnitConverter::convertNumber( nVCLTime, i_attributeValue ) )
91cdf0e10cSrcweir             {
92cdf0e10cSrcweir                 OSL_ENSURE( false, "VCLTimeHandler::getPropertyValues: unknown time format (no XML-schema time, no legacy integer)!" );
93cdf0e10cSrcweir                 return false;
94cdf0e10cSrcweir             }
95cdf0e10cSrcweir         }
96cdf0e10cSrcweir 
97cdf0e10cSrcweir         const Any aPropertyValue( makeAny( nVCLTime ) );
98cdf0e10cSrcweir 
99cdf0e10cSrcweir         OSL_ENSURE( o_propertyValues.size() == 1, "VCLTimeHandler::getPropertyValues: time strings represent exactly one property - not more, not less!" );
100cdf0e10cSrcweir         for (   PropertyValues::iterator prop = o_propertyValues.begin();
101cdf0e10cSrcweir                 prop != o_propertyValues.end();
102cdf0e10cSrcweir                 ++prop
103cdf0e10cSrcweir             )
104cdf0e10cSrcweir         {
105cdf0e10cSrcweir             prop->second = aPropertyValue;
106cdf0e10cSrcweir         }
107cdf0e10cSrcweir         return true;
108cdf0e10cSrcweir     }
109cdf0e10cSrcweir 
110cdf0e10cSrcweir //......................................................................................................................
111cdf0e10cSrcweir } // namespace xmloff
112cdf0e10cSrcweir //......................................................................................................................
113