blob: 47938d5b4fb91a5ca9209de28a63a235e84f931f (
plain) (
blame)
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
|
//
// Array.h
//
// Library: Redis
// Package: Redis
// Module: Array
//
// Implementation of the Array class.
//
// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Redis/Array.h"
namespace Poco {
namespace Redis {
Array::Array()
{
}
Array::Array(const Array& copy):
_elements(copy._elements)
{
}
Array::~Array()
{
}
Array& Array::addRedisType(RedisType::Ptr value)
{
checkNull();
_elements.value().push_back(value);
return *this;
}
int Array::getType(size_t pos) const
{
if (_elements.isNull()) throw NullValueException();
if (pos >= _elements.value().size()) throw InvalidArgumentException();
RedisType::Ptr element = _elements.value().at(pos);
return element->type();
}
std::string Array::toString() const
{
return RedisTypeTraits<Array>::toString(*this);
}
} } // namespace Poco::Redis
|