(file) Return to CMPI_Cql2Dnf.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / ProviderManager2 / CMPI

File: [Pegasus] / pegasus / src / Pegasus / ProviderManager2 / CMPI / CMPI_Cql2Dnf.cpp (download)
Revision: 1.16, Tue Dec 2 09:01:49 2008 UTC (15 years, 7 months ago) by martin
Branch: MAIN
CVS Tags: preBug9676, postBug9676, TASK_PEP317_1JUNE_2013, TASK-TASK_PEP362_RestfulService_branch-root, TASK-TASK_PEP362_RestfulService_branch-merged_out_from_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_to_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_from_branch, TASK-TASK_PEP362_RestfulService_branch-branch, TASK-PEP362_RestfulService-root, TASK-PEP362_RestfulService-merged_out_to_branch, TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP362_RestfulService-merged_in_to_trunk, TASK-PEP362_RestfulService-merged_in_from_branch, TASK-PEP362_RestfulService-branch, TASK-PEP348_SCMO-root, TASK-PEP348_SCMO-merged_out_to_branch, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP348_SCMO-merged_in_to_trunk, TASK-PEP348_SCMO-merged_in_from_branch, TASK-PEP348_SCMO-branch, TASK-PEP317_pullop-root, TASK-PEP317_pullop-merged_out_to_branch, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP317_pullop-merged_in_from_branch, TASK-PEP317_pullop-branch, RELEASE_2_9_2-RC2, RELEASE_2_9_2-RC1, RELEASE_2_9_2, RELEASE_2_9_1-RC1, RELEASE_2_9_1, RELEASE_2_9_0-RC1, RELEASE_2_9_0-FC, RELEASE_2_9_0, RELEASE_2_9-root, RELEASE_2_9-branch, RELEASE_2_14_1, RELEASE_2_14_0-RC2, RELEASE_2_14_0-RC1, RELEASE_2_14_0, RELEASE_2_14-root, RELEASE_2_14-branch, RELEASE_2_13_0-RC2, RELEASE_2_13_0-RC1, RELEASE_2_13_0-FC, RELEASE_2_13_0, RELEASE_2_13-root, RELEASE_2_13-branch, RELEASE_2_12_1-RC1, RELEASE_2_12_1, RELEASE_2_12_0-RC1, RELEASE_2_12_0-FC, RELEASE_2_12_0, RELEASE_2_12-root, RELEASE_2_12-branch, RELEASE_2_11_2-RC1, RELEASE_2_11_2, RELEASE_2_11_1-RC1, RELEASE_2_11_1, RELEASE_2_11_0-RC1, RELEASE_2_11_0-FC, RELEASE_2_11_0, RELEASE_2_11-root, RELEASE_2_11-branch, RELEASE_2_10_1-RC1, RELEASE_2_10_1, RELEASE_2_10_0-RC2, RELEASE_2_10_0-RC1, RELEASE_2_10_0, RELEASE_2_10-root, RELEASE_2_10-branch, PREAUG25UPDATE, POSTAUG25UPDATE, HPUX_TEST, HEAD, CIMRS_WORK_20130824, BeforeUpdateToHeadOct82011
Changes since 1.15: +6 -6 lines
BUG#: 8123
TITLE: Update copyright/license text

DESCRIPTION:

Fixing trailing spaces in copyright/license text

//%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor licenses this file to you under the OpenPegasus Open
// Source License; you may not use this file except in compliance with the
// License.
//
// 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.
//
//////////////////////////////////////////////////////////////////////////
//
//%/////////////////////////////////////////////////////////////////////////////


#include "CMPI_Version.h"

#include <Pegasus/Common/Stack.h>
#include <Pegasus/CQL/CQLParser.h>
#include <Pegasus/CQL/CQLSelectStatementRep.h>
#include <Pegasus/CQL/CQLExpression.h>
#include <Pegasus/CQL/CQLSimplePredicate.h>
#include <Pegasus/CQL/CQLPredicate.h>
#include <Pegasus/CQL/CQLValue.h>
#include <Pegasus/Common/Tracer.h>

#include "CMPI_Cql2Dnf.h"

PEGASUS_USING_STD;
PEGASUS_NAMESPACE_BEGIN

//
// Routine to map the CQL data to String
//
String CQL2String (const CQLExpression & o)
{
    CQLValue val;
    if (o.isSimpleValue ())
    {
        val = o.getTerms ()[0].getFactors ()[0].getValue ();
    }
    else
    {
        return "NULL_VALUE";
    }

    return o.toString ();
}

//
// Routine to map the CQL type to CMPIPredOp
//
CMPIPredOp CQL2PredOp (ExpressionOpType op, Boolean isInverted)
{
    CMPIPredOp op_type = (CMPIPredOp) 0;

    switch (op)
    {
        case LT:
            if (isInverted)
            {
                op_type = CMPI_PredOp_GreaterThan;
            }
            else
            {
                op_type = CMPI_PredOp_LessThan;
            }
            break;
        case GT:
            if (isInverted)
            {
                op_type = CMPI_PredOp_LessThan;
            }
            else
            {
                op_type = CMPI_PredOp_GreaterThan;
            }
            break;
        case EQ:
            if (isInverted)
            {
                op_type = CMPI_PredOp_NotEquals;
            }
            else
            {
                op_type = CMPI_PredOp_Equals;
            }
            break;
        case LE:
            if (isInverted)
            {
                op_type = CMPI_PredOp_GreaterThanOrEquals;
            }
            else
            {
                op_type = CMPI_PredOp_LessThanOrEquals;
            }
            break;
        case GE:
            if (isInverted)
            {
                op_type = CMPI_PredOp_LessThanOrEquals;
            }
            else
            {
                op_type = CMPI_PredOp_GreaterThanOrEquals;
            }
            break;
        case NE:
            if (isInverted)
            {
                op_type = CMPI_PredOp_Equals;
            }
            else
            {
                op_type = CMPI_PredOp_NotEquals;
            }
            break;
            /* CMPI does not sport this operation. We convert the
               IS NULL to EQ operation. (or NE if "IS NULL" has 'NOT' in
               front (isInverted == true).
            */
        case IS_NULL:
            if (isInverted)
            {
                op_type = CMPI_PredOp_NotEquals;
            }
            else
            {
                op_type = CMPI_PredOp_Equals;
            }
            break;
        case IS_NOT_NULL:
            if (isInverted)
            {
                op_type = CMPI_PredOp_Equals;
            }
            else
            {
                op_type = CMPI_PredOp_NotEquals;
            }
            break;
        case ISA:
            if (isInverted)
            {
                op_type = CMPI_PredOp_NotIsa;
            }
            else
            {
                op_type = CMPI_PredOp_Isa;
            }
            break;
        case LIKE:
            if (isInverted)
            {
                op_type = CMPI_PredOp_NotLike;
            }
            else
            {
                op_type = CMPI_PredOp_Like;
            }
            break;
        default:
            break;
    }
    return op_type;
}

//
// Routine to map the CQL Value type to CMPI_QueryOperand type.
//
CMPI_QueryOperand::Type CQL2Type(CQLValue::CQLValueType typ)
{
    switch (typ)
    {
        case CQLValue::Sint64_type:
            return CMPI_QueryOperand::SINT64_TYPE;
        case CQLValue::Uint64_type:
            return CMPI_QueryOperand::UINT64_TYPE;
        case CQLValue::Real_type:
            return CMPI_QueryOperand::REAL_TYPE;
        case CQLValue::String_type:
            return CMPI_QueryOperand::STRING_TYPE;
        case CQLValue::CIMDateTime_type:
            return CMPI_QueryOperand::DATETIME_TYPE;
        case CQLValue::CIMReference_type:
            return CMPI_QueryOperand::REFERENCE_TYPE;
        case CQLValue::CQLIdentifier_type:
            return CMPI_QueryOperand::PROPERTY_TYPE;
        case CQLValue::CIMObject_type:
            /* There is not such thing as object type. */
            break;
        case CQLValue::Boolean_type:
            return CMPI_QueryOperand::BOOLEAN_TYPE;
        default:
            break;
    }
    return CMPI_QueryOperand::NULL_TYPE;
}

void CMPI_Cql2Dnf::_populateTableau()
{
    PEG_METHOD_ENTER(
        TRC_CMPIPROVIDERINTERFACE,
        "CMPI_Cql2Dnf::_populateTableau()");
    cqs.validate ();
    cqs.applyContext ();
    cqs.normalizeToDOC ();

    CQLPredicate cqsPred = cqs.getPredicate ();
    Array <CQLPredicate> pred_Array;
    Array <BooleanOpType> oper_Array = cqsPred.getOperators();

    if (cqsPred.isSimple())
    {
        pred_Array.append(cqsPred);
    }
    else
    {
        pred_Array = cqsPred.getPredicates();
    }

    _tableau.reserveCapacity(pred_Array.size());

    PEG_TRACE((TRC_CMPIPROVIDERINTERFACE,Tracer::LEVEL4,
        "Expression: %s",(const char*)cqs.toString().getCString()));

    CMPI_TableauRow tr;
    CQLValue dummy("");
    for (Uint32 i = 0; i < pred_Array.size (); i++)
    {
        CQLPredicate pred = pred_Array[i];

        if (pred.isSimple())
        {
            CQLSimplePredicate simple = pred.getSimplePredicate();
            CQLExpression lhs_cql = simple.getLeftExpression();
            CQLExpression rhs_cql = simple.getRightExpression();
            CMPIPredOp opr =
                CQL2PredOp(simple.getOperation(), pred.getInverted());

            CQLValue lhs_val;
            CQLValue rhs_val;

            if (lhs_cql.isSimpleValue())
            {
                //if (lhs_cql.getTerms ().size () != 0)
                lhs_val = lhs_cql.getTerms()[0].getFactors()[0].getValue();
            }
            else
            {
                lhs_val = dummy;
            }
            if (rhs_cql.isSimpleValue())
            {
                //if (rhs_cql.getTerms ().size () != 0)
                rhs_val = rhs_cql.getTerms()[0].getFactors()[0].getValue();
            }
            else
            {
                rhs_val = dummy;
            }
            // Have both side of the operation, such as 'A < 2'
            CMPI_QueryOperand lhs(
                CQL2String(lhs_cql),
                CQL2Type(lhs_val.getValueType()));
            CMPI_QueryOperand rhs(
                CQL2String(rhs_cql),
                CQL2Type(rhs_val.getValueType()));

            // Add it as an row to the table row.
            tr.append(CMPI_term_el(false, opr, lhs, rhs));
            if (i < oper_Array.size())
            {
                // If the next operation is OR (disjunction), then treat
                // the table row as as set of conjunctions and ..
                if (oper_Array[i] == OR)
                {
                    /* put the table of conjunctives in the tableau. Each
                       element in the tableau is a set of conjunctives.
                       It is understood that the boolean logic seperating
                       the conjunctives is the disjunctive operator (OR).
                    */
                    _tableau.append(tr);
                    // Clear the table of conjunctives for the next operands.
                    tr.clear();
                 }

                 // If the operator is a conjunction, let the operands pile up
                 // on the table row until there is disjunction (OR) or there
                 // are ..
            }
            else
            {
                // ... no more operations. This is the last operand. Add it
                // to the tableau as a disjunctions.

                _tableau.append(tr);
            }
        }
    }
    PEG_METHOD_EXIT();
}

CMPI_Cql2Dnf::CMPI_Cql2Dnf(const CQLSelectStatement qs): cqs(qs)
{
    PEG_METHOD_ENTER(
        TRC_CMPIPROVIDERINTERFACE,
        "CMPI_Cql2Dnf::CMPI_Cql2Dnf()");
    _tableau.clear();
    _populateTableau();
    PEG_METHOD_EXIT();
}

CMPI_Cql2Dnf::~CMPI_Cql2Dnf()
{
}


PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2