1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef _COMPHELPER_EXTRACT_HXX_
20 #define _COMPHELPER_EXTRACT_HXX_
22 #include <com/sun/star/lang/IllegalArgumentException.hpp>
23 #include <com/sun/star/uno/XInterface.hpp>
24 #include <com/sun/star/uno/TypeClass.hpp>
25 #include <com/sun/star/uno/Type.hxx>
26 #include <com/sun/star/uno/Any.hxx>
27 #include "cppu/unotype.hxx"
33 * Sets enum from int32 value. This function does NOT check for valid enum values!
35 * @param nEnum int32 enum value
36 * @param rType enum type
37 * @return enum or emoty any.
39 inline ::com::sun::star::uno::Any SAL_CALL
int2enum(
40 sal_Int32 nEnum
, const ::com::sun::star::uno::Type
& rType
)
42 if (rType
.getTypeClass() == ::com::sun::star::uno::TypeClass_ENUM
)
45 return ::com::sun::star::uno::Any( &nVal
, rType
);
47 return ::com::sun::star::uno::Any();
51 * Sets int32 from enum or int in any.
53 * @param rnEnum [out] int32 enum value
54 * @param rAny enum or int
55 * @param sal_True if enum or int value was set else sal_False.
57 inline sal_Bool SAL_CALL
enum2int( sal_Int32
& rnEnum
, const ::com::sun::star::uno::Any
& rAny
)
59 if (rAny
.getValueTypeClass() == ::com::sun::star::uno::TypeClass_ENUM
)
61 rnEnum
= * reinterpret_cast< const int * >( rAny
.getValue() );
65 return rAny
>>= rnEnum
;
69 * Sets int32 from enum or int in any with additional typecheck
71 * @param rAny enum or int
72 * @param eRet the enum value as int. If there is not enum of the given type or
73 * a ::com::sun::star::lang::IllegalArgumentException is thrown
75 template< typename E
>
76 inline void SAL_CALL
any2enum( E
& eRet
, const ::com::sun::star::uno::Any
& rAny
)
77 throw( ::com::sun::star::lang::IllegalArgumentException
)
79 // check for type save enum
80 if (! (rAny
>>= eRet
))
82 // if not enum, maybe integer?
84 if (! (rAny
>>= nValue
))
85 throw ::com::sun::star::lang::IllegalArgumentException();
92 * Template function to create an uno::Any from an enum
94 * @DEPRECATED : use makeAny< E >()
97 template< typename E
>
98 inline ::com::sun::star::uno::Any SAL_CALL
enum2any( E eEnum
)
100 return ::com::sun::star::uno::Any( &eEnum
, ::cppu::UnoType
< E
>::get() );
104 * Extracts interface from an any. If given any does not hold the demanded interface,
105 * it will be queried for it.
106 * If no interface is available, the out ref will be cleared.
108 * @param rxOut [out] demanded interface
109 * @param rAny interface
110 * @return sal_True if any reference (including the null ref) was retrieved from any else sal_False.
113 inline sal_Bool SAL_CALL
extractInterface(
114 ::com::sun::star::uno::Reference
< T
> & rxOut
,
115 const ::com::sun::star::uno::Any
& rAny
)
118 return (rAny
>>= rxOut
);
122 * extracts a boolean either as a sal_Bool or an integer from
123 * an any. If there is no sal_Bool or integer inside the any
124 * a ::com::sun::star::lang::IllegalArgumentException is thrown
127 inline sal_Bool SAL_CALL
any2bool( const ::com::sun::star::uno::Any
& rAny
)
128 throw( ::com::sun::star::lang::IllegalArgumentException
)
130 if (rAny
.getValueTypeClass() == ::com::sun::star::uno::TypeClass_BOOLEAN
)
132 return *(sal_Bool
*)rAny
.getValue();
136 sal_Int32 nValue
= 0;
137 if (! (rAny
>>= nValue
))
138 throw ::com::sun::star::lang::IllegalArgumentException();
144 * Puts a boolean in an any.
146 * @DEPRECATED : use makeAny< sal_Bool >()
149 inline ::com::sun::star::uno::Any SAL_CALL
bool2any( sal_Bool bBool
)
151 return ::com::sun::star::uno::Any( &bBool
, ::getCppuBooleanType() );
158 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */