(file) Return to CQLPredicate.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / CQL

  1 karl  1.5 //%2005////////////////////////////////////////////////////////////////////////
  2 chuck 1.2 //
  3 karl  1.5 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
  4           // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
  5           // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
  6 chuck 1.2 // IBM Corp.; EMC Corporation, The Open Group.
  7 karl  1.5 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
  8           // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
  9           // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
 10           // EMC Corporation; VERITAS Software Corporation; The Open Group.
 11 chuck 1.2 //
 12           // Permission is hereby granted, free of charge, to any person obtaining a copy
 13           // of this software and associated documentation files (the "Software"), to
 14           // deal in the Software without restriction, including without limitation the
 15           // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 16           // sell copies of the Software, and to permit persons to whom the Software is
 17           // furnished to do so, subject to the following conditions:
 18           // 
 19           // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
 20           // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
 21           // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
 22           // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 23           // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 24           // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 25           // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 26           // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 27           //
 28           //==============================================================================
 29           //
 30           // Authors: David Rosckes (rosckes@us.ibm.com)
 31           //          Bert Rivero (hurivero@us.ibm.com)
 32 chuck 1.2 //          Chuck Carmack (carmack@us.ibm.com)
 33           //          Brian Lucier (lucier@us.ibm.com)
 34           //
 35 vijay.eli 1.6 // Modified By: Vijay Eli, IBM (vijayeli@in.ibm.com) bug#3590
 36 chuck     1.2 //
 37               //%/////////////////////////////////////////////////////////////////////////////
 38               
 39               #include "CQLPredicate.h"
 40               #include "CQLPredicateRep.h"
 41               #include <Pegasus/Common/Array.h>
 42               #include <Pegasus/CQL/CQLFactory.h>
 43               #include <Pegasus/Query/QueryCommon/QueryException.h>
 44               
 45               PEGASUS_NAMESPACE_BEGIN
 46               
 47               /*
 48               #define PEGASUS_ARRAY_T CQLPredicate
 49               #include <Pegasus/Common/ArrayImpl.h>
 50               #undef PEGASUS_ARRAY_T
 51               
 52               #define PEGASUS_ARRAY_T BooleanOpType
 53               #include <Pegasus/Common/ArrayImpl.h>
 54               #undef PEGASUS_ARRAY_T
 55               */
 56               
 57 chuck     1.2 CQLPredicate::CQLPredicate(){
 58               	_rep = new CQLPredicateRep();
 59               }
 60               
 61               CQLPredicate::CQLPredicate(const CQLSimplePredicate& inSimplePredicate, Boolean inVerted)
 62               {
 63               	_rep = new CQLPredicateRep(inSimplePredicate,inVerted);
 64               }
 65               
 66               CQLPredicate::CQLPredicate(const CQLPredicate& inPredicate, Boolean inInverted)
 67               {
 68               	_rep = new CQLPredicateRep(inPredicate._rep);
 69               }
 70               
 71               CQLPredicate::~CQLPredicate(){
 72               	if(_rep)
 73               		delete _rep;
 74               }
 75               
 76               Boolean CQLPredicate::evaluate(CIMInstance CI, QueryContext& QueryCtx)
 77               {
 78 chuck     1.2    return _rep->evaluate(CI,QueryCtx);
 79               }
 80               
 81               Boolean CQLPredicate::getInverted()const{
 82               	return _rep->getInverted();
 83               }
 84               
 85 humberto  1.4 void CQLPredicate::setInverted(Boolean invert){
 86               	_rep->setInverted(invert);
 87 chuck     1.2 }
 88               
 89               void CQLPredicate::appendPredicate(const CQLPredicate& inPredicate){
 90               	_rep->appendPredicate(inPredicate);
 91               }
 92               
 93               void CQLPredicate::appendPredicate(const CQLPredicate& inPredicate, BooleanOpType inBooleanOperator)
 94               {
 95               	_rep->appendPredicate(inPredicate,inBooleanOperator);
 96               }
 97               
 98               Array<CQLPredicate> CQLPredicate::getPredicates()const{
 99               	return _rep->getPredicates();
100               }
101               
102               CQLSimplePredicate CQLPredicate::getSimplePredicate()const{
103               	return _rep->getSimplePredicate();
104               }
105               
106               Array<BooleanOpType> CQLPredicate::getOperators()const{
107               	return _rep->getOperators();
108 chuck     1.2 }
109               
110 vijay.eli 1.6 void CQLPredicate::applyContext(const QueryContext& queryContext) {
111 chuck     1.2   _rep->applyContext(queryContext);
112               }
113               
114               Boolean CQLPredicate::isSimple()const{
115               	return _rep->isSimple();
116               }
117               
118               Boolean CQLPredicate::isSimpleValue()const{
119                       return _rep->isSimpleValue();
120               }
121               
122               
123               String CQLPredicate::toString()const{
124               	return _rep->toString();
125               }
126               
127               CQLPredicate& CQLPredicate::operator=(const CQLPredicate& rhs){
128               	if(&rhs != this){
129               		if(_rep) delete _rep;
130               		_rep = new CQLPredicateRep(rhs._rep);
131               	}
132 chuck     1.2 	return *this;
133               }
134               
135               PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2