LibreOffice Module sw (master) 1
retrievedinputstreamdata.hxx
Go to the documentation of this file.
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#ifndef INCLUDED_SW_SOURCE_CORE_INC_RETRIEVEDINPUTSTREAMDATA_HXX
20#define INCLUDED_SW_SOURCE_CORE_INC_RETRIEVEDINPUTSTREAMDATA_HXX
21
22#include <tools/link.hxx>
23#include <sal/types.h>
24#include <mutex>
25#include <com/sun/star/uno/Reference.hxx>
26
27#include <map>
28#include <memory>
29#include <utility>
30
31namespace com::sun::star::io { class XInputStream; }
32
34
45{
46 public:
47
48 typedef sal_uInt64 tDataKey;
49
50 struct tData
51 {
52 std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > mpThreadConsumer;
53 css::uno::Reference<css::io::XInputStream> mxInputStream;
55
58 mbIsStreamReadOnly( false )
59 {};
60
61 tData( std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > pThreadConsumer )
62 : mpThreadConsumer(std::move( pThreadConsumer )),
63 mbIsStreamReadOnly( false )
64 {};
65 };
66
68
69 tDataKey ReserveData( std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > const & pThreadConsumer );
70
71 void PushData( const tDataKey nDataKey,
72 css::uno::Reference<css::io::XInputStream> const & xInputStream,
73 const bool bIsStreamReadOnly );
74
75 bool PopData( const tDataKey nDataKey,
76 tData& rData );
77
78 DECL_STATIC_LINK( SwRetrievedInputStreamDataManager, LinkedInputStreamReady, void*, void );
79
80 private:
81
83
84 std::mutex maMutex;
85
86 std::map< tDataKey, tData > maInputStreamData;
87};
88#endif
89
90/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
class to provide creation of a thread to retrieve an input stream given by a URL and to consume the r...
Singleton class to manage retrieved input stream data in Writer.
DECL_STATIC_LINK(SwRetrievedInputStreamDataManager, LinkedInputStreamReady, void *, void)
tDataKey ReserveData(std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > const &pThreadConsumer)
static SwRetrievedInputStreamDataManager & GetManager()
bool PopData(const tDataKey nDataKey, tData &rData)
std::map< tDataKey, tData > maInputStreamData
void PushData(const tDataKey nDataKey, css::uno::Reference< css::io::XInputStream > const &xInputStream, const bool bIsStreamReadOnly)
std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > mpThreadConsumer
tData(std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > pThreadConsumer)
css::uno::Reference< css::io::XInputStream > mxInputStream