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 :
21 : #include "securityengine.hxx"
22 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
23 :
24 : namespace cssu = com::sun::star::uno;
25 : namespace cssl = com::sun::star::lang;
26 :
27 0 : SecurityEngine::SecurityEngine()
28 : :m_nIdOfTemplateEC(-1),
29 : m_nNumOfResolvedReferences(0),
30 : m_nIdOfKeyEC(-1),
31 : m_bMissionDone(false),
32 : m_nSecurityId(-1),
33 0 : m_nStatus(::com::sun::star::xml::crypto::SecurityOperationStatus_UNKNOWN)
34 : {
35 0 : }
36 :
37 : /* XReferenceResolvedListener */
38 0 : void SAL_CALL SecurityEngine::referenceResolved( sal_Int32 /*referenceId*/)
39 : throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception)
40 : {
41 0 : m_nNumOfResolvedReferences++;
42 0 : tryToPerform();
43 0 : }
44 :
45 : /* XKeyCollector */
46 0 : void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
47 : throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException, std::exception)
48 : {
49 0 : m_nIdOfKeyEC = id;
50 0 : tryToPerform();
51 0 : }
52 :
53 : /* XMissionTaker */
54 0 : sal_Bool SAL_CALL SecurityEngine::endMission( )
55 : throw (com::sun::star::uno::RuntimeException, std::exception)
56 : {
57 0 : sal_Bool rc = m_bMissionDone;
58 :
59 0 : if (!rc)
60 : {
61 0 : clearUp( );
62 :
63 0 : notifyResultListener();
64 0 : m_bMissionDone = true;
65 : }
66 :
67 0 : m_xResultListener = NULL;
68 0 : m_xSAXEventKeeper = NULL;
69 :
70 0 : return rc;
71 : }
72 :
73 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|