blob: b7421e9874c0611a9e2c3d585e7f356f766cc873 (
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
|
/* -*- 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 <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
{
private:
// the binary data
std::shared_ptr<std::vector<sal_uInt8>> mpData;
public:
BinaryDataContainer();
BinaryDataContainer(const sal_uInt8* pData, size_t nSize);
BinaryDataContainer(std::unique_ptr<std::vector<sal_uInt8>> rData);
BinaryDataContainer(const BinaryDataContainer& rBinaryDataContainer)
: mpData(rBinaryDataContainer.mpData)
{
}
BinaryDataContainer(BinaryDataContainer&& rBinaryDataContainer) noexcept
: mpData(std::move(rBinaryDataContainer.mpData))
{
}
BinaryDataContainer& operator=(const BinaryDataContainer& rBinaryDataContainer)
{
mpData = rBinaryDataContainer.mpData;
return *this;
}
BinaryDataContainer& operator=(BinaryDataContainer&& rBinaryDataContainer) noexcept
{
mpData = std::move(rBinaryDataContainer.mpData);
return *this;
}
size_t getSize() const { return mpData ? mpData->size() : 0; }
bool isEmpty() const { return !mpData || mpData->empty(); }
const sal_uInt8* getData() const { return mpData ? mpData->data() : nullptr; }
size_t calculateHash() const;
auto cbegin() const { return mpData->cbegin(); }
auto cend() const { return mpData->cend(); }
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|