summaryrefslogtreecommitdiffstats
path: root/qlparser/qtvariable.cc
blob: 730ad162c265c0361292198abfdb439166f69056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
/*
* 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 <http://www.gnu.org/licenses/>.
*
* Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009 Peter Baumann /
rasdaman GmbH.
*
* For more information please see <http://www.rasdaman.org>
* or contact Peter Baumann via <baumann@rasdaman.com>.
*/
/*************************************************************
 *
 *
 * PURPOSE:
 *
 *
 * COMMENTS:
 *
 ************************************************************/

static const char rcsid[] = "@(#)qlparser, QtVariable: $Header: /home/rasdev/CVS-repository/rasdaman/qlparser/qtvariable.cc,v 1.24 2003/12/27 20:40:52 rasdev Exp $";

#include <iostream>
#include <sstream>
#include <vector>
using namespace std;

#include "raslib/rmdebug.hh"

#include "qlparser/qtvariable.hh"
#include "qlparser/qtmdd.hh"

#include "mddmgr/mddobj.hh"


const QtNode::QtNodeType QtVariable::nodeType = QT_MDD_VAR;


QtVariable::QtVariable( const string& initName )
  :  iteratorName( initName ),
     loadDomain(),
     oldLoadDomain(),
     dataIndex(-1)
{
  domainFlag = new vector<bool>();
}


QtVariable::QtVariable( const string& initName, const r_Minterval& initDomain )
  :  iteratorName( initName ),
     loadDomain( initDomain ),
     oldLoadDomain(),
     dataIndex(-1)
{
  domainFlag = new vector<bool>();
}


QtVariable::~QtVariable()
{
  // delete STL vector including its elements
  delete domainFlag;
  domainFlag=NULL;
}


bool
QtVariable::equalMeaning( QtNode* node )
{
  RMDBCLASS( "QtVariable", "equalMeaning( QtNode* )", "qlparser", __FILE__, __LINE__ )

  bool result = false;

  if( nodeType == node->getNodeType() )
  {
    QtVariable* mddVarNode;

    mddVarNode = (QtVariable*) node; // by force

    if( iteratorName.compare ( mddVarNode->getIteratorName()) == 0 )
      if( ( loadDomain.dimension() == 0 ) ||
          ( (mddVarNode->getLoadDomain()).dimension() == 0 ) )
        result = true;
      else
        if( loadDomain.dimension() == (mddVarNode->getLoadDomain()).dimension() )
          result = loadDomain.intersects_with( mddVarNode->getLoadDomain() );
  };

  // equalMeaning() depends only on the loadDomain and not on the domainFlag!

  return result;
}


string
QtVariable::getSpelling()
{
  r_Point point;
  r_Dimension d;

  char tempStr[20];
  ostringstream os;
  sprintf(tempStr, "%ud", (unsigned long)getNodeType());
  string result  = string(tempStr);

  result.append( iteratorName );

  if( loadDomain.dimension() > 0)
  {
   os << loadDomain << ends;
   result.append(os.str());
  };

  return result;
}


QtNode::QtAreaType
QtVariable::getAreaType()
{
  return QT_AREA_MDD;
}


void
QtVariable::optimizeLoad( QtTrimList* trimList )
{
  RMDBCLASS( "QtVariable", "optimizeLoad( QtTrimList* )", "qlparser", __FILE__, __LINE__ )

  if( !trimList->empty() )
  {
    // 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
    loadDomain = r_Minterval(maxDimension+1);

    delete domainFlag; // delete the old array
    domainFlag = new vector<bool>(maxDimension+1);

    for( int j=0; j<loadDomain.dimension(); j++ )
    {
      loadDomain[j]    = r_Sinterval('*','*');
      (*domainFlag)[j] = true;
    }

    // fill the loadDomain object with the QtTrimList specifications
    for( i=trimList->begin(); i!=trimList->end(); i++ )
    {
      loadDomain[(*i)->dimension]    = (*i)->interval;
      (*domainFlag)[(*i)->dimension] = (*i)->intervalFlag;
    }

    // delete heap based elements
    // release( trimList->begin(), trimList->end() );
    for( QtNode::QtTrimList::iterator iter=trimList->begin(); iter!=trimList->end(); iter++ )
    {
      delete *iter; 
      *iter=NULL;
    }

    // changed from RMInit:logOut -- PB 2003-nov-20
    RMDBGMIDDLE( 1, RMDebug::module_qlparser, "QtVariable", "optimizeLoad: geometric load optimization: " << iteratorName << loadDomain );
  }

  // delete list
  delete trimList;
  trimList=NULL;
}



QtData*
QtVariable::evaluate( QtDataList* inputList ) throw (ParseInfo)
{
  RMDBCLASS( "QtVariable", "evaluate( QtDataList* )", "qlparser", __FILE__, __LINE__ )

  RMDBGENTER( 2, RMDebug::module_qlparser, "QtVariable", "QtVariable::evaluate() - " << iteratorName.c_str() << endl )

  vector<QtData*>::iterator i; //default

  QtData* returnValue = NULL;

  if( inputList /* && inputList->size() > dataIndex*/ )
  {
    QtData* dataObject = 0;

    if( dataIndex == -1 )
    {
      // Search for the data object matching the iterator name
      int pos = 0;

      for( QtDataList::iterator iter=inputList->begin(); iter!=inputList->end() && !dataObject; iter++ )
      {
        if( iteratorName == (*iter)->getIteratorName() )
          dataObject = *iter;
        else
          pos++;
      }

      if( dataObject ) dataIndex = pos;
    }
    else
      // For performance reasons, take the data element from position determined in the first run.
      dataObject = (*inputList)[dataIndex];

    if( !dataObject )
    {
      RMInit::logOut << "Error: QtVariable::evaluate() - collection iterator " << 
                    iteratorName.c_str() << " is unknwon." << endl;
      parseInfo.setErrorNo(357);
      throw parseInfo;
    }

    if( dataObject->getDataType() == QT_MDD )
    {  
      if( loadDomain.dimension() == 0 )
      {
        // If no domain is specified, the load domain equals the current domain.
        // This means that the data object is passed with an incremented reference.
        // This mainly occurs with point accesses.

        dataObject->incRef();
        returnValue = dataObject;
      }
      else
      {
        QtMDD*  qtMDD         = (QtMDD*)dataObject;
        MDDObj* currentMDDObj = qtMDD->getMDDObject();

        RMDBGMIDDLE( 1, RMDebug::module_qlparser, "QtVariable", "  definitionDomain: " << currentMDDObj->getDefinitionDomain() )
        RMDBGMIDDLE( 1, RMDebug::module_qlparser, "QtVariable", "  currentDomain...: " << currentMDDObj->getCurrentDomain() )

        // load domain for the actual MDDObj
        r_Minterval actLoadDomain;

 	// intersect actLoadDomain with defined domain
        try{
	  actLoadDomain.intersection_of( loadDomain, currentMDDObj->getCurrentDomain() );
	}
	catch( r_Edim_mismatch& )
        {
          RMInit::logOut << "Error: QtVariable::evaluate() - specified domain dimensionality does not equal defined dimensionality." << endl;
          parseInfo.setErrorNo(362);
          throw parseInfo;
        }
    catch( r_Eno_interval )
    	{
          RMInit::logOut << "Error: QtVariable::evaluate() - Specified domain does not intersect with spatial domain of MDD." << endl;
          parseInfo.setErrorNo(356);
          throw parseInfo;
    	}
	catch( r_Error& err )
        {
          RMInit::logOut << "Error: QtVariable::evaluate() - general error." << endl;
          parseInfo.setErrorNo(350);
          throw parseInfo;
        }

        RMDBGMIDDLE( 1, RMDebug::module_qlparser, "QtVariable", "  loadDomain......: " << actLoadDomain )

        if( qtMDD->getLifetime() == QtData::QT_PERSISTENT )
        { 
          //
          // Create a new QtMDD object as carrier object for the persistent MDD object 
          // and attach the load domain. Now there are more than one MDD objects pointing
          // to the same persistent MDD object which should not cause any problem.
          //
          // Note: Taking the same MDD object would mean sharing also the load domain which
          //       is not possible if the iterator variable occurs with different spatial operations. 
          //
  
          QtMDD* result = new QtMDD( (MDDObj*)currentMDDObj );
          result->setLoadDomain( actLoadDomain );

          returnValue = result;
        }
        else
        {
          // Take the transient data object and increase its reference.
          //
          // Note: For a transient MDD object just one QtMDD carrier object is allowed.

          qtMDD->incRef();
          returnValue = qtMDD;
        }

      }

    }
    else
    {
      // Take the atomic data object and increase its reference.
      dataObject->incRef();
      returnValue = dataObject;
    }

  }
  else
  {
    RMDBGMIDDLE( 1, RMDebug::module_qlparser, "QtVariable", "Error: QtVariable::evaluate() - the input list is empty." )
  }
  return returnValue;
}


void
QtVariable::printTree( int tab, ostream& s, QtChildType /*mode*/ )
{
  s << SPACE_STR(tab).c_str() << "QtVariable Object: type " << flush;
  dataStreamType.printStatus( s );
  s << " name |" << iteratorName.c_str() << "|" /* << " pos " << dataIndex */ << endl;

  if( loadDomain.dimension() > 0 )
  {
    s << SPACE_STR(tab).c_str() << "load domain: ";
    loadDomain.print_status( s );
    s << " - Trimflag: ";

    for( int i=0; i<domainFlag->size(); i++)
      s << (*domainFlag)[i];
    s << endl;
  }

  if( oldLoadDomain.dimension() > 0 )
  {
    s << SPACE_STR(tab).c_str() << "old  domain: ";
    oldLoadDomain.print_status( s );
    s << endl;
  };
}



void
QtVariable::printAlgebraicExpression( ostream& s )
{
  s << iteratorName.c_str() << flush;
}



const QtTypeElement&
QtVariable::checkType( QtTypeTuple* typeTuple ) throw (ParseInfo)
{
  RMDBCLASS( "QtVariable", "checkType( QtTypeTuple* )", "qlparser", __FILE__, __LINE__ )

  dataStreamType.setDataType( QT_TYPE_UNKNOWN );  

  if( typeTuple )
  {
    vector<QtTypeElement>::iterator iter;

    // search for the type matching the variable name 
    for( iter=typeTuple->tuple.begin(); 
         iter!=typeTuple->tuple.end() && dataStreamType.getDataType() == QT_TYPE_UNKNOWN;
         iter++ )
    {
      if( (*iter).getName() && iteratorName == string( (*iter).getName() ) )
        dataStreamType = *iter;
    }
  }

  if( (dataStreamType.getDataType() == QT_TYPE_UNKNOWN) )
  {
    RMInit::logOut << "Error: QtVariable::checkType() - variable " << iteratorName.c_str() << " is unknwon." << endl;	
    parseInfo.setErrorNo(357);
    throw parseInfo;
  }
  
  return dataStreamType;
}