//%2003//////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000, 2001, 2002 BMC Software, Hewlett-Packard Development // Company, L. P., IBM Corp., The Open Group, Tivoli Systems. // Copyright (c) 2003 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. // //============================================================================== // // Author: Mike Brasher (mbrasher@bmc.com) // // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company // (carolann_graves@hp.com) // //%///////////////////////////////////////////////////////////////////////////// #include #include #include "WQLSelectStatement.h" PEGASUS_USING_STD; PEGASUS_NAMESPACE_BEGIN template inline static Boolean _Compare(const T& x, const T& y, WQLOperation op) { switch (op) { case WQL_EQ: return x == y; case WQL_NE: return x != y; case WQL_LT: return x < y; case WQL_LE: return x <= y; case WQL_GT: return x > y; case WQL_GE: return x >= y; default: PEGASUS_ASSERT(0); } return false; } static Boolean _Evaluate( const WQLOperand& lhs, const WQLOperand& rhs, WQLOperation op) { switch (lhs.getType()) { case WQLOperand::NULL_VALUE: { // This cannot happen since expressions of the form // OPERAND OPERATOR NULL are converted to unary form. // For example: "count IS NULL" is treated as a unary // operation in which IS_NULL is the unary operation // and count is the the unary operand. PEGASUS_ASSERT(0); break; } case WQLOperand::INTEGER_VALUE: { return _Compare( lhs.getIntegerValue(), rhs.getIntegerValue(), op); } case WQLOperand::DOUBLE_VALUE: { return _Compare( lhs.getDoubleValue(), rhs.getDoubleValue(), op); } case WQLOperand::BOOLEAN_VALUE: { return _Compare( lhs.getBooleanValue(), rhs.getBooleanValue(), op); } case WQLOperand::STRING_VALUE: { return _Compare( lhs.getStringValue(), rhs.getStringValue(), op); } default: PEGASUS_ASSERT(0); } return false; } WQLSelectStatement::WQLSelectStatement() { // // Reserve space for a where clause with up to sixteen terms. // _operations.reserveCapacity(16); _operands.reserveCapacity(16); _allProperties = false; } WQLSelectStatement::~WQLSelectStatement() { } void WQLSelectStatement::clear() { _className.clear(); _allProperties = false; _selectPropertyNames.clear(); _operations.clear(); _operands.clear(); } Boolean WQLSelectStatement::getAllProperties() const { return _allProperties; } void WQLSelectStatement::setAllProperties(const Boolean allProperties) { _allProperties = allProperties; } const CIMPropertyList WQLSelectStatement::getSelectPropertyList () const { // // Check for "*" // if (_allProperties) { // // Return null CIMPropertyList for all properties // return CIMPropertyList (); } else { // // Return CIMPropertyList for properties referenced in the projection // list (SELECT clause) // return CIMPropertyList (_selectPropertyNames); } } const CIMPropertyList WQLSelectStatement::getWherePropertyList () const { // // Return CIMPropertyList for properties referenced in the condition // (WHERE clause) // The list may be empty, but may not be NULL // return CIMPropertyList (_wherePropertyNames); } Boolean WQLSelectStatement::appendWherePropertyName(const CIMName& x) { // // Reject duplicate property names by returning false. // for (Uint32 i = 0, n = _wherePropertyNames.size(); i < n; i++) { if (_wherePropertyNames[i] == x) return false; } // // Append the new property. // _wherePropertyNames.append(x); return true; } static inline void _ResolveProperty( WQLOperand& op, const WQLPropertySource* source) { // // Resolve the operand: if it's a property name, look up its value: // if (op.getType() == WQLOperand::PROPERTY_NAME) { const CIMName& propertyName = op.getPropertyName(); if (!source->getValue(propertyName, op)) op = WQLOperand(); } } Boolean WQLSelectStatement::evaluateWhereClause( const WQLPropertySource* source) const { if (!hasWhereClause()) return true; Stack stack; stack.reserveCapacity(16); // // Counter for operands: // Uint32 j = 0; // // Process each of the operations: // for (Uint32 i = 0, n = _operations.size(); i < n; i++) { WQLOperation op = _operations[i]; switch (op) { case WQL_OR: { PEGASUS_ASSERT(stack.size() >= 2); Boolean op1 = stack.top(); stack.pop(); Boolean op2 = stack.top(); stack.top() = op1 || op2; break; } case WQL_AND: { PEGASUS_ASSERT(stack.size() >= 2); Boolean op1 = stack.top(); stack.pop(); Boolean op2 = stack.top(); stack.top() = op1 && op2; break; } case WQL_NOT: { PEGASUS_ASSERT(stack.size() >= 1); Boolean op = stack.top(); stack.top() = !op; break; } case WQL_EQ: case WQL_NE: case WQL_LT: case WQL_LE: case WQL_GT: case WQL_GE: { Array whereOperands(_operands); PEGASUS_ASSERT(whereOperands.size() >= 2); // // Resolve the left-hand-side to a value (if not already // a value). // WQLOperand& lhs = whereOperands[j++]; _ResolveProperty(lhs, source); // // Resolve the right-hand-side to a value (if not already // a value). // WQLOperand& rhs = whereOperands[j++]; _ResolveProperty(rhs, source); // // Check for a type mismatch: // // PEGASUS_OUT(lhs.toString()); // PEGASUS_OUT(rhs.toString()); if (rhs.getType() != lhs.getType()) throw TypeMismatchException(); // // Now that the types are known to be alike, apply the // operation: // stack.push(_Evaluate(lhs, rhs, op)); break; } case WQL_IS_TRUE: case WQL_IS_NOT_FALSE: { PEGASUS_ASSERT(stack.size() >= 1); break; } case WQL_IS_FALSE: case WQL_IS_NOT_TRUE: { PEGASUS_ASSERT(stack.size() >= 1); stack.top() = !stack.top(); break; } case WQL_IS_NULL: { Array whereOperands(_operands); PEGASUS_ASSERT(whereOperands.size() >= 1); WQLOperand& op = whereOperands[j++]; _ResolveProperty(op, source); stack.push(op.getType() == WQLOperand::NULL_VALUE); break; } case WQL_IS_NOT_NULL: { Array whereOperands(_operands); PEGASUS_ASSERT(whereOperands.size() >= 1); WQLOperand& op = whereOperands[j++]; _ResolveProperty(op, source); stack.push(op.getType() != WQLOperand::NULL_VALUE); break; } } } PEGASUS_ASSERT(stack.size() == 1); return stack.top(); } void WQLSelectStatement::print() const { // // Print the header: // cout << "WQLSelectStatement" << endl; cout << "{" << endl; // // Print the class name: // cout << " _className: \"" << _className.getString() << '"' << endl; // // Print the select properties: // if (_allProperties) { cout << endl; cout << " _allProperties: TRUE" << endl; } else for (Uint32 i = 0; i < _selectPropertyNames.size(); i++) { if (i == 0) cout << endl; cout << " _selectPropertyNames[" << i << "]: "; cout << '"' << _selectPropertyNames[i].getString() << '"' << endl; } // // Print the operations: // for (Uint32 i = 0; i < _operations.size(); i++) { if (i == 0) cout << endl; cout << " _operations[" << i << "]: "; cout << '"' << WQLOperationToString(_operations[i]) << '"' << endl; } // // Print the operands: // for (Uint32 i = 0; i < _operands.size(); i++) { if (i == 0) cout << endl; cout << " _operands[" << i << "]: "; cout << '"' << _operands[i].toString() << '"' << endl; } // // Print the trailer: // cout << "}" << endl; } PEGASUS_NAMESPACE_END