LCOV - code coverage report
Current view: top level - sw/source/core/docnode - retrieveinputstream.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 27 28 96.4 %
Date: 2014-11-03 Functions: 5 5 100.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 <retrieveinputstream.hxx>
      21             : #include <unotools/mediadescriptor.hxx>
      22             : #include <com/sun/star/io/XStream.hpp>
      23             : 
      24             : /* class for a thread to retrieve an input stream given by an URL
      25             : 
      26             :     #i73788#
      27             : */
      28           8 : ::rtl::Reference< ObservableThread > SwAsyncRetrieveInputStreamThread::createThread(
      29             :                         const SwRetrievedInputStreamDataManager::tDataKey nDataKey,
      30             :                         const OUString& rLinkedURL, const OUString& rReferer )
      31             : {
      32             :     SwAsyncRetrieveInputStreamThread* pNewThread =
      33           8 :         new SwAsyncRetrieveInputStreamThread( nDataKey, rLinkedURL, rReferer );
      34           8 :     return pNewThread;
      35             : }
      36             : 
      37           8 : SwAsyncRetrieveInputStreamThread::SwAsyncRetrieveInputStreamThread(
      38             :                             const SwRetrievedInputStreamDataManager::tDataKey nDataKey,
      39             :                             const OUString& rLinkedURL,
      40             :                             const OUString& rReferer )
      41             :     : ObservableThread(),
      42             :       mnDataKey( nDataKey ),
      43             :       mrLinkedURL( rLinkedURL ),
      44           8 :       mrReferer( rReferer )
      45             : {
      46           8 : }
      47             : 
      48          16 : SwAsyncRetrieveInputStreamThread::~SwAsyncRetrieveInputStreamThread()
      49             : {
      50          16 : }
      51             : 
      52           8 : void SwAsyncRetrieveInputStreamThread::threadFunction()
      53             : {
      54           8 :     osl_setThreadName("SwAsyncRetrieveInputStreamThread");
      55             : 
      56           8 :     com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue > xProps( 2 );
      57           8 :     xProps[0].Name = "URL";
      58           8 :     xProps[0].Value <<= mrLinkedURL;
      59           8 :     xProps[1].Name = "Referer";
      60           8 :     xProps[1].Value <<= mrReferer;
      61          16 :     utl::MediaDescriptor aMedium( xProps );
      62             : 
      63           8 :     aMedium.addInputStream();
      64             : 
      65          16 :     com::sun::star::uno::Reference<com::sun::star::io::XInputStream> xInputStream;
      66           8 :     aMedium[utl::MediaDescriptor::PROP_INPUTSTREAM()] >>= xInputStream;
      67           8 :     if ( !xInputStream.is() )
      68             :     {
      69           8 :         com::sun::star::uno::Reference<com::sun::star::io::XStream> xStream;
      70           8 :         aMedium[utl::MediaDescriptor::PROP_STREAM()] >>= xStream;
      71           8 :         if ( xStream.is() )
      72             :         {
      73           0 :             xInputStream = xStream->getInputStream();
      74           8 :         }
      75             :     }
      76             : 
      77           8 :     SwRetrievedInputStreamDataManager::GetManager().PushData( mnDataKey,
      78             :                                                               xInputStream,
      79          24 :                                                               aMedium.isStreamReadOnly() );
      80           8 : }
      81             : 
      82             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10