1 #include "yobaperl/array.hpp" 2 #include "yobaperl/perl.hpp" 3 #include "yobaperl/scalar.hpp" 10 :
Variable(perl, reinterpret_cast<SV *>(av), increase_refcount)
18 if(_checkIndex(index))
20 SV ** elements = av_fetch(
getAV(), index, FALSE);
21 YOBAPERL_ASSERT(elements);
23 SV * result = *elements;
24 YOBAPERL_ASSERT(result);
26 return Scalar(_perl, result,
true);
30 std::string error =
"Array element not exists (index: " + std::to_string(index) +
")";
32 if(_perl.isExceptionsEnabled())
35 if(_perl.isWarningsEnabled())
36 warn(
"%s", error.c_str());
54 if(_checkIndex(index))
56 _store(index, scalar);
61 std::string error =
"Array element not exists (index: " + std::to_string(index) +
")";
84 for(
int i = 0; i < array.
getSize(); i++)
92 for(
auto it = scalars.cbegin(); it != scalars.cend(); it++)
100 for(
auto it = scalars.cbegin(); it != scalars.cend(); it++)
107 av_unshift(
getAV(), 1);
117 const int size = array.
getSize();
118 for(
int i = 0; i < size; i++)
126 av_unshift(
getAV(), scalars.size());
128 for(std::size_t i = 0; i < scalars.size(); i++)
129 _store(i, scalars[i]);
136 av_unshift(
getAV(), scalars.size());
139 auto end_ = scalars.cend();
140 for(
auto it = scalars.cbegin(); it != end_; ++it)
150 SV * result = av_pop(
getAV());
151 YOBAPERL_ASSERT(result);
152 return Scalar(_perl, result,
false);
156 static const std::string error =
"Pop empty array";
158 if(_perl.isExceptionsEnabled())
161 if(_perl.isWarningsEnabled())
162 warn(
"%s", error.c_str());
172 SV * result = av_shift(
getAV());
173 YOBAPERL_ASSERT(result);
174 return Scalar(_perl, result,
false);
178 static const std::string error =
"Pop empty array";
180 if(_perl.isExceptionsEnabled())
183 if(_perl.isWarningsEnabled())
184 warn(
"%s", error.c_str());
200 return av_len(
getAV()) + 1;
210 return av_exists(
getAV(), index);
215 av_extend(
getAV(), size - 1);
237 std::stringstream ss;
241 const int array_size =
getSize();
242 for(SSize_t i = 0; i < array_size; i++)
244 ss << (*this).get(i);
245 if(i < array_size - 1)
256 std::vector<Scalar> result;
260 for(
auto it =
begin(); it != end_; ++it)
261 result.push_back(*it);
268 std::list<Scalar> result;
271 for(
auto it =
begin(); it != end_; ++it)
272 result.push_back(*it);
291 return reinterpret_cast<AV *
>(
getSV());
298 return Scalar(_perl, *av_fetch(
getAV(), index, FALSE),
true);
324 Array::operator bool()
const 331 void Array::_store(
const int index,
Scalar scalar)
336 void Array::_push(
Scalar scalar)
341 bool Array::_checkIndex(
const SSize_t index)
const 343 const SSize_t array_size =
getSize();
344 return array_size > 0 && index >= 0 && index < array_size &&
isExists(index);
347 SV ** Array::_getFirstSV()
const 349 SV ** result = av_fetch(
getAV(), 0, FALSE);
350 YOBAPERL_ASSERT(result);
351 YOBAPERL_ASSERT(*result);
355 SV ** Array::_getLastSV()
const 357 SV ** result = _getFirstSV() + (
getSize() - 1);
358 YOBAPERL_ASSERT(result);
359 YOBAPERL_ASSERT(*result);
std::list< Scalar > toList() const
Convert to C++ list.
Scalar get(const SSize_t index) const
Fetch element by index.
std::string toString() const
Convert to C++ string.
std::vector< Scalar > toVector() const
Convert to C++ vector.
Iterator begin() const
Iterator to first element.
SV * getSV() const
Get raw scalar.
Array & reserve(SSize_t size)
Reserve space.
SV * detachSV()
Nullify object and return SV.
Array & push(const Scalar &scalar)
Add element to end.
Perl & getPerl() const
Get Perl instance.
Array & operator+=(const Scalar &scalar)
Alias to push()
bool isEmpty() const
Check if array is empty.
Array operator+(const Array &other) const
Merge two arrays.
Array(Perl &perl, AV *av, bool increase_refcount)
Constructor.
Scalar operator[](const SSize_t index) const noexcept
Unsafe version of get()
bool isExists(SSize_t index) const
Check element exists.
Scalar makeCopy() const
Create copy.
Array & operator<<(const Scalar &scalar)
Alias to push()
Array makeCopy() const
Copy each element to new array.
Array newArray()
Create anonymous empty array.
Base class for perl variables.
Scalar newScalar()
Create anonymous empty scalar.
Scalar pop()
Remove last element and return.
Scalar shift()
Remove first element and return.
int getSize() const
Elements count.
int getId() const
Perl object id.
Scalar getLast() const
Get last element.
class ArrayIterator Iterator
Type alias.
AV * getAV() const
Get raw array.
Array & replace(const SSize_t index, const Scalar &scalar)
Replace element.
Array & unshift(const Scalar &scalar)
Add element to begin.
Scalar makeRef() const
Take reference.
Array & clear()
Remove all elements.
Scalar getFirst() const
Get first element.
Iterator end() const
Iterator to last element + 1.