nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / core / inc / retrievedinputstreamdata.hxx
blob153bab8b1a0be4ab5ee37d4fd9108da064d8f286
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_SW_SOURCE_CORE_INC_RETRIEVEDINPUTSTREAMDATA_HXX
20 #define INCLUDED_SW_SOURCE_CORE_INC_RETRIEVEDINPUTSTREAMDATA_HXX
22 #include <tools/link.hxx>
23 #include <sal/types.h>
24 #include <osl/mutex.hxx>
25 #include <com/sun/star/uno/Reference.hxx>
27 #include <map>
28 #include <memory>
30 namespace com::sun::star::io { class XInputStream; }
32 class SwAsyncRetrieveInputStreamThreadConsumer;
34 /** Singleton class to manage retrieved input stream data in Writer
36 OD 2007-01-29 #i73788#
37 The instance of this class provides data container for retrieved input
38 stream data. The data container is accessed via a key, which the data
39 manager provides on creation of the data container.
40 When a certain data container is filled with data, an user event is submitted
41 to trigger the processing of with data.
43 class SwRetrievedInputStreamDataManager
45 public:
47 typedef sal_uInt64 tDataKey;
49 struct tData
51 std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > mpThreadConsumer;
52 css::uno::Reference<css::io::XInputStream> mxInputStream;
53 bool mbIsStreamReadOnly;
55 tData()
56 : mpThreadConsumer(),
57 mbIsStreamReadOnly( false )
58 {};
60 tData( std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > pThreadConsumer )
61 : mpThreadConsumer( pThreadConsumer ),
62 mbIsStreamReadOnly( false )
63 {};
66 static SwRetrievedInputStreamDataManager& GetManager();
68 tDataKey ReserveData( std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > const & pThreadConsumer );
70 void PushData( const tDataKey nDataKey,
71 css::uno::Reference<css::io::XInputStream> const & xInputStream,
72 const bool bIsStreamReadOnly );
74 bool PopData( const tDataKey nDataKey,
75 tData& rData );
77 DECL_LINK( LinkedInputStreamReady, void*, void );
79 private:
81 static tDataKey snNextKeyValue;
83 osl::Mutex maMutex;
85 std::map< tDataKey, tData > maInputStreamData;
87 #endif
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */