(file) Return to CQLFunction.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 <Pegasus/CQL/CQLFunction.h>
 40               #include <Pegasus/CQL/CQLFunctionRep.h>
 41               //#include <Pegasus/CQL/CQLExpression.h>
 42               #include <Pegasus/CQL/CQLPredicate.h>
 43               #include <Pegasus/CQL/CQLFactory.h>
 44               PEGASUS_NAMESPACE_BEGIN
 45               
 46               CQLFunction::CQLFunction()
 47               {
 48               	_rep = new CQLFunctionRep();
 49               } 
 50               
 51               CQLFunction::CQLFunction(CQLIdentifier inOpType, Array<CQLPredicate> inParms)
 52               {
 53                       _rep = new CQLFunctionRep(inOpType,inParms);
 54               }
 55               
 56               CQLFunction::CQLFunction(const CQLFunction& inFunc)
 57 chuck     1.2 {
 58               	_rep = new CQLFunctionRep(inFunc._rep);
 59               }
 60               
 61               CQLFunction::~CQLFunction(){
 62               	if(_rep)
 63               		delete _rep;
 64               }
 65               
 66               CQLValue CQLFunction::resolveValue(const CIMInstance& CI, const QueryContext& queryCtx)
 67               {
 68               	return _rep->resolveValue(CI,queryCtx);
 69               }
 70               
 71               String CQLFunction::toString()const
 72               {
 73                  return _rep->toString();
 74               }
 75               
 76               
 77               Array<CQLPredicate> CQLFunction::getParms()const
 78 chuck     1.2 {
 79                  return _rep->getParms();
 80               }
 81               
 82               FunctionOpType CQLFunction::getFunctionType()const
 83               {
 84                  return _rep->getFunctionType();
 85               }
 86                
 87 vijay.eli 1.6 void CQLFunction::applyContext(const QueryContext& inContext)
 88 chuck     1.2 {
 89                 _rep->applyContext(inContext);
 90               }
 91               
 92               CQLFunction& CQLFunction::operator=(const CQLFunction& rhs){
 93               	if(&rhs != this){
 94               		if(_rep) delete _rep;
 95               		_rep = new CQLFunctionRep(rhs._rep);
 96               	}
 97               	return *this;
 98               }
 99               
100 humberto  1.4 /*
101 chuck     1.2 Boolean CQLFunction::operator==(const CQLFunction& func)const{
102 humberto  1.3 	return (*_rep == *(func._rep));
103 chuck     1.2 }
104               Boolean CQLFunction::operator!=(const CQLFunction& func)const{
105               	return (_rep != func._rep);
106               }
107 humberto  1.4 */
108 chuck     1.2 PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2