2013-03-10 09:08:59 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-03-10 09:08:59 +01:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/array.hpp"
|
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/debug.hpp"
|
2014-10-31 08:49:14 +01:00
|
|
|
#include "base/primitivetype.hpp"
|
2013-03-16 21:18:53 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2013-03-10 09:08:59 +01:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2014-10-31 08:49:14 +01:00
|
|
|
REGISTER_PRIMITIVE_TYPE(Array);
|
|
|
|
|
2013-03-10 09:08:59 +01:00
|
|
|
/**
|
|
|
|
* Restrieves a value from an array.
|
|
|
|
*
|
|
|
|
* @param index The index..
|
|
|
|
* @returns The value.
|
|
|
|
*/
|
|
|
|
Value Array::Get(unsigned int index) const
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
return m_Data.at(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a value in the array.
|
|
|
|
*
|
|
|
|
* @param index The index.
|
|
|
|
* @param value The value.
|
|
|
|
*/
|
|
|
|
void Array::Set(unsigned int index, const Value& value)
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
m_Data.at(index) = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a value to the array.
|
|
|
|
*
|
|
|
|
* @param value The value.
|
|
|
|
*/
|
|
|
|
void Array::Add(const Value& value)
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
m_Data.push_back(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an iterator to the beginning of the array.
|
|
|
|
*
|
2013-03-22 12:02:20 +01:00
|
|
|
* Note: Caller must hold the object lock while using the iterator.
|
|
|
|
*
|
2013-03-10 09:08:59 +01:00
|
|
|
* @returns An iterator.
|
|
|
|
*/
|
|
|
|
Array::Iterator Array::Begin(void)
|
|
|
|
{
|
|
|
|
ASSERT(OwnsLock());
|
|
|
|
|
|
|
|
return m_Data.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an iterator to the end of the array.
|
|
|
|
*
|
2013-03-22 12:02:20 +01:00
|
|
|
* Note: Caller must hold the object lock while using the iterator.
|
|
|
|
*
|
2013-03-10 09:08:59 +01:00
|
|
|
* @returns An iterator.
|
|
|
|
*/
|
|
|
|
Array::Iterator Array::End(void)
|
|
|
|
{
|
|
|
|
ASSERT(OwnsLock());
|
|
|
|
|
|
|
|
return m_Data.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of elements in the array.
|
|
|
|
*
|
|
|
|
* @returns Number of elements.
|
|
|
|
*/
|
|
|
|
size_t Array::GetLength(void) const
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
return m_Data.size();
|
|
|
|
}
|
|
|
|
|
2014-05-02 00:38:46 +02:00
|
|
|
/**
|
|
|
|
* Checks whether the array contains the specified value.
|
|
|
|
*
|
|
|
|
* @param value The value.
|
|
|
|
* @returns true if the array contains the value, false otherwise.
|
|
|
|
*/
|
|
|
|
bool Array::Contains(const String& value) const
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
return (std::find(m_Data.begin(), m_Data.end(), value) != m_Data.end());
|
|
|
|
}
|
|
|
|
|
2013-12-12 13:53:27 +01:00
|
|
|
/**
|
|
|
|
* Insert the given value at the specified index
|
|
|
|
*
|
|
|
|
* @param index The index
|
|
|
|
* @param value The value to add
|
|
|
|
*/
|
|
|
|
void Array::Insert(unsigned int index, const Value& value)
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
ASSERT(index <= m_Data.size());
|
|
|
|
|
|
|
|
m_Data.insert(m_Data.begin() + index, value);
|
|
|
|
}
|
|
|
|
|
2013-03-10 09:08:59 +01:00
|
|
|
/**
|
|
|
|
* Removes the specified index from the array.
|
|
|
|
*
|
|
|
|
* @param index The index.
|
|
|
|
*/
|
|
|
|
void Array::Remove(unsigned int index)
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
m_Data.erase(m_Data.begin() + index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes the item specified by the iterator from the array.
|
|
|
|
*
|
|
|
|
* @param it The iterator.
|
|
|
|
*/
|
|
|
|
void Array::Remove(Array::Iterator it)
|
|
|
|
{
|
2013-04-19 11:27:18 +02:00
|
|
|
ASSERT(OwnsLock());
|
|
|
|
|
2013-03-10 09:08:59 +01:00
|
|
|
m_Data.erase(it);
|
|
|
|
}
|
|
|
|
|
2014-03-20 14:25:40 +01:00
|
|
|
void Array::Resize(size_t new_size)
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
m_Data.resize(new_size);
|
|
|
|
}
|
|
|
|
|
2014-03-24 11:23:05 +01:00
|
|
|
void Array::Clear(void)
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
|
|
|
|
m_Data.clear();
|
|
|
|
}
|
|
|
|
|
2014-03-20 13:02:02 +01:00
|
|
|
void Array::CopyTo(const Array::Ptr& dest) const
|
|
|
|
{
|
|
|
|
ASSERT(!OwnsLock());
|
|
|
|
ObjectLock olock(this);
|
|
|
|
ObjectLock xlock(dest);
|
|
|
|
|
|
|
|
std::copy(m_Data.begin(), m_Data.end(), std::back_inserter(dest->m_Data));
|
|
|
|
}
|
|
|
|
|
2013-03-10 09:08:59 +01:00
|
|
|
/**
|
|
|
|
* Makes a shallow copy of an array.
|
|
|
|
*
|
|
|
|
* @returns a copy of the array.
|
|
|
|
*/
|
|
|
|
Array::Ptr Array::ShallowClone(void) const
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr clone = new Array();
|
2014-03-20 13:02:02 +01:00
|
|
|
CopyTo(clone);
|
2013-03-10 09:08:59 +01:00
|
|
|
return clone;
|
|
|
|
}
|
2014-11-04 15:19:33 +01:00
|
|
|
|
|
|
|
Array::Ptr icinga::MakeArray(const Value& val1)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-11-04 15:19:33 +01:00
|
|
|
result->Add(val1);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Array::Ptr icinga::MakeArray(const Value& val1, const Value& val2)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-11-04 15:19:33 +01:00
|
|
|
result->Add(val1);
|
|
|
|
result->Add(val2);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Array::Ptr icinga::MakeArray(const Value& val1, const Value& val2, const Value& val3)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-11-04 15:19:33 +01:00
|
|
|
result->Add(val1);
|
|
|
|
result->Add(val2);
|
|
|
|
result->Add(val3);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Array::Ptr icinga::MakeArray(const Value& val1, const Value& val2, const Value& val3, const Value& val4)
|
|
|
|
{
|
2014-11-08 21:17:16 +01:00
|
|
|
Array::Ptr result = new Array();
|
2014-11-04 15:19:33 +01:00
|
|
|
result->Add(val1);
|
|
|
|
result->Add(val2);
|
|
|
|
result->Add(val3);
|
|
|
|
result->Add(val4);
|
|
|
|
return result;
|
|
|
|
}
|