Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / xmlsecurity / source / xmlsec / xmlelementwrapper_xmlsecimpl.cxx
blob57c90a6213acc6c8863e4ed6298a2d6aac335769
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 <string.h>
22 #include "xmlelementwrapper_xmlsecimpl.hxx"
23 #include <cppuhelper/typeprovider.hxx>
25 namespace cssu = com::sun::star::uno;
26 namespace cssl = com::sun::star::lang;
28 #define SERVICE_NAME "com.sun.star.xml.wrapper.XMLElementWrapper"
29 #define IMPLEMENTATION_NAME "com.sun.star.xml.security.bridge.xmlsec.XMLElementWrapper_XmlSecImpl"
31 XMLElementWrapper_XmlSecImpl::XMLElementWrapper_XmlSecImpl(const xmlNodePtr pNode)
32 : m_pElement( pNode )
36 /* XXMLElementWrapper */
39 /* XUnoTunnel */
40 cssu::Sequence< sal_Int8 > XMLElementWrapper_XmlSecImpl::getUnoTunnelImplementationId( void )
41 throw (cssu::RuntimeException)
43 static ::cppu::OImplementationId* pId = 0;
44 if (! pId)
46 ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
47 if (! pId)
49 static ::cppu::OImplementationId aId;
50 pId = &aId;
53 return pId->getImplementationId();
56 sal_Int64 SAL_CALL XMLElementWrapper_XmlSecImpl::getSomething( const cssu::Sequence< sal_Int8 >& aIdentifier )
57 throw (cssu::RuntimeException)
59 if (aIdentifier.getLength() == 16 &&
60 0 == memcmp(
61 getUnoTunnelImplementationId().getConstArray(),
62 aIdentifier.getConstArray(),
63 16 ))
65 return reinterpret_cast < sal_Int64 > ( this );
67 else
69 return 0;
74 rtl::OUString XMLElementWrapper_XmlSecImpl_getImplementationName ()
75 throw (cssu::RuntimeException)
77 return rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM ( IMPLEMENTATION_NAME ) );
80 sal_Bool SAL_CALL XMLElementWrapper_XmlSecImpl_supportsService( const rtl::OUString& ServiceName )
81 throw (cssu::RuntimeException)
83 return ServiceName == SERVICE_NAME;
86 cssu::Sequence< rtl::OUString > SAL_CALL XMLElementWrapper_XmlSecImpl_getSupportedServiceNames( )
87 throw (cssu::RuntimeException)
89 cssu::Sequence < rtl::OUString > aRet(1);
90 rtl::OUString* pArray = aRet.getArray();
91 pArray[0] = rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM ( SERVICE_NAME ) );
92 return aRet;
94 #undef SERVICE_NAME
96 cssu::Reference< cssu::XInterface > SAL_CALL
97 XMLElementWrapper_XmlSecImpl_createInstance(
98 const cssu::Reference< cssl::XMultiServiceFactory > &)
99 throw( cssu::Exception )
101 return (cppu::OWeakObject*) new XMLElementWrapper_XmlSecImpl(NULL);
104 /* XServiceInfo */
105 rtl::OUString SAL_CALL XMLElementWrapper_XmlSecImpl::getImplementationName( )
106 throw (cssu::RuntimeException)
108 return XMLElementWrapper_XmlSecImpl_getImplementationName();
110 sal_Bool SAL_CALL XMLElementWrapper_XmlSecImpl::supportsService( const rtl::OUString& rServiceName )
111 throw (cssu::RuntimeException)
113 return XMLElementWrapper_XmlSecImpl_supportsService( rServiceName );
115 cssu::Sequence< rtl::OUString > SAL_CALL XMLElementWrapper_XmlSecImpl::getSupportedServiceNames( )
116 throw (cssu::RuntimeException)
118 return XMLElementWrapper_XmlSecImpl_getSupportedServiceNames();
121 xmlNodePtr XMLElementWrapper_XmlSecImpl::getNativeElement( ) const
122 /****** XMLElementWrapper_XmlSecImpl/getNativeElement *************************
124 * NAME
125 * getNativeElement -- Retrieves the libxml2 node wrapped by this object
127 * SYNOPSIS
128 * pNode = getNativeElement();
130 * FUNCTION
131 * see NAME
133 * INPUTS
134 * empty
136 * RESULT
137 * pNode - the libxml2 node wrapped by this object
139 * AUTHOR
140 * Michael Mi
141 * Email: michael.mi@sun.com
142 ******************************************************************************/
144 return m_pElement;
147 void XMLElementWrapper_XmlSecImpl::setNativeElement(const xmlNodePtr pNode)
148 /****** XMLElementWrapper_XmlSecImpl/setNativeElement *************************
150 * NAME
151 * setNativeElement -- Configures the libxml2 node wrapped by this object
153 * SYNOPSIS
154 * setNativeElement( pNode );
156 * FUNCTION
157 * see NAME
159 * INPUTS
160 * pNode - the new libxml2 node to be wrapped by this object
162 * RESULT
163 * empty
165 * AUTHOR
166 * Michael Mi
167 * Email: michael.mi@sun.com
168 ******************************************************************************/
170 m_pElement = pNode;
173 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */