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

Diff for /pegasus/src/Pegasus/CQL/CQLSelectStatementRep.cpp between version 1.1.2.2 and 1.1.2.3

version 1.1.2.2, 2004/09/20 21:03:03 version 1.1.2.3, 2004/09/22 17:59:22
Line 1 
Line 1 
   //%2004////////////////////////////////////////////////////////////////////////
   //
   // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
   // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   //
   // Permission is hereby granted, free of charge, to any person obtaining a copy
   // of this software and associated documentation files (the "Software"), to
   // deal in the Software without restriction, including without limitation the
   // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
   // sell copies of the Software, and to permit persons to whom the Software is
   // furnished to do so, subject to the following conditions:
   //
   // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
   // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
   // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
   // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
   // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   //
   //==============================================================================
   //
   // Authors: David Rosckes (rosckes@us.ibm.com)
   //          Bert Rivero (hurivero@us.ibm.com)
   //          Chuck Carmack (carmack@us.ibm.com)
   //          Brian Lucier (lucier@us.ibm.com)
   //
   // Modified By:
   //
   //%/////////////////////////////////////////////////////////////////////////////
   
 #include "CQLSelectStatement.h" #include "CQLSelectStatement.h"
 #include "CQLSelectStatementRep.h" #include "CQLSelectStatementRep.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 CQLSelectStatementRep::CQLSelectStatementRep(String inQlang, String inQuery, QueryContext& inCtx):  CQLSelectStatementRep::CQLSelectStatementRep()
 SelectStatementRep(inQlang, inQuery, inCtx)    :SelectStatementRep()
 { {
 } }
  
 CQLSelectStatementRep::CQLSelectStatementRep(const CQLSelectStatementRep* rep){  CQLSelectStatementRep::CQLSelectStatementRep(String& inQlang, String& inQuery, QueryContext* inCtx)
         _whereIdentifiers = rep->_whereIdentifiers;    :SelectStatementRep(inQlang, inQuery, inCtx)
         _selectIdentifiers = rep->_selectIdentifiers;  {
         _predicate = rep->_predicate;  
 } }
  
 Boolean CQLSelectStatementRep::evaluate(CIMInstance const inCI)  CQLSelectStatementRep::CQLSelectStatementRep(const CQLSelectStatementRep& rep)
     :SelectStatementRep(rep),
      _selectIdentifiers(rep._selectIdentifiers),
      _whereIdentifiers(rep._whereIdentifiers),
      _predicate(rep._predicate)
 { {
    return false;  
 } }
  
 Array<CIMInstance> CQLSelectStatementRep::executeQuery(Array<CIMInstance> inCIMInstanceArray) throw(Exception)  CQLSelectStatementRep::~CQLSelectStatementRep()
 { {
    Array<CIMInstance> arr;  
    return arr;  
 } }
  
 CIMInstance CQLSelectStatementRep::applyProjection(CIMInstance inCI) throw(Exception)  CQLSelectStatementRep& CQLSelectStatementRep::operator=(const CQLSelectStatementRep& rhs)
 { {
    CIMInstance arr;    if (this ==  &rhs)
    return arr;      return *this;
   
     SelectStatementRep::operator=(rhs);
   
     _whereIdentifiers = rhs._whereIdentifiers;
     _selectIdentifiers = rhs._selectIdentifiers;
     _predicate = rhs._predicate;
   
     return *this;
   }
   
   Boolean CQLSelectStatementRep::evaluate(const CIMInstance& inCI)
   {
      return false;
   }
   
   void CQLSelectStatementRep::applyProjection(CIMInstance& inCI) throw(Exception)
   {
   
 } }
  
 void CQLSelectStatementRep::validateClass(const CIMObjectPath& inClassName) throw(Exception) void CQLSelectStatementRep::validateClass(const CIMObjectPath& inClassName) throw(Exception)
Line 39 
Line 91 
 { {
 } }
  
 Array<CIMObjectPath> const CQLSelectStatementRep::getClassPathList()  Array<CIMObjectPath> CQLSelectStatementRep::getClassPathList()
 { {
    Array<CIMObjectPath> arr;    Array<CIMObjectPath> arr;
    return arr;    return arr;
Line 68 
Line 120 
  
 void CQLSelectStatementRep::appendSelectIdentifier(const CQLChainedIdentifier& x) void CQLSelectStatementRep::appendSelectIdentifier(const CQLChainedIdentifier& x)
 { {
         for(Uint32 i = 0; i < x.getSubIdentifiers().size(); i++){    _selectIdentifiers.append(x);
                 _selectIdentifiers.append( x.getSubIdentifiers()[i]);  
         }  
 } }
  
 Boolean CQLSelectStatementRep::appendWhereIdentifier(const CQLChainedIdentifier& x) Boolean CQLSelectStatementRep::appendWhereIdentifier(const CQLChainedIdentifier& x)
 { {
         for(Uint32 i = 0; i < x.getSubIdentifiers().size(); i++){    _whereIdentifiers.append(x);
                 _whereIdentifiers.append(x.getSubIdentifiers()[i]);  
         }  
         return true;         return true;
 } }
  


Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2