forked from amazingfate/loongoffice
The only effect SAL_CALL effectively has on LO-internal code is to change non- static member functions from __thiscall to __cdecl in MSVC (where all other functions are __cdecl by default, anyway). (For 3rd-party code, it could be argued that SAL_CALL is useful on function declarations in the URE stable interface other than non-static member functions, too, in case 3rd-party code uses a compiler switch to change the default calling convention to something other than __cdecl. But loplugin:salcall exempts the URE stable interface, anyway.) One could argue that SAL_CALL, even if today it effectively only affects non- static member functions in MSVC, could be extended in the future to affect more functions on more platforms. However, the current code would already not support that. For example, 3af500580b1c82eabd60335c9ebc458a3f68850c "loplugin:salcall fix functions" changed FrameControl_createInstance in UnoControls/source/base/registercontrols.cxx to no longer be SAL_CALL, even though its address (in ctl_component_getFacrory, in the same file) is passed to cppuhelper::createSingleFactory as an argument of type cppu::ComponentInstantiation, which is a pointer to SAL_CALL function. Change-Id: I3acbf7314a3d7868ed70e35bb5c47bc11a0b7ff6 Reviewed-on: https://gerrit.libreoffice.org/46436 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
132 lines
4.3 KiB
C++
132 lines
4.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
#include <sal/config.h>
|
|
#include <rtl/ustring.hxx>
|
|
#include <rtl/uuid.h>
|
|
#include <framework/xmlsignaturetemplateimpl.hxx>
|
|
|
|
using namespace ::com::sun::star::uno ;
|
|
using ::com::sun::star::lang::XMultiServiceFactory ;
|
|
using ::com::sun::star::lang::XSingleServiceFactory ;
|
|
|
|
using ::com::sun::star::xml::wrapper::XXMLElementWrapper ;
|
|
using ::com::sun::star::xml::crypto::XXMLSignatureTemplate ;
|
|
|
|
XMLSignatureTemplateImpl::XMLSignatureTemplateImpl()
|
|
:m_xTemplate( nullptr ),
|
|
m_nStatus ( css::xml::crypto::SecurityOperationStatus_UNKNOWN )
|
|
{
|
|
}
|
|
|
|
XMLSignatureTemplateImpl::~XMLSignatureTemplateImpl() {
|
|
}
|
|
|
|
/* XXMLSignatureTemplate */
|
|
void SAL_CALL XMLSignatureTemplateImpl::setTemplate( const Reference< XXMLElementWrapper >& aTemplate )
|
|
{
|
|
m_xTemplate = aTemplate ;
|
|
}
|
|
|
|
/* XXMLSignatureTemplate */
|
|
Reference< XXMLElementWrapper > SAL_CALL XMLSignatureTemplateImpl::getTemplate()
|
|
{
|
|
return m_xTemplate ;
|
|
}
|
|
|
|
void SAL_CALL XMLSignatureTemplateImpl::setTarget( const css::uno::Reference< css::xml::wrapper::XXMLElementWrapper >& aXmlElement )
|
|
{
|
|
targets.push_back( aXmlElement );
|
|
}
|
|
|
|
css::uno::Sequence< css::uno::Reference< css::xml::wrapper::XXMLElementWrapper > > SAL_CALL XMLSignatureTemplateImpl::getTargets()
|
|
{
|
|
sal_Int32 length = targets.size();
|
|
css::uno::Sequence< css::uno::Reference< css::xml::wrapper::XXMLElementWrapper > > aTargets (length);
|
|
|
|
sal_Int32 i;
|
|
|
|
for (i=0; i<length; i++)
|
|
{
|
|
aTargets[i] = targets[i];
|
|
}
|
|
|
|
return aTargets;
|
|
}
|
|
|
|
void SAL_CALL XMLSignatureTemplateImpl::setBinding(
|
|
const css::uno::Reference< css::xml::crypto::XUriBinding >& aUriBinding )
|
|
{
|
|
m_xUriBinding = aUriBinding;
|
|
}
|
|
|
|
css::uno::Reference< css::xml::crypto::XUriBinding > SAL_CALL XMLSignatureTemplateImpl::getBinding()
|
|
{
|
|
return m_xUriBinding;
|
|
}
|
|
|
|
void SAL_CALL XMLSignatureTemplateImpl::setStatus(
|
|
css::xml::crypto::SecurityOperationStatus status )
|
|
{
|
|
m_nStatus = status;
|
|
}
|
|
|
|
css::xml::crypto::SecurityOperationStatus SAL_CALL XMLSignatureTemplateImpl::getStatus( )
|
|
{
|
|
return m_nStatus;
|
|
}
|
|
|
|
/* XServiceInfo */
|
|
OUString SAL_CALL XMLSignatureTemplateImpl::getImplementationName() {
|
|
return impl_getImplementationName() ;
|
|
}
|
|
|
|
/* XServiceInfo */
|
|
sal_Bool SAL_CALL XMLSignatureTemplateImpl::supportsService( const OUString& serviceName) {
|
|
Sequence< OUString > seqServiceNames = getSupportedServiceNames() ;
|
|
const OUString* pArray = seqServiceNames.getConstArray() ;
|
|
for( sal_Int32 i = 0 ; i < seqServiceNames.getLength() ; i ++ ) {
|
|
if( *( pArray + i ) == serviceName )
|
|
return true ;
|
|
}
|
|
return false ;
|
|
}
|
|
|
|
/* XServiceInfo */
|
|
Sequence< OUString > SAL_CALL XMLSignatureTemplateImpl::getSupportedServiceNames() {
|
|
return impl_getSupportedServiceNames() ;
|
|
}
|
|
|
|
//Helper for XServiceInfo
|
|
Sequence< OUString > XMLSignatureTemplateImpl::impl_getSupportedServiceNames() {
|
|
::osl::Guard< ::osl::Mutex > aGuard( ::osl::Mutex::getGlobalMutex() ) ;
|
|
Sequence<OUString> seqServiceNames { "com.sun.star.xml.crypto.XMLSignatureTemplate" };
|
|
return seqServiceNames ;
|
|
}
|
|
|
|
OUString XMLSignatureTemplateImpl::impl_getImplementationName() {
|
|
return OUString("com.sun.star.xml.security.framework.XMLSignatureTemplateImpl") ;
|
|
}
|
|
|
|
//Helper for registry
|
|
Reference< XInterface > XMLSignatureTemplateImpl::impl_createInstance( const Reference< XMultiServiceFactory >& ) {
|
|
return Reference< XInterface >( *new XMLSignatureTemplateImpl ) ;
|
|
}
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|