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( 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 0 : m_nStatus(::com::sun::star::xml::crypto::SecurityOperationStatus_UNKNOWN)
35 : {
36 0 : }
37 :
38 : /* XReferenceResolvedListener */
39 0 : void SAL_CALL SecurityEngine::referenceResolved( sal_Int32 /*referenceId*/)
40 : throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException)
41 : {
42 0 : m_nNumOfResolvedReferences++;
43 0 : tryToPerform();
44 0 : }
45 :
46 : /* XKeyCollector */
47 0 : void SAL_CALL SecurityEngine::setKeyId( sal_Int32 id )
48 : throw (com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException)
49 : {
50 0 : m_nIdOfKeyEC = id;
51 0 : tryToPerform();
52 0 : }
53 :
54 : /* XMissionTaker */
55 0 : sal_Bool SAL_CALL SecurityEngine::endMission( )
56 : throw (com::sun::star::uno::RuntimeException)
57 : {
58 0 : sal_Bool rc = m_bMissionDone;
59 :
60 0 : if (!rc)
61 : {
62 0 : clearUp( );
63 :
64 0 : notifyResultListener();
65 0 : m_bMissionDone = true;
66 : }
67 :
68 0 : m_xResultListener = NULL;
69 0 : m_xSAXEventKeeper = NULL;
70 :
71 0 : return rc;
72 : }
73 :
74 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|