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 0 : ::rtl::Reference< ObservableThread > SwAsyncRetrieveInputStreamThread::createThread(
29 : const SwRetrievedInputStreamDataManager::tDataKey nDataKey,
30 : const OUString& rLinkedURL, const OUString& rReferer )
31 : {
32 : SwAsyncRetrieveInputStreamThread* pNewThread =
33 0 : new SwAsyncRetrieveInputStreamThread( nDataKey, rLinkedURL, rReferer );
34 0 : return pNewThread;
35 : }
36 :
37 0 : SwAsyncRetrieveInputStreamThread::SwAsyncRetrieveInputStreamThread(
38 : const SwRetrievedInputStreamDataManager::tDataKey nDataKey,
39 : const OUString& rLinkedURL,
40 : const OUString& rReferer )
41 : : ObservableThread(),
42 : mnDataKey( nDataKey ),
43 : mrLinkedURL( rLinkedURL ),
44 0 : mrReferer( rReferer )
45 : {
46 0 : }
47 :
48 0 : SwAsyncRetrieveInputStreamThread::~SwAsyncRetrieveInputStreamThread()
49 : {
50 0 : }
51 :
52 0 : void SwAsyncRetrieveInputStreamThread::threadFunction()
53 : {
54 0 : com::sun::star::uno::Sequence < com::sun::star::beans::PropertyValue > xProps( 2 );
55 0 : xProps[0].Name = "URL";
56 0 : xProps[0].Value <<= mrLinkedURL;
57 0 : xProps[1].Name = "Referer";
58 0 : xProps[1].Value <<= mrReferer;
59 0 : utl::MediaDescriptor aMedium( xProps );
60 :
61 0 : aMedium.addInputStream();
62 :
63 0 : com::sun::star::uno::Reference<com::sun::star::io::XInputStream> xInputStream;
64 0 : aMedium[utl::MediaDescriptor::PROP_INPUTSTREAM()] >>= xInputStream;
65 0 : if ( !xInputStream.is() )
66 : {
67 0 : com::sun::star::uno::Reference<com::sun::star::io::XStream> xStream;
68 0 : aMedium[utl::MediaDescriptor::PROP_STREAM()] >>= xStream;
69 0 : if ( xStream.is() )
70 : {
71 0 : xInputStream = xStream->getInputStream();
72 0 : }
73 : }
74 :
75 0 : SwRetrievedInputStreamDataManager::GetManager().PushData( mnDataKey,
76 : xInputStream,
77 0 : aMedium.isStreamReadOnly() );
78 0 : }
79 :
80 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|