Bump version to 5.0-14
[LibreOffice.git] / xmlsecurity / source / framework / securityengine.cxx
blob84a3e637b54d176211f1c4594b9daee5b3aa3d30
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()
28 :m_nIdOfTemplateEC(-1),
29 m_nNumOfResolvedReferences(0),
30 m_nIdOfKeyEC(-1),
31 m_bMissionDone(false),
32 m_nSecurityId(-1),
33 m_nStatus(::com::sun::star::xml::crypto::SecurityOperationStatus_UNKNOWN)
37 /* XReferenceResolvedListener */
38 void SAL_CALL SecurityEngine::referenceResolved( sal_Int32 /*referenceId*/)
39 throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception)
41 m_nNumOfResolvedReferences++;
42 tryToPerform();
45 /* XKeyCollector */
46 void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
47 throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception)
49 m_nIdOfKeyEC = id;
50 tryToPerform();
53 /* XMissionTaker */
54 sal_Bool SAL_CALL SecurityEngine::endMission( )
55 throw (com::sun::star::uno::RuntimeException, std::exception)
57 bool rc = m_bMissionDone;
59 if (!rc)
61 clearUp( );
63 notifyResultListener();
64 m_bMissionDone = true;
67 m_xResultListener = NULL;
68 m_xSAXEventKeeper = NULL;
70 return rc;
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */