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 :
22 : #include "xmlelementwrapper_xmlsecimpl.hxx"
23 : #include <com/sun/star/uno/XComponentContext.hpp>
24 : #include <cppuhelper/supportsservice.hxx>
25 : #include <cppuhelper/typeprovider.hxx>
26 :
27 : namespace cssu = com::sun::star::uno;
28 :
29 : #define IMPLEMENTATION_NAME "com.sun.star.xml.security.bridge.xmlsec.XMLElementWrapper_XmlSecImpl"
30 :
31 1 : XMLElementWrapper_XmlSecImpl::XMLElementWrapper_XmlSecImpl(const xmlNodePtr pNode)
32 1 : : m_pElement( pNode )
33 : {
34 1 : }
35 :
36 : /* XXMLElementWrapper */
37 :
38 :
39 : /* XUnoTunnel */
40 0 : cssu::Sequence< sal_Int8 > XMLElementWrapper_XmlSecImpl::getUnoTunnelImplementationId()
41 : throw (cssu::RuntimeException)
42 : {
43 : static ::cppu::OImplementationId* pId = 0;
44 0 : if (! pId)
45 : {
46 0 : ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
47 0 : if (! pId)
48 : {
49 0 : static ::cppu::OImplementationId aId;
50 0 : pId = &aId;
51 0 : }
52 : }
53 0 : return pId->getImplementationId();
54 : }
55 :
56 0 : sal_Int64 SAL_CALL XMLElementWrapper_XmlSecImpl::getSomething( const cssu::Sequence< sal_Int8 >& aIdentifier )
57 : throw (cssu::RuntimeException, std::exception)
58 : {
59 0 : if (aIdentifier.getLength() == 16 &&
60 : 0 == memcmp(
61 0 : getUnoTunnelImplementationId().getConstArray(),
62 0 : aIdentifier.getConstArray(),
63 0 : 16 ))
64 : {
65 0 : return reinterpret_cast < sal_Int64 > ( this );
66 : }
67 : else
68 : {
69 0 : return 0;
70 : }
71 : }
72 :
73 :
74 12 : OUString XMLElementWrapper_XmlSecImpl_getImplementationName ()
75 : throw (cssu::RuntimeException)
76 : {
77 12 : return OUString ( IMPLEMENTATION_NAME );
78 : }
79 :
80 2 : cssu::Sequence< OUString > SAL_CALL XMLElementWrapper_XmlSecImpl_getSupportedServiceNames( )
81 : throw (cssu::RuntimeException)
82 : {
83 2 : cssu::Sequence < OUString > aRet(1);
84 2 : OUString* pArray = aRet.getArray();
85 2 : pArray[0] = "com.sun.star.xml.wrapper.XMLElementWrapper";
86 2 : return aRet;
87 : }
88 :
89 : cssu::Reference< cssu::XInterface > SAL_CALL
90 1 : XMLElementWrapper_XmlSecImpl_createInstance(
91 : const cssu::Reference< cssu::XComponentContext > &)
92 : throw( cssu::Exception )
93 : {
94 1 : return static_cast<cppu::OWeakObject*>(new XMLElementWrapper_XmlSecImpl(NULL));
95 : }
96 :
97 : /* XServiceInfo */
98 1 : OUString SAL_CALL XMLElementWrapper_XmlSecImpl::getImplementationName( )
99 : throw (cssu::RuntimeException, std::exception)
100 : {
101 1 : return XMLElementWrapper_XmlSecImpl_getImplementationName();
102 : }
103 0 : sal_Bool SAL_CALL XMLElementWrapper_XmlSecImpl::supportsService( const OUString& rServiceName )
104 : throw (cssu::RuntimeException, std::exception)
105 : {
106 0 : return cppu::supportsService( this, rServiceName );
107 : }
108 1 : cssu::Sequence< OUString > SAL_CALL XMLElementWrapper_XmlSecImpl::getSupportedServiceNames( )
109 : throw (cssu::RuntimeException, std::exception)
110 : {
111 1 : return XMLElementWrapper_XmlSecImpl_getSupportedServiceNames();
112 : }
113 :
114 :
115 0 : void XMLElementWrapper_XmlSecImpl::setNativeElement(const xmlNodePtr pNode)
116 : /****** XMLElementWrapper_XmlSecImpl/setNativeElement *************************
117 : *
118 : * NAME
119 : * setNativeElement -- Configures the libxml2 node wrapped by this object
120 : *
121 : * SYNOPSIS
122 : * setNativeElement( pNode );
123 : *
124 : * FUNCTION
125 : * see NAME
126 : *
127 : * INPUTS
128 : * pNode - the new libxml2 node to be wrapped by this object
129 : *
130 : * RESULT
131 : * empty
132 : *
133 : * AUTHOR
134 : * Michael Mi
135 : * Email: michael.mi@sun.com
136 : ******************************************************************************/
137 : {
138 0 : m_pElement = pNode;
139 0 : }
140 :
141 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|