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 .
20 #include <sal/config.h>
24 #include <com/sun/star/uno/Any.hxx>
25 #include <com/sun/star/uno/Reference.hxx>
26 #include <com/sun/star/uno/RuntimeException.hpp>
27 #include <com/sun/star/uno/Sequence.hxx>
28 #include <com/sun/star/uno/Type.hxx>
29 #include <com/sun/star/uno/TypeClass.hpp>
30 #include <com/sun/star/uno/XInterface.hpp>
31 #include <cppu/unotype.hxx>
32 #include <rtl/string.h>
33 #include <rtl/ustring.h>
34 #include <rtl/ustring.hxx>
35 #include <sal/types.h>
41 bool isListType(Type type
) {
42 return type
>= TYPE_BOOLEAN_LIST
;
45 Type
elementType(Type type
) {
47 case TYPE_BOOLEAN_LIST
:
55 case TYPE_DOUBLE_LIST
:
57 case TYPE_STRING_LIST
:
59 case TYPE_HEXBINARY_LIST
:
60 return TYPE_HEXBINARY
;
63 throw css::uno::RuntimeException("this cannot happen");
67 css::uno::Type
mapType(Type type
) {
70 return cppu::UnoType
< css::uno::Any
>::get();
72 return cppu::UnoType
< sal_Bool
>::get();
74 return cppu::UnoType
< sal_Int16
>::get();
76 return cppu::UnoType
< sal_Int32
>::get();
78 return cppu::UnoType
< sal_Int64
>::get();
80 return cppu::UnoType
< double >::get();
82 return cppu::UnoType
< OUString
>::get();
84 return cppu::UnoType
< css::uno::Sequence
< sal_Int8
> >::get();
85 case TYPE_BOOLEAN_LIST
:
86 return cppu::UnoType
< css::uno::Sequence
< sal_Bool
> >::get();
88 return cppu::UnoType
< css::uno::Sequence
< sal_Int16
> >::get();
90 return cppu::UnoType
< css::uno::Sequence
< sal_Int32
> >::get();
92 return cppu::UnoType
< css::uno::Sequence
< sal_Int64
> >::get();
93 case TYPE_DOUBLE_LIST
:
94 return cppu::UnoType
< css::uno::Sequence
< double > >::get();
95 case TYPE_STRING_LIST
:
96 return cppu::UnoType
< css::uno::Sequence
< OUString
> >::get();
97 case TYPE_HEXBINARY_LIST
:
99 css::uno::Sequence
< css::uno::Sequence
< sal_Int8
> > >::get();
102 throw css::uno::RuntimeException("this cannot happen");
106 Type
getDynamicType(css::uno::Any
const & value
) {
107 switch (value
.getValueType().getTypeClass()) {
108 case css::uno::TypeClass_VOID
:
110 case css::uno::TypeClass_BOOLEAN
:
112 case css::uno::TypeClass_BYTE
:
114 case css::uno::TypeClass_SHORT
:
116 case css::uno::TypeClass_UNSIGNED_SHORT
:
117 return value
.has
< sal_Int16
>() ? TYPE_SHORT
: TYPE_INT
;
118 case css::uno::TypeClass_LONG
:
120 case css::uno::TypeClass_UNSIGNED_LONG
:
121 return value
.has
< sal_Int32
>() ? TYPE_INT
: TYPE_LONG
;
122 case css::uno::TypeClass_HYPER
:
124 case css::uno::TypeClass_UNSIGNED_HYPER
:
125 return value
.has
< sal_Int64
>() ? TYPE_LONG
: TYPE_ERROR
;
126 case css::uno::TypeClass_FLOAT
:
127 case css::uno::TypeClass_DOUBLE
:
129 case css::uno::TypeClass_STRING
:
131 case css::uno::TypeClass_SEQUENCE
: //TODO
133 OUString
name(value
.getValueType().getTypeName());
134 if ( name
== "[]byte" ) {
135 return TYPE_HEXBINARY
;
136 } else if (name
== "[]boolean")
138 return TYPE_BOOLEAN_LIST
;
139 } else if ( name
== "[]short" )
141 return TYPE_SHORT_LIST
;
142 } else if ( name
== "[]long" )
144 return TYPE_INT_LIST
;
145 } else if ( name
== "[]hyper" )
147 return TYPE_LONG_LIST
;
148 } else if (name
== "[]double")
150 return TYPE_DOUBLE_LIST
;
151 } else if (name
== "[]string")
153 return TYPE_STRING_LIST
;
154 } else if (name
== "[][]byte")
156 return TYPE_HEXBINARY_LIST
;
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */