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 : #include <cppuhelper/supportsservice.hxx>
21 : #include <vcl/svapp.hxx>
22 :
23 : #include "miscuno.hxx"
24 :
25 : using namespace com::sun::star;
26 : using ::com::sun::star::uno::Reference;
27 : using ::com::sun::star::uno::Any;
28 :
29 0 : SC_SIMPLE_SERVICE_INFO( ScNameToIndexAccess, "ScNameToIndexAccess", "stardiv.unknown" )
30 :
31 0 : uno::Reference<uno::XInterface> ScUnoHelpFunctions::AnyToInterface( const uno::Any& rAny )
32 : {
33 0 : if ( rAny.getValueTypeClass() == uno::TypeClass_INTERFACE )
34 : {
35 0 : return uno::Reference<uno::XInterface>(rAny, uno::UNO_QUERY);
36 : }
37 0 : return uno::Reference<uno::XInterface>(); //! Exception?
38 : }
39 :
40 0 : bool ScUnoHelpFunctions::GetBoolProperty( const uno::Reference<beans::XPropertySet>& xProp,
41 : const OUString& rName, bool bDefault )
42 : {
43 0 : bool bRet = bDefault;
44 0 : if ( xProp.is() )
45 : {
46 : try
47 : {
48 0 : uno::Any aAny(xProp->getPropertyValue( rName ));
49 : //! type conversion???
50 : // operator >>= shouldn't be used for bool (?)
51 0 : if ( aAny.getValueTypeClass() == uno::TypeClass_BOOLEAN )
52 : {
53 : //! safe way to get bool value from any???
54 0 : bRet = *(sal_Bool*)aAny.getValue();
55 0 : }
56 : }
57 0 : catch(uno::Exception&)
58 : {
59 : // keep default
60 : }
61 : }
62 0 : return bRet;
63 : }
64 :
65 0 : sal_Int32 ScUnoHelpFunctions::GetLongProperty( const uno::Reference<beans::XPropertySet>& xProp,
66 : const OUString& rName, long nDefault )
67 : {
68 0 : sal_Int32 nRet = nDefault;
69 0 : if ( xProp.is() )
70 : {
71 : try
72 : {
73 : //! type conversion???
74 0 : xProp->getPropertyValue( rName ) >>= nRet;
75 : }
76 0 : catch(uno::Exception&)
77 : {
78 : // keep default
79 : }
80 : }
81 0 : return nRet;
82 : }
83 :
84 0 : sal_Int32 ScUnoHelpFunctions::GetEnumProperty( const uno::Reference<beans::XPropertySet>& xProp,
85 : const OUString& rName, long nDefault )
86 : {
87 0 : sal_Int32 nRet = nDefault;
88 0 : if ( xProp.is() )
89 : {
90 : try
91 : {
92 0 : uno::Any aAny(xProp->getPropertyValue( rName ));
93 :
94 0 : if ( aAny.getValueTypeClass() == uno::TypeClass_ENUM )
95 : {
96 : //! get enum value from any???
97 0 : nRet = *(sal_Int32*)aAny.getValue();
98 : }
99 : else
100 : {
101 : //! type conversion???
102 0 : aAny >>= nRet;
103 0 : }
104 : }
105 0 : catch(uno::Exception&)
106 : {
107 : // keep default
108 : }
109 : }
110 0 : return nRet;
111 : }
112 :
113 0 : OUString ScUnoHelpFunctions::GetStringProperty(
114 : const Reference<beans::XPropertySet>& xProp, const OUString& rName, const OUString& rDefault )
115 : {
116 0 : OUString aRet = rDefault;
117 0 : if (!xProp.is())
118 0 : return aRet;
119 :
120 : try
121 : {
122 0 : Any any = xProp->getPropertyValue(rName);
123 0 : any >>= aRet;
124 : }
125 0 : catch (const uno::Exception&)
126 : {
127 : }
128 :
129 0 : return aRet;
130 : }
131 :
132 0 : bool ScUnoHelpFunctions::GetBoolFromAny( const uno::Any& aAny )
133 : {
134 0 : if ( aAny.getValueTypeClass() == uno::TypeClass_BOOLEAN )
135 0 : return *(sal_Bool*)aAny.getValue();
136 0 : return false;
137 : }
138 :
139 0 : sal_Int16 ScUnoHelpFunctions::GetInt16FromAny( const uno::Any& aAny )
140 : {
141 0 : sal_Int16 nRet = 0;
142 0 : if ( aAny >>= nRet )
143 0 : return nRet;
144 0 : return 0;
145 : }
146 :
147 0 : sal_Int32 ScUnoHelpFunctions::GetInt32FromAny( const uno::Any& aAny )
148 : {
149 0 : sal_Int32 nRet = 0;
150 0 : if ( aAny >>= nRet )
151 0 : return nRet;
152 0 : return 0;
153 : }
154 :
155 0 : sal_Int32 ScUnoHelpFunctions::GetEnumFromAny( const uno::Any& aAny )
156 : {
157 0 : sal_Int32 nRet = 0;
158 0 : if ( aAny.getValueTypeClass() == uno::TypeClass_ENUM )
159 0 : nRet = *(sal_Int32*)aAny.getValue();
160 : else
161 0 : aAny >>= nRet;
162 0 : return nRet;
163 : }
164 :
165 0 : void ScUnoHelpFunctions::SetBoolInAny( uno::Any& rAny, bool bValue )
166 : {
167 0 : sal_Bool bTemp = bValue ? 1 : 0;
168 0 : rAny.setValue( &bTemp, getBooleanCppuType() );
169 0 : }
170 :
171 0 : void ScUnoHelpFunctions::SetOptionalPropertyValue(
172 : Reference<beans::XPropertySet>& rPropSet, const sal_Char* pPropName, const Any& rVal )
173 : {
174 : try
175 : {
176 0 : rPropSet->setPropertyValue(OUString::createFromAscii(pPropName), rVal);
177 : }
178 0 : catch (const beans::UnknownPropertyException&)
179 : {
180 : // ignored - not supported.
181 : }
182 0 : }
183 :
184 0 : ScIndexEnumeration::ScIndexEnumeration(const uno::Reference<container::XIndexAccess>& rInd,
185 : const OUString& rServiceName) :
186 : xIndex( rInd ),
187 : sServiceName(rServiceName),
188 0 : nPos( 0 )
189 : {
190 0 : }
191 :
192 0 : ScIndexEnumeration::~ScIndexEnumeration()
193 : {
194 0 : }
195 :
196 : // XEnumeration
197 :
198 0 : sal_Bool SAL_CALL ScIndexEnumeration::hasMoreElements() throw(uno::RuntimeException, std::exception)
199 : {
200 0 : SolarMutexGuard aGuard;
201 0 : return ( nPos < xIndex->getCount() );
202 : }
203 :
204 0 : uno::Any SAL_CALL ScIndexEnumeration::nextElement() throw(container::NoSuchElementException,
205 : lang::WrappedTargetException, uno::RuntimeException, std::exception)
206 : {
207 0 : SolarMutexGuard aGuard;
208 0 : uno::Any aReturn;
209 : try
210 : {
211 0 : aReturn = xIndex->getByIndex(nPos++);
212 : }
213 0 : catch (lang::IndexOutOfBoundsException&)
214 : {
215 0 : throw container::NoSuchElementException();
216 : }
217 0 : return aReturn;
218 : }
219 :
220 0 : OUString SAL_CALL ScIndexEnumeration::getImplementationName()
221 : throw(::com::sun::star::uno::RuntimeException, std::exception)
222 : {
223 0 : return OUString("ScIndexEnumeration");
224 : }
225 :
226 0 : sal_Bool SAL_CALL ScIndexEnumeration::supportsService( const OUString& ServiceName )
227 : throw(::com::sun::star::uno::RuntimeException, std::exception)
228 : {
229 0 : return cppu::supportsService(this, ServiceName);
230 : }
231 :
232 : ::com::sun::star::uno::Sequence< OUString >
233 0 : SAL_CALL ScIndexEnumeration::getSupportedServiceNames(void)
234 : throw(::com::sun::star::uno::RuntimeException, std::exception)
235 : {
236 0 : ::com::sun::star::uno::Sequence< OUString > aRet(1);
237 0 : OUString* pArray = aRet.getArray();
238 0 : pArray[0] = sServiceName;
239 0 : return aRet;
240 : }
241 :
242 :
243 :
244 0 : ScNameToIndexAccess::ScNameToIndexAccess( const com::sun::star::uno::Reference<
245 : com::sun::star::container::XNameAccess>& rNameObj ) :
246 0 : xNameAccess( rNameObj )
247 : {
248 : //! test for XIndexAccess interface at rNameObj, use that instead!
249 :
250 0 : if ( xNameAccess.is() )
251 0 : aNames = xNameAccess->getElementNames();
252 0 : }
253 :
254 0 : ScNameToIndexAccess::~ScNameToIndexAccess()
255 : {
256 0 : }
257 :
258 : // XIndexAccess
259 :
260 0 : sal_Int32 SAL_CALL ScNameToIndexAccess::getCount( ) throw(::com::sun::star::uno::RuntimeException, std::exception)
261 : {
262 0 : return aNames.getLength();
263 : }
264 :
265 0 : ::com::sun::star::uno::Any SAL_CALL ScNameToIndexAccess::getByIndex( sal_Int32 nIndex )
266 : throw(::com::sun::star::lang::IndexOutOfBoundsException,
267 : ::com::sun::star::lang::WrappedTargetException,
268 : ::com::sun::star::uno::RuntimeException, std::exception)
269 : {
270 0 : if ( xNameAccess.is() && nIndex >= 0 && nIndex < aNames.getLength() )
271 0 : return xNameAccess->getByName( aNames.getConstArray()[nIndex] );
272 :
273 0 : throw lang::IndexOutOfBoundsException();
274 : }
275 :
276 : // XElementAccess
277 :
278 0 : ::com::sun::star::uno::Type SAL_CALL ScNameToIndexAccess::getElementType( )
279 : throw(::com::sun::star::uno::RuntimeException, std::exception)
280 : {
281 0 : if ( xNameAccess.is() )
282 0 : return xNameAccess->getElementType();
283 : else
284 0 : return uno::Type();
285 : }
286 :
287 0 : sal_Bool SAL_CALL ScNameToIndexAccess::hasElements( ) throw(::com::sun::star::uno::RuntimeException, std::exception)
288 : {
289 0 : return getCount() > 0;
290 : }
291 :
292 :
293 :
294 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|