2010-10-12 15:57:08 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2004-07-12 12:15:31 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 23:19:31 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
2008-04-10 23:19:31 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
2008-04-10 23:19:31 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
2008-04-10 23:19:31 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
2008-04-10 23:19:31 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
2008-04-10 23:19:31 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-07-12 12:15:31 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 13:38:33 +00:00
|
|
|
|
2004-07-12 12:15:31 +00:00
|
|
|
#include "securityengine.hxx"
|
|
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
|
|
|
|
|
|
namespace cssu = com::sun::star::uno;
|
|
|
|
namespace cssl = com::sun::star::lang;
|
|
|
|
namespace cssxc = com::sun::star::xml::crypto;
|
|
|
|
namespace cssxw = com::sun::star::xml::wrapper;
|
|
|
|
|
|
|
|
#define DECLARE_ASCII( SASCIIVALUE ) \
|
|
|
|
rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( SASCIIVALUE ) )
|
|
|
|
|
|
|
|
SecurityEngine::SecurityEngine( const cssu::Reference< cssl::XMultiServiceFactory >& rxMSF )
|
|
|
|
:mxMSF( rxMSF ),
|
|
|
|
m_nIdOfTemplateEC(-1),
|
|
|
|
m_nNumOfResolvedReferences(0),
|
2007-04-17 09:19:31 +00:00
|
|
|
m_nIdOfKeyEC(-1),
|
2004-07-12 12:15:31 +00:00
|
|
|
m_bMissionDone(false),
|
|
|
|
m_nSecurityId(-1),
|
2005-03-29 12:22:10 +00:00
|
|
|
m_nStatus(::com::sun::star::xml::crypto::SecurityOperationStatus_UNKNOWN)
|
2004-07-12 12:15:31 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XReferenceResolvedListener */
|
2007-04-17 09:19:31 +00:00
|
|
|
void SAL_CALL SecurityEngine::referenceResolved( sal_Int32 /*referenceId*/)
|
2004-07-12 12:15:31 +00:00
|
|
|
throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
m_nNumOfResolvedReferences++;
|
|
|
|
tryToPerform();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XKeyCollector */
|
|
|
|
void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
|
|
|
|
throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
m_nIdOfKeyEC = id;
|
|
|
|
tryToPerform();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XMissionTaker */
|
|
|
|
sal_Bool SAL_CALL SecurityEngine::endMission( )
|
|
|
|
throw (com::sun::star::uno::RuntimeException)
|
|
|
|
{
|
|
|
|
sal_Bool rc = m_bMissionDone;
|
|
|
|
|
|
|
|
if (!rc)
|
|
|
|
{
|
|
|
|
clearUp( );
|
|
|
|
|
|
|
|
notifyResultListener();
|
|
|
|
m_bMissionDone = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_xResultListener = NULL;
|
|
|
|
m_xSAXEventKeeper = NULL;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-10-12 15:57:08 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|