LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/xmlsecurity/source/helper - xmlsignaturehelper2.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 1 0.0 %
Date: 2013-07-09 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          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             : #include <tools/link.hxx>
      21             : #include <rtl/ustring.hxx>
      22             : 
      23             : #include <cppuhelper/implbase1.hxx>
      24             : #include <cppuhelper/implbase3.hxx>
      25             : 
      26             : #include <com/sun/star/xml/sax/XDocumentHandler.hpp>
      27             : #include <com/sun/star/xml/crypto/sax/XSignatureCreationResultListener.hpp>
      28             : #include <com/sun/star/xml/crypto/sax/XSignatureVerifyResultListener.hpp>
      29             : 
      30             : namespace com {
      31             : namespace sun {
      32             : namespace star {
      33             : namespace io {
      34             :     class XInputStream; }
      35             : namespace embed {
      36             :     class XStorage; }
      37             : }}}
      38             : 
      39             : 
      40             : // MT: Not needed any more, remove later...
      41             : 
      42             : class ImplXMLSignatureListener : public cppu::WeakImplHelper3
      43             : <
      44             :     com::sun::star::xml::crypto::sax::XSignatureCreationResultListener,
      45             :     com::sun::star::xml::crypto::sax::XSignatureVerifyResultListener,
      46             :     com::sun::star::xml::sax::XDocumentHandler
      47             : >
      48             : {
      49             : private:
      50             :     Link        maCreationResultListenerListener;
      51             :     Link        maVerifyResultListenerListener;
      52             :     Link        maStartVerifySignatureElementListener;
      53             : 
      54             :     com::sun::star::uno::Reference<
      55             :         com::sun::star::xml::sax::XDocumentHandler > m_xNextHandler;
      56             : 
      57             : public:
      58             :     ImplXMLSignatureListener( const Link& rCreationResultListenerListener, const Link rVerifyResultListenerListener, const Link rStartVerifySignatureElement );
      59             :     ~ImplXMLSignatureListener();
      60             : 
      61             :     void setNextHandler(com::sun::star::uno::Reference<
      62             :         com::sun::star::xml::sax::XDocumentHandler > xNextHandler);
      63             : 
      64             :     // com::sun::star::xml::crypto::sax::XSignatureCreationResultListener
      65             :     virtual void SAL_CALL signatureCreated( sal_Int32 securityId, com::sun::star::xml::crypto::SecurityOperationStatus creationResult )
      66             :         throw (com::sun::star::uno::RuntimeException);
      67             : 
      68             :     // com::sun::star::xml::crypto::sax::XSignatureVerifyResultListener
      69             :     virtual void SAL_CALL signatureVerified( sal_Int32 securityId, com::sun::star::xml::crypto::SecurityOperationStatus verifyResult )
      70             :         throw (com::sun::star::uno::RuntimeException);
      71             : 
      72             :     // com::sun::star::xml::sax::XDocumentHandler
      73             :     virtual void SAL_CALL startElement( const OUString& aName, const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttribs )
      74             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      75             : 
      76             :     virtual void SAL_CALL startDocument(  )
      77             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      78             : 
      79             :     virtual void SAL_CALL endDocument(  )
      80             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      81             : 
      82             :     virtual void SAL_CALL endElement( const OUString& aName )
      83             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      84             : 
      85             :     virtual void SAL_CALL characters( const OUString& aChars )
      86             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      87             : 
      88             :     virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces )
      89             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      90             : 
      91             :     virtual void SAL_CALL processingInstruction( const OUString& aTarget, const OUString& aData )
      92             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      93             : 
      94             :     virtual void SAL_CALL setDocumentLocator( const com::sun::star::uno::Reference< com::sun::star::xml::sax::XLocator >& xLocator )
      95             :         throw (com::sun::star::xml::sax::SAXException, com::sun::star::uno::RuntimeException);
      96             : };
      97             : 
      98             : 
      99             : // ---------------------------------------------------------------------------------
     100             : // XUriBinding
     101             : // ---------------------------------------------------------------------------------
     102             : 
     103           0 : class UriBindingHelper : public cppu::WeakImplHelper1
     104             : <
     105             :     com::sun::star::xml::crypto::XUriBinding
     106             : >
     107             : {
     108             : private:
     109             :     com::sun::star::uno::Reference < com::sun::star::embed::XStorage > mxStorage;
     110             : 
     111             : 
     112             : public:
     113             :     UriBindingHelper();
     114             :     UriBindingHelper( const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rxStorage );
     115             : 
     116             :     void SAL_CALL setUriBinding( const OUString& uri, const com::sun::star::uno::Reference< com::sun::star::io::XInputStream >& aInputStream )
     117             :         throw (com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
     118             : 
     119             :     com::sun::star::uno::Reference< com::sun::star::io::XInputStream > SAL_CALL getUriBinding( const OUString& uri )
     120             :         throw (com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
     121             : 
     122             :     static com::sun::star::uno::Reference < com::sun::star::io::XInputStream > OpenInputStream( const com::sun::star::uno::Reference < com::sun::star::embed::XStorage >& rxStore, const OUString& rURI );
     123             : };
     124             : 
     125             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10