Newer
Older
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
73
74
75
76
77
78
79
80
/*
* Heap.cpp
*
* Created on: Dec 22, 2016
* Author: wfg
*/
/// \cond EXCLUDE_FROM_DOXYGEN
#include <new> //std::bad_alloc
#include <stdexcept> //std::runtime_error
/// \endcond
#include "capsule/heap/STLVector.h"
namespace adios
{
namespace capsule
{
STLVector::STLVector(const std::string accessMode, const int rankMPI,
const bool debugMode)
: Capsule("Heap", accessMode, rankMPI, debugMode)
{
m_Data.reserve(16777216);
}
STLVector::~STLVector() {}
char *STLVector::GetData() { return m_Data.data(); }
char *STLVector::GetMetadata() { return m_Metadata.data(); }
std::size_t STLVector::GetDataSize() const { return m_Data.size(); }
std::size_t STLVector::GetMetadataSize() const { return m_Metadata.size(); }
void STLVector::ResizeData(const std::size_t size)
{
if (m_DebugMode == true)
{
try
{
m_Data.resize(size);
}
catch (std::bad_alloc &e)
{
throw std::runtime_error(
"ERROR: bad_alloc detected when resizing data buffer with size " +
std::to_string(size) + "\n");
}
}
else
{
m_Data.resize(size);
}
}
void STLVector::ResizeMetadata(const std::size_t size)
{
if (m_DebugMode == true)
{
try
{
m_Metadata.resize(size);
}
catch (std::bad_alloc &e)
{
throw std::runtime_error(
"ERROR: bad_alloc detected when resizing metadata buffer with size " +
std::to_string(size) + "\n");
}
}
else
{
m_Metadata.resize(size);
}
}
} // end namespace heap
} // end namespace