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 <string.h>
21 : #include <com/sun/star/xml/AttributeData.hpp>
22 : #include <rtl/ustrbuf.hxx>
23 : #include <comphelper/servicehelper.hxx>
24 : #include <cppuhelper/supportsservice.hxx>
25 : #include <limits.h>
26 :
27 : #include <xmloff/xmlcnimp.hxx>
28 :
29 : #include <xmloff/unoatrcn.hxx>
30 :
31 : using namespace ::com::sun::star;
32 :
33 : // Interface implementation
34 :
35 4 : uno::Reference< uno::XInterface > SvUnoAttributeContainer_CreateInstance()
36 : {
37 4 : return *(new SvUnoAttributeContainer);
38 : }
39 :
40 323 : SvUnoAttributeContainer::SvUnoAttributeContainer( SvXMLAttrContainerData* pContainer)
41 323 : : mpContainer( pContainer )
42 : {
43 323 : if( mpContainer == NULL )
44 4 : mpContainer = new SvXMLAttrContainerData;
45 323 : }
46 :
47 969 : SvUnoAttributeContainer::~SvUnoAttributeContainer()
48 : {
49 323 : delete mpContainer;
50 646 : }
51 :
52 : // container::XElementAccess
53 0 : uno::Type SAL_CALL SvUnoAttributeContainer::getElementType()
54 : throw( uno::RuntimeException, std::exception )
55 : {
56 0 : return cppu::UnoType<xml::AttributeData>::get();
57 : }
58 :
59 0 : sal_Bool SAL_CALL SvUnoAttributeContainer::hasElements()
60 : throw( uno::RuntimeException, std::exception )
61 : {
62 0 : return mpContainer->GetAttrCount() != 0;
63 : }
64 :
65 73 : sal_uInt16 SvUnoAttributeContainer::getIndexByName(const OUString& aName ) const
66 : {
67 73 : const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
68 :
69 73 : sal_Int32 nPos = aName.indexOf( ':' );
70 73 : if( nPos == -1L )
71 : {
72 71 : for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
73 : {
74 180 : if( mpContainer->GetAttrLName(nAttr) == aName &&
75 156 : mpContainer->GetAttrPrefix(nAttr).isEmpty() )
76 36 : return nAttr;
77 : }
78 : }
79 : else
80 : {
81 14 : const OUString aPrefix( aName.copy( 0L, nPos ) );
82 21 : const OUString aLName( aName.copy( nPos+1L ) );
83 :
84 14 : for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
85 : {
86 28 : if( mpContainer->GetAttrLName(nAttr) == aLName &&
87 28 : mpContainer->GetAttrPrefix(nAttr) == aPrefix )
88 7 : return nAttr;
89 7 : }
90 : }
91 :
92 30 : return USHRT_MAX;
93 : }
94 :
95 : namespace
96 : {
97 : class theSvUnoAttributeContainerUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSvUnoAttributeContainerUnoTunnelId> {};
98 : }
99 :
100 60 : const ::com::sun::star::uno::Sequence< sal_Int8 > & SvUnoAttributeContainer::getUnoTunnelId() throw()
101 : {
102 60 : return theSvUnoAttributeContainerUnoTunnelId::get().getSeq();
103 : }
104 :
105 31 : sal_Int64 SAL_CALL SvUnoAttributeContainer::getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw(::com::sun::star::uno::RuntimeException, std::exception)
106 : {
107 93 : if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(),
108 62 : rId.getConstArray(), 16 ) )
109 : {
110 29 : return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_uIntPtr>(this));
111 : }
112 2 : return 0;
113 : }
114 :
115 : // container::XNameAccess
116 21 : uno::Any SAL_CALL SvUnoAttributeContainer::getByName(const OUString& aName)
117 : throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
118 : {
119 21 : sal_uInt16 nAttr = getIndexByName(aName );
120 :
121 21 : if( nAttr == USHRT_MAX )
122 0 : throw container::NoSuchElementException();
123 :
124 21 : xml::AttributeData aData;
125 21 : aData.Namespace = mpContainer->GetAttrNamespace(nAttr);
126 21 : aData.Type = "CDATA";
127 21 : aData.Value = mpContainer->GetAttrValue(nAttr);
128 :
129 21 : uno::Any aAny;
130 21 : aAny <<= aData;
131 21 : return aAny;
132 : }
133 :
134 69 : uno::Sequence< OUString > SAL_CALL SvUnoAttributeContainer::getElementNames() throw( uno::RuntimeException, std::exception )
135 : {
136 69 : const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
137 :
138 69 : uno::Sequence< OUString > aElementNames( (sal_Int32)nAttrCount );
139 69 : OUString *pNames = aElementNames.getArray();
140 :
141 83 : for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
142 : {
143 14 : OUStringBuffer sBuffer( mpContainer->GetAttrPrefix(nAttr) );
144 14 : if( !sBuffer.isEmpty() )
145 14 : sBuffer.append( ':' );
146 14 : sBuffer.append( mpContainer->GetAttrLName(nAttr) );
147 14 : *pNames++ = sBuffer.makeStringAndClear();
148 14 : }
149 :
150 69 : return aElementNames;
151 : }
152 :
153 28 : sal_Bool SAL_CALL SvUnoAttributeContainer::hasByName(const OUString& aName) throw( uno::RuntimeException, std::exception )
154 : {
155 28 : return getIndexByName(aName ) != USHRT_MAX;
156 : }
157 :
158 : // container::XNameReplace
159 0 : void SAL_CALL SvUnoAttributeContainer::replaceByName(const OUString& aName, const uno::Any& aElement)
160 : throw( lang::IllegalArgumentException, container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
161 : {
162 0 : if( aElement.hasValue() && aElement.getValueType() == cppu::UnoType<xml::AttributeData>::get())
163 : {
164 0 : sal_uInt16 nAttr = getIndexByName(aName );
165 0 : if( nAttr == USHRT_MAX )
166 0 : throw container::NoSuchElementException();
167 :
168 0 : xml::AttributeData const * pData = static_cast<xml::AttributeData const *>(aElement.getValue());
169 :
170 0 : sal_Int32 nPos = aName.indexOf( ':' );
171 0 : if( nPos != -1L )
172 : {
173 0 : const OUString aPrefix( aName.copy( 0L, nPos ));
174 0 : const OUString aLName( aName.copy( nPos+1L ));
175 :
176 0 : if( pData->Namespace.isEmpty() )
177 : {
178 0 : if( mpContainer->SetAt( nAttr, aPrefix, aLName, pData->Value ) )
179 0 : return;
180 : }
181 : else
182 : {
183 0 : if( mpContainer->SetAt( nAttr, aPrefix, pData->Namespace, aLName, pData->Value ) )
184 0 : return;
185 0 : }
186 : }
187 : else
188 : {
189 0 : if( pData->Namespace.isEmpty() )
190 : {
191 0 : if( mpContainer->SetAt( nAttr, aName, pData->Value ) )
192 0 : return;
193 : }
194 : }
195 : }
196 :
197 0 : throw lang::IllegalArgumentException();
198 : }
199 :
200 : // container::XNameContainer
201 20 : void SAL_CALL SvUnoAttributeContainer::insertByName(const OUString& aName, const uno::Any& aElement)
202 : throw( lang::IllegalArgumentException, container::ElementExistException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
203 : {
204 20 : if( !aElement.hasValue() || aElement.getValueType() != cppu::UnoType<xml::AttributeData>::get())
205 0 : throw lang::IllegalArgumentException();
206 :
207 20 : sal_uInt16 nAttr = getIndexByName(aName );
208 20 : if( nAttr != USHRT_MAX )
209 0 : throw container::ElementExistException();
210 :
211 20 : xml::AttributeData const * pData = static_cast<xml::AttributeData const *>(aElement.getValue());
212 :
213 20 : sal_Int32 nPos = aName.indexOf( ':' );
214 20 : if( nPos != -1L )
215 : {
216 7 : const OUString aPrefix( aName.copy( 0L, nPos ));
217 7 : const OUString aLName( aName.copy( nPos+1L ));
218 :
219 7 : if( pData->Namespace.isEmpty() )
220 : {
221 0 : if( mpContainer->AddAttr( aPrefix, aLName, pData->Value ) )
222 0 : return;
223 : }
224 : else
225 : {
226 7 : if( mpContainer->AddAttr( aPrefix, pData->Namespace, aLName, pData->Value ) )
227 7 : return;
228 0 : }
229 : }
230 : else
231 : {
232 13 : if( pData->Namespace.isEmpty() )
233 : {
234 13 : if( mpContainer->AddAttr( aName, pData->Value ) )
235 13 : return;
236 : }
237 : }
238 : }
239 :
240 4 : void SAL_CALL SvUnoAttributeContainer::removeByName(const OUString& Name)
241 : throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
242 : {
243 4 : sal_uInt16 nAttr = getIndexByName(Name);
244 4 : if( nAttr == USHRT_MAX )
245 0 : throw container::NoSuchElementException();
246 :
247 4 : mpContainer->Remove( nAttr );
248 4 : }
249 :
250 : //XServiceInfo
251 0 : OUString SAL_CALL SvUnoAttributeContainer::getImplementationName() throw( uno::RuntimeException, std::exception )
252 : {
253 0 : return OUString( "SvUnoAttributeContainer" );
254 : }
255 :
256 0 : uno::Sequence< OUString > SvUnoAttributeContainer::getSupportedServiceNames()
257 : throw( uno::RuntimeException, std::exception )
258 : {
259 0 : OUString aSN( "com.sun.star.xml.AttributeContainer" );
260 0 : uno::Sequence< OUString > aNS( &aSN, 1L );
261 0 : return aNS;
262 : }
263 :
264 0 : sal_Bool SvUnoAttributeContainer::supportsService(const OUString& ServiceName)
265 : throw( uno::RuntimeException, std::exception )
266 : {
267 0 : return cppu::supportsService(this, ServiceName);
268 : }
269 :
270 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|