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 0 : uno::Reference< uno::XInterface > SvUnoAttributeContainer_CreateInstance()
36 : {
37 0 : return *(new SvUnoAttributeContainer);
38 : }
39 :
40 0 : SvUnoAttributeContainer::SvUnoAttributeContainer( SvXMLAttrContainerData* pContainer)
41 0 : : mpContainer( pContainer )
42 : {
43 0 : if( mpContainer == NULL )
44 0 : mpContainer = new SvXMLAttrContainerData;
45 0 : }
46 :
47 0 : SvUnoAttributeContainer::~SvUnoAttributeContainer()
48 : {
49 0 : delete mpContainer;
50 0 : }
51 :
52 : // container::XElementAccess
53 0 : uno::Type SAL_CALL SvUnoAttributeContainer::getElementType(void)
54 : throw( uno::RuntimeException, std::exception )
55 : {
56 0 : return ::getCppuType((const xml::AttributeData*)0);
57 : }
58 :
59 0 : sal_Bool SAL_CALL SvUnoAttributeContainer::hasElements(void)
60 : throw( uno::RuntimeException, std::exception )
61 : {
62 0 : return mpContainer->GetAttrCount() != 0;
63 : }
64 :
65 0 : sal_uInt16 SvUnoAttributeContainer::getIndexByName(const OUString& aName ) const
66 : {
67 0 : const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
68 :
69 0 : sal_Int32 nPos = aName.indexOf( ':' );
70 0 : if( nPos == -1L )
71 : {
72 0 : for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
73 : {
74 0 : if( mpContainer->GetAttrLName(nAttr) == aName &&
75 0 : mpContainer->GetAttrPrefix(nAttr).isEmpty() )
76 0 : return nAttr;
77 : }
78 : }
79 : else
80 : {
81 0 : const OUString aPrefix( aName.copy( 0L, nPos ) );
82 0 : const OUString aLName( aName.copy( nPos+1L ) );
83 :
84 0 : for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
85 : {
86 0 : if( mpContainer->GetAttrLName(nAttr) == aLName &&
87 0 : mpContainer->GetAttrPrefix(nAttr) == aPrefix )
88 0 : return nAttr;
89 0 : }
90 : }
91 :
92 0 : return USHRT_MAX;
93 : }
94 :
95 : namespace
96 : {
97 : class theSvUnoAttributeContainerUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theSvUnoAttributeContainerUnoTunnelId> {};
98 : }
99 :
100 0 : const ::com::sun::star::uno::Sequence< sal_Int8 > & SvUnoAttributeContainer::getUnoTunnelId() throw()
101 : {
102 0 : return theSvUnoAttributeContainerUnoTunnelId::get().getSeq();
103 : }
104 :
105 0 : 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 0 : if( rId.getLength() == 16 && 0 == memcmp( getUnoTunnelId().getConstArray(),
108 0 : rId.getConstArray(), 16 ) )
109 : {
110 0 : return sal::static_int_cast<sal_Int64>(reinterpret_cast<sal_uIntPtr>(this));
111 : }
112 0 : return 0;
113 : }
114 :
115 : // container::XNameAccess
116 0 : uno::Any SAL_CALL SvUnoAttributeContainer::getByName(const OUString& aName)
117 : throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
118 : {
119 0 : sal_uInt16 nAttr = getIndexByName(aName );
120 :
121 0 : if( nAttr == USHRT_MAX )
122 0 : throw container::NoSuchElementException();
123 :
124 0 : xml::AttributeData aData;
125 0 : aData.Namespace = mpContainer->GetAttrNamespace(nAttr);
126 0 : aData.Type = "CDATA";
127 0 : aData.Value = mpContainer->GetAttrValue(nAttr);
128 :
129 0 : uno::Any aAny;
130 0 : aAny <<= aData;
131 0 : return aAny;
132 : }
133 :
134 0 : uno::Sequence< OUString > SAL_CALL SvUnoAttributeContainer::getElementNames(void) throw( uno::RuntimeException, std::exception )
135 : {
136 0 : const sal_uInt16 nAttrCount = mpContainer->GetAttrCount();
137 :
138 0 : uno::Sequence< OUString > aElementNames( (sal_Int32)nAttrCount );
139 0 : OUString *pNames = aElementNames.getArray();
140 :
141 0 : for( sal_uInt16 nAttr = 0; nAttr < nAttrCount; nAttr++ )
142 : {
143 0 : OUStringBuffer sBuffer( mpContainer->GetAttrPrefix(nAttr) );
144 0 : if( !sBuffer.isEmpty() )
145 0 : sBuffer.append( ':' );
146 0 : sBuffer.append( mpContainer->GetAttrLName(nAttr) );
147 0 : *pNames++ = sBuffer.makeStringAndClear();
148 0 : }
149 :
150 0 : return aElementNames;
151 : }
152 :
153 0 : sal_Bool SAL_CALL SvUnoAttributeContainer::hasByName(const OUString& aName) throw( uno::RuntimeException, std::exception )
154 : {
155 0 : 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() == ::getCppuType((const xml::AttributeData*)0) )
163 : {
164 0 : sal_uInt16 nAttr = getIndexByName(aName );
165 0 : if( nAttr == USHRT_MAX )
166 0 : throw container::NoSuchElementException();
167 :
168 0 : xml::AttributeData* pData = (xml::AttributeData*)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 0 : 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 0 : if( !aElement.hasValue() || aElement.getValueType() != ::getCppuType((const xml::AttributeData*)0) )
205 0 : throw lang::IllegalArgumentException();
206 :
207 0 : sal_uInt16 nAttr = getIndexByName(aName );
208 0 : if( nAttr != USHRT_MAX )
209 0 : throw container::ElementExistException();
210 :
211 0 : xml::AttributeData* pData = (xml::AttributeData*)aElement.getValue();
212 :
213 0 : sal_Int32 nPos = aName.indexOf( ':' );
214 0 : if( nPos != -1L )
215 : {
216 0 : const OUString aPrefix( aName.copy( 0L, nPos ));
217 0 : const OUString aLName( aName.copy( nPos+1L ));
218 :
219 0 : if( pData->Namespace.isEmpty() )
220 : {
221 0 : if( mpContainer->AddAttr( aPrefix, aLName, pData->Value ) )
222 0 : return;
223 : }
224 : else
225 : {
226 0 : if( mpContainer->AddAttr( aPrefix, pData->Namespace, aLName, pData->Value ) )
227 0 : return;
228 0 : }
229 : }
230 : else
231 : {
232 0 : if( pData->Namespace.isEmpty() )
233 : {
234 0 : if( mpContainer->AddAttr( aName, pData->Value ) )
235 0 : return;
236 : }
237 : }
238 : }
239 :
240 0 : void SAL_CALL SvUnoAttributeContainer::removeByName(const OUString& Name)
241 : throw( container::NoSuchElementException, lang::WrappedTargetException, uno::RuntimeException, std::exception )
242 : {
243 0 : sal_uInt16 nAttr = getIndexByName(Name);
244 0 : if( nAttr == USHRT_MAX )
245 0 : throw container::NoSuchElementException();
246 :
247 0 : mpContainer->Remove( nAttr );
248 0 : }
249 :
250 : //XServiceInfo
251 0 : OUString SAL_CALL SvUnoAttributeContainer::getImplementationName(void) throw( uno::RuntimeException, std::exception )
252 : {
253 0 : return OUString( "SvUnoAttributeContainer" );
254 : }
255 :
256 0 : uno::Sequence< OUString > SvUnoAttributeContainer::getSupportedServiceNames(void)
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: */
|