mirror of https://github.com/Icinga/icinga2.git
parent
ce01adf018
commit
6660a45c41
|
@ -251,15 +251,7 @@ static Array::Ptr ArrayUnique()
|
||||||
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
ScriptFrame *vframe = ScriptFrame::GetCurrentFrame();
|
||||||
Array::Ptr self = static_cast<Array::Ptr>(vframe->Self);
|
Array::Ptr self = static_cast<Array::Ptr>(vframe->Self);
|
||||||
REQUIRE_NOT_NULL(self);
|
REQUIRE_NOT_NULL(self);
|
||||||
|
return self->Unique();
|
||||||
std::set<Value> result;
|
|
||||||
|
|
||||||
ObjectLock olock(self);
|
|
||||||
for (const Value& item : self) {
|
|
||||||
result.insert(item);
|
|
||||||
}
|
|
||||||
|
|
||||||
return Array::FromSet(result);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ArrayFreeze()
|
static void ArrayFreeze()
|
||||||
|
|
|
@ -305,6 +305,19 @@ String Array::ToString() const
|
||||||
return msgbuf.str();
|
return msgbuf.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Array::Ptr Array::Unique() const
|
||||||
|
{
|
||||||
|
std::set<Value> result;
|
||||||
|
|
||||||
|
ObjectLock olock(this);
|
||||||
|
|
||||||
|
for (const Value& item : m_Data) {
|
||||||
|
result.insert(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Array::FromSet(result);
|
||||||
|
}
|
||||||
|
|
||||||
void Array::Freeze()
|
void Array::Freeze()
|
||||||
{
|
{
|
||||||
ObjectLock olock(this);
|
ObjectLock olock(this);
|
||||||
|
|
|
@ -112,6 +112,7 @@ public:
|
||||||
|
|
||||||
String ToString() const override;
|
String ToString() const override;
|
||||||
|
|
||||||
|
Array::Ptr Unique() const;
|
||||||
void Freeze();
|
void Freeze();
|
||||||
|
|
||||||
Value GetFieldByName(const String& field, bool sandboxed, const DebugInfo& debugInfo) const override;
|
Value GetFieldByName(const String& field, bool sandboxed, const DebugInfo& debugInfo) const override;
|
||||||
|
|
|
@ -63,6 +63,7 @@ add_boost_test(base
|
||||||
base_array/resize
|
base_array/resize
|
||||||
base_array/insert
|
base_array/insert
|
||||||
base_array/remove
|
base_array/remove
|
||||||
|
base_array/unique
|
||||||
base_array/foreach
|
base_array/foreach
|
||||||
base_array/clone
|
base_array/clone
|
||||||
base_array/json
|
base_array/json
|
||||||
|
|
|
@ -102,6 +102,27 @@ BOOST_AUTO_TEST_CASE(remove)
|
||||||
BOOST_CHECK(array->GetLength() == 0);
|
BOOST_CHECK(array->GetLength() == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOST_AUTO_TEST_CASE(unique)
|
||||||
|
{
|
||||||
|
Array::Ptr array = new Array();
|
||||||
|
array->Add("group1");
|
||||||
|
array->Add("group2");
|
||||||
|
array->Add("group1");
|
||||||
|
array->Add("group2");
|
||||||
|
|
||||||
|
Array::Ptr result;
|
||||||
|
|
||||||
|
{
|
||||||
|
ObjectLock olock(array);
|
||||||
|
result = array->Unique();
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOST_CHECK(result->GetLength() == 2);
|
||||||
|
result->Sort();
|
||||||
|
|
||||||
|
BOOST_CHECK(result->Get(0) == "group1");
|
||||||
|
BOOST_CHECK(result->Get(1) == "group2");
|
||||||
|
}
|
||||||
BOOST_AUTO_TEST_CASE(foreach)
|
BOOST_AUTO_TEST_CASE(foreach)
|
||||||
{
|
{
|
||||||
Array::Ptr array = new Array();
|
Array::Ptr array = new Array();
|
||||||
|
|
Loading…
Reference in New Issue