yate/engine/Array.cpp

142 lines
3.4 KiB
C++

/**
* Array.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;
Array::Array(int columns, int rows)
: m_rows(rows), m_columns(columns)
{
if (rows && columns) {
for (int i=0; i<columns; i++) {
ObjList *a = new ObjList();
// for the first column set the row directly
if (i == 0)
m_obj.set(a);
else
m_obj.append(a,false);
// and add some empty holders for each item
for (int k=1; k<rows; k++)
a->append(0,false);
}
}
}
Array::~Array()
{
m_rows = 0;
m_columns = 0;
m_obj.clear();
}
void* Array::getObject(const String& name) const
{
if (name == "Array")
return const_cast<Array*>(this);
return RefObject::getObject(name);
}
bool Array::addRow(ObjList* row, int index)
{
if (index < 0)
index = m_rows;
if (index > m_rows)
return false;
for (int i=0; i<m_columns; i++) {
GenObject* item = row ? (*row)[i] : 0;
if (index == m_rows)
((*(ObjList *)(m_obj[i]))+index)->append(item,false);
else
((*(ObjList *)(m_obj[i]))+index)->insert(item,false);
}
m_rows++;
return true;
}
bool Array::addColumn(ObjList* column, int index)
{
if (index < 0)
index = m_columns;
if (index > m_columns)
return false;
if (index == m_columns)
(m_obj+index)->append(column,false);
else
(m_obj+index)->insert(column,false);
m_columns++;
return true;
}
bool Array::delRow(int index)
{
if (index < 0 || index >= m_rows)
return false;
for (int i=0; i<m_columns; i++)
((*(ObjList *)(m_obj[i]))+index)->remove();
m_rows--;
return true;
}
bool Array::delColumn(int index)
{
if (index < 0 || index >= m_columns)
return false;
(m_obj+index)->remove();
m_columns--;
return true;
}
GenObject* Array::get(int column,int row) const
{
if (column < 0 || column >= m_columns || row < 0 || row >= m_rows)
return 0;
// return ((*(ObjList *)(m_obj[column]))+row)->get();
ObjList* l = static_cast<ObjList*>(m_obj[column]);
if (l)
l = (*l)+row;
if (l)
return l->get();
Debug(DebugFail,"Array %p get item holder (%d,%d) does not exist!",this,column,row);
return 0;
}
bool Array::set(GenObject *obj, int column, int row)
{
if (column < 0 || column >= m_columns || row < 0 || row >= m_rows)
return false;
// ((*(ObjList *)(m_obj[column]))+row)->set(obj);
// return true;
ObjList* l = static_cast<ObjList*>(m_obj[column]);
if (l)
l = (*l)+row;
if (l) {
l->set(obj);
return true;
}
Debug(DebugFail,"Array %p set item holder (%d,%d) does not exist!",this,column,row);
return false;
}
/* vi: set ts=8 sw=4 sts=4 noet: */