yate/engine/ObjList.cpp

269 lines
5.6 KiB
C++

/**
* ObjList.cpp
* This file is part of the YATE Project http://YATE.null.ro
*
* Yet Another Telephony Engine - a fully featured software PBX and IVR
* Copyright (C) 2004-2006 Null Team
*
* 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.
*/
#include "yateclass.h"
using namespace TelEngine;
static const ObjList s_empty;
const ObjList& ObjList::empty()
{
return s_empty;
}
ObjList::ObjList()
: m_next(0), m_obj(0), m_delete(true)
{
XDebug(DebugAll,"ObjList::ObjList() [%p]",this);
}
ObjList::~ObjList()
{
#ifdef XDEBUG
Debugger debug("ObjList::~ObjList()"," [%p]",this);
#endif
clear();
}
void* ObjList::getObject(const String& name) const
{
if (name == "ObjList")
return const_cast<ObjList*>(this);
return GenObject::getObject(name);
}
unsigned int ObjList::length() const
{
unsigned int c = 0;
const ObjList *n = this;
while (n) {
c++;
n = n->next();
}
return c;
}
unsigned int ObjList::count() const
{
unsigned int c = 0;
const ObjList *n = this;
while (n) {
if (n->get())
c++;
n = n->next();
}
return c;
}
ObjList* ObjList::last() const
{
const ObjList *n = this;
while (n->next())
n = n->next();
return const_cast<ObjList*>(n);
}
ObjList* ObjList::skipNull() const
{
const ObjList *n = this;
while (n && !n->get())
n = n->next();
return const_cast<ObjList*>(n);
}
ObjList* ObjList::skipNext() const
{
const ObjList *n = this;
while (n) {
n = n->next();
if (n && n->get())
break;
}
return const_cast<ObjList*>(n);
}
ObjList* ObjList::operator+(int index) const
{
if (index < 0)
return 0;
ObjList *obj = const_cast<ObjList*>(this);
for (;obj;obj=obj->next(),index--)
if (!index) break;
return obj;
}
GenObject* ObjList::at(int index) const
{
ObjList *obj = operator+(index);
return obj ? obj->get() : 0;
}
GenObject* ObjList::operator[](const String& str) const
{
ObjList *obj = find(str);
return obj ? obj->get() : 0;
}
ObjList* ObjList::find(const GenObject* obj) const
{
XDebug(DebugAll,"ObjList::find(%p) [%p]",obj,this);
const ObjList *n = this;
while (n && (n->get() != obj))
n = n->next();
XDebug(DebugInfo,"ObjList::find returning %p",n);
return const_cast<ObjList*>(n);
}
ObjList* ObjList::find(const String& str) const
{
XDebug(DebugAll,"ObjList::find(\"%s\") [%p]",str.c_str(),this);
const ObjList *n = skipNull();
while (n) {
if (str.matches(n->get()->toString()))
break;
n = n->skipNext();
}
XDebug(DebugInfo,"ObjList::find returning %p",n);
return const_cast<ObjList*>(n);
}
int ObjList::index(const GenObject* obj) const
{
if (!obj)
return -1;
int idx = 0;
for (const ObjList* n = this; n; n = n->next(), idx++)
if (n->get() == obj)
return idx;
return -1;
}
int ObjList::index(const String& str) const
{
int idx = 0;
for (const ObjList* n = this; n; n = n->next(), idx++)
if (n->get() && str.matches(n->get()->toString()))
return idx;
return -1;
}
GenObject* ObjList::set(const GenObject* obj, bool delold)
{
if (m_obj == obj)
return 0;
GenObject *tmp = m_obj;
m_obj = const_cast<GenObject*>(obj);
if (delold && tmp) {
tmp->destruct();
return 0;
}
return tmp;
}
ObjList* ObjList::insert(const GenObject* obj, bool compact)
{
#ifdef XDEBUG
Debugger debug("ObjList::insert","(%p,%d) [%p]",obj,compact,this);
#endif
if (m_obj || !compact) {
ObjList *n = new ObjList();
n->set(m_obj);
set(obj,false);
n->m_delete = m_delete;
n->m_next = m_next;
m_delete = true;
m_next = n;
}
else
m_obj = const_cast<GenObject*>(obj);
return this;
}
ObjList* ObjList::append(const GenObject* obj, bool compact)
{
#ifdef XDEBUG
Debugger debug("ObjList::append","(%p,%d) [%p]",obj,compact,this);
#endif
ObjList *n = last();
if (n->get() || !compact) {
n->m_next = new ObjList();
n = n->m_next;
}
else
n->m_delete = true;
n->set(obj);
return n;
}
GenObject* ObjList::remove(bool delobj)
{
GenObject *tmp = m_obj;
if (m_next) {
ObjList *n = m_next;
m_next = n->next();
m_obj = n->get();
m_delete = n->m_delete;
n->m_obj = 0;
n->m_next = 0;
n->destruct();
}
else
m_obj = 0;
if (delobj && tmp) {
XDebug(DebugInfo,"ObjList::remove() deleting %p",tmp);
// Don't use TelEngine::destruct(): the compiler will call the non-template
// function (which doesn't reset the pointer)
tmp->destruct();
tmp = 0;
}
return tmp;
}
GenObject* ObjList::remove(GenObject* obj, bool delobj)
{
ObjList *n = find(obj);
return n ? n->remove(delobj) : 0;
}
GenObject* ObjList::remove(const String& str, bool delobj)
{
ObjList *n = find(str);
return n ? n->remove(delobj) : 0;
}
void ObjList::clear()
{
#ifdef XDEBUG
Debugger debug("ObjList::clear()"," [%p]",this);
#endif
while (m_obj)
remove(m_delete);
ObjList *n = m_next;
m_next = 0;
TelEngine::destruct(n);
}
/* vi: set ts=8 sw=4 sts=4 noet: */