blob: 72bd852281ce25c22cf97891e204bb505a5d9d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*/
#pragma once
#include <sal/config.h>
#include <com/sun/star/uno/Sequence.hxx>
#include <com/sun/star/io/XInputStream.hpp>
#include <unotools/tempfile.hxx>
#include <tools/stream.hxx>
#include <vcl/dllapi.h>
#include <vector>
#include <memory>
/** Container for the binary data, whose responsibility is to manage the
* make it as simple as possible to manage the binary data. The binary
* data can be anything, but typically it is a in-memory data from
* files (i.e. files of graphic formats).
*/
class VCL_DLLPUBLIC BinaryDataContainer final
{
struct Impl;
std::shared_ptr<Impl> mpImpl;
void ensureSwappedIn() const;
public:
BinaryDataContainer() = default;
BinaryDataContainer(SvStream& stream, size_t size);
BinaryDataContainer(const BinaryDataContainer& rBinaryDataContainer) = default;
BinaryDataContainer(BinaryDataContainer&& rBinaryDataContainer) noexcept = default;
BinaryDataContainer& operator=(const BinaryDataContainer& rBinaryDataContainer) = default;
BinaryDataContainer& operator=(BinaryDataContainer&& rBinaryDataContainer) noexcept = default;
size_t getSize() const;
bool isEmpty() const;
const sal_uInt8* getData() const;
css::uno::Sequence<sal_Int8> getCopyAsByteSequence() const;
// Returns the data as a readonly stream open for reading
std::shared_ptr<SvStream> getAsStream();
// Returns the data as a readonly stream open for reading
css::uno::Reference<css::io::XInputStream> getAsXInputStream();
/// writes the contents to the given stream
std::size_t writeToStream(SvStream& rStream) const;
/// return the in-memory size in bytes as of now.
std::size_t getSizeBytes() const;
/// swap out to disk for now
void swapOut() const;
size_t calculateHash() const;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|