/*
* This file is part of rasdaman community.
*
* Rasdaman community 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 3 of the License, or
* (at your option) any later version.
*
* Rasdaman community 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 rasdaman community. If not, see .
*
* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
rasdaman GmbH.
*
* For more information please see
* or contact Peter Baumann via .
*/
/*************************************************************
*
*
* PURPOSE:
*
*
* COMMENTS:
*
************************************************************/
static const char rcsid[] = "@(#)qlparser, QtConst: $Header: /home/rasdev/CVS-repository/rasdaman/qlparser/qtconst.cc,v 1.22 2005/07/06 22:48:34 rasdev Exp $";
#include "qlparser/qtconst.hh"
#include "qlparser/qtscalardata.hh"
#include "qlparser/qtstringdata.hh"
#include "qlparser/qtmdd.hh" // these three can be deleted with new memory management
#include "relcatalogif/basetype.hh"
#include "mddmgr/mddobj.hh"
#include
#ifndef CPPSTDLIB
#include // STL
#else
#include
using namespace std;
#endif
#include
// deprecated, not available any longer -- PB 2005-jan-14
// #include
const QtNode::QtNodeType QtConst::nodeType = QtNode::QT_CONST;
QtConst::QtConst( QtData* newDataObj )
: QtOperation(),
dataObj( newDataObj )
{
// store parse info of the data object
setParseInfo( dataObj->getParseInfo() );
}
QtConst::~QtConst()
{
if( dataObj ) dataObj->deleteRef();
}
bool
QtConst::equalMeaning( QtNode* node )
{
RMDBCLASS( "QtConst", "equalMeaning( QtNode* )", "qlparser", __FILE__, __LINE__ )
bool result = false;
if( nodeType == node->getNodeType() )
{
QtConst* constObj = (QtConst*) node;
result = dataObj->equal( constObj->getDataObj() );
}
return result;
}
string
QtConst::getSpelling()
{
char tempStr[20];
sprintf(tempStr, "%ud", (unsigned long)getNodeType());
string result = string(tempStr);
result.append( dataObj->getSpelling() );
return result;
}
QtNode::QtAreaType
QtConst::getAreaType()
{
if( dataObj && dataObj->getDataType() == QT_MDD )
return QT_AREA_MDD;
else
return QT_AREA_SCALAR;
}
void
QtConst::optimizeLoad( QtTrimList* trimList )
{
RMDBCLASS( "QtConst", "optimizeLoad( QtTrimList* )", "qlparser", __FILE__, __LINE__ )
if( trimList )
{
if( trimList->size() )
{
if( dataObj && dataObj->getDataType() == QT_MDD )
{
// get the highest specified dimension
r_Dimension maxDimension=0;
QtTrimList::iterator i;
for( i=trimList->begin(); i!=trimList->end(); i++ )
// get the maximum
maxDimension = maxDimension > (*i)->dimension ? maxDimension : (*i)->dimension;
// create a new loadDomain object and initialize it with open bounds
r_Minterval loadDomain(maxDimension+1);
// fill the loadDomain object with the QtTrimList specifications
for( i=trimList->begin(); i!=trimList->end(); i++ )
loadDomain[(*i)->dimension] = (*i)->interval;
((QtMDD*)dataObj)->setLoadDomain( loadDomain );
}
// release( trimList->begin(), trimList->end() );
vector::iterator iter;
for( iter=trimList->begin(); iter!=trimList->end(); iter++ )
{
delete *iter;
*iter=NULL;
}
}
delete trimList;
trimList=NULL;
}
}
QtData*
QtConst::evaluate( QtDataList* /*inputList*/ )
{
RMDBCLASS( "QtConst", "evaluate( QtDataList* )", "qlparser", __FILE__, __LINE__ )
QtData* returnValue = NULL;
if( dataObj )
{
dataObj->incRef();
returnValue = dataObj;
}
return returnValue;
}
void
QtConst::printTree( int tab, ostream& s, QtChildType /*mode*/ )
{
s << SPACE_STR(tab).c_str() << "QtConst Object: type " << flush;
dataStreamType.printStatus( s );
s << endl;
s << SPACE_STR(tab).c_str() << " ";
if( dataObj )
dataObj->printStatus( s );
else
s << "";
s << endl;
}
void
QtConst::printAlgebraicExpression( ostream& s )
{
if( dataObj->isScalarData() )
{
QtScalarData* scalarDataObj = (QtScalarData*)dataObj;
if( scalarDataObj->getValueType() )
{
// Print the value but first cut leading blanks.
char valueString[1024];
// replaced deprecated ostrstream -- PB 2005-jan-14
// ostrstream valueStream( valueString, 1024 );
ostringstream valueStream( valueString );
scalarDataObj->getValueType()->printCell( valueStream, scalarDataObj->getValueBuffer() );
valueStream << ends;
char* p = valueString;
while( *p == ' ' ) p++;
s << p;
}
else
s << "";
}
else if( dataObj->getDataType() == QT_STRING )
{
s << ((QtStringData*)dataObj)->getStringData().c_str();
}
else
s << "";
}
const QtTypeElement&
QtConst::checkType( QtTypeTuple* typeTuple )
{
RMDBCLASS( "QtConst", "checkType( QtTypeTuple* )", "qlparser", __FILE__, __LINE__ )
dataStreamType.setDataType( QT_TYPE_UNKNOWN );
if( dataObj )
{
switch( dataObj->getDataType() )
{
case QT_STRING:
case QT_INTERVAL:
case QT_MINTERVAL:
case QT_POINT:
dataStreamType.setDataType( dataObj->getDataType() );
break;
case QT_MDD:
if( ((QtMDD*)dataObj)->getMDDObject() )
dataStreamType.setType((Type*)((QtMDD*)dataObj)->getMDDObject()->getMDDBaseType() );
break;
default:
dataStreamType.setType( ((QtScalarData*)dataObj)->getValueType() );
}
}
return dataStreamType;
}