Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / xmlsecurity / source / framework / securityengine.cxx
blob035301b16b5651dc405fbef2afaf101e06153bf2
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 .
21 #include "securityengine.hxx"
22 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
24 namespace cssu = com::sun::star::uno;
25 namespace cssl = com::sun::star::lang;
27 SecurityEngine::SecurityEngine( const cssu::Reference< cssl::XMultiServiceFactory >& rxMSF )
28 :mxMSF( rxMSF ),
29 m_nIdOfTemplateEC(-1),
30 m_nNumOfResolvedReferences(0),
31 m_nIdOfKeyEC(-1),
32 m_bMissionDone(false),
33 m_nSecurityId(-1),
34 m_nStatus(::com::sun::star::xml::crypto::SecurityOperationStatus_UNKNOWN)
38 /* XReferenceResolvedListener */
39 void SAL_CALL SecurityEngine::referenceResolved( sal_Int32 /*referenceId*/)
40 throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException)
42 m_nNumOfResolvedReferences++;
43 tryToPerform();
46 /* XKeyCollector */
47 void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
48 throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException)
50 m_nIdOfKeyEC = id;
51 tryToPerform();
54 /* XMissionTaker */
55 sal_Bool SAL_CALL SecurityEngine::endMission( )
56 throw (com::sun::star::uno::RuntimeException)
58 sal_Bool rc = m_bMissionDone;
60 if (!rc)
62 clearUp( );
64 notifyResultListener();
65 m_bMissionDone = true;
68 m_xResultListener = NULL;
69 m_xSAXEventKeeper = NULL;
71 return rc;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */