2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* $RCSfile: fcode.hxx,v $
|
|
|
|
* $Revision: 1.20 $
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-10 10:17:48 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _CONNECTIVITY_FILE_FCODE_HXX_
|
|
|
|
#define _CONNECTIVITY_FILE_FCODE_HXX_
|
|
|
|
|
|
|
|
#include "connectivity/sqliterator.hxx"
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#include "connectivity/CommonTools.hxx"
|
|
|
|
#include <tools/rtti.hxx>
|
|
|
|
#include <com/sun/star/container/XNameAccess.hpp>
|
2001-05-07 09:37:54 +00:00
|
|
|
#include <com/sun/star/container/XIndexAccess.hpp>
|
2001-07-24 12:18:40 +00:00
|
|
|
#include "connectivity/FValue.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace connectivity
|
|
|
|
{
|
|
|
|
class OSQLParseNode;
|
2001-05-07 09:37:54 +00:00
|
|
|
namespace dbase
|
|
|
|
{
|
|
|
|
class ODbaseIndex;
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
namespace file
|
|
|
|
{
|
|
|
|
|
|
|
|
class OOperand;
|
|
|
|
typedef ::std::stack<OOperand*> OCodeStack;
|
|
|
|
class OBoolOperator;
|
|
|
|
typedef ::std::map<sal_Int32,sal_Int32> OEvaluateSet;
|
|
|
|
|
|
|
|
typedef ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess> OFileColumns;
|
|
|
|
|
|
|
|
|
|
|
|
class OCode
|
|
|
|
{
|
|
|
|
public:
|
2002-07-04 05:40:21 +00:00
|
|
|
OCode();
|
2000-09-18 15:18:56 +00:00
|
|
|
virtual ~OCode();
|
|
|
|
|
2002-07-05 07:07:52 +00:00
|
|
|
inline static void * SAL_CALL operator new( size_t nSize ) SAL_THROW( () )
|
|
|
|
{ return ::rtl_allocateMemory( nSize ); }
|
2006-06-20 01:01:59 +00:00
|
|
|
inline static void * SAL_CALL operator new( size_t /*nSize*/,void* _pHint ) SAL_THROW( () )
|
2002-07-05 07:07:52 +00:00
|
|
|
{ return _pHint; }
|
|
|
|
inline static void SAL_CALL operator delete( void * pMem ) SAL_THROW( () )
|
|
|
|
{ ::rtl_freeMemory( pMem ); }
|
2006-06-20 01:01:59 +00:00
|
|
|
inline static void SAL_CALL operator delete( void * /*pMem*/,void* /*_pHint*/ ) SAL_THROW( () )
|
2002-07-05 07:07:52 +00:00
|
|
|
{ }
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// operands that the parsetree generate
|
2002-07-04 05:40:21 +00:00
|
|
|
class OOperand : public OCode
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
sal_Int32 m_eDBType;
|
|
|
|
|
|
|
|
OOperand(const sal_Int32& _rType) : m_eDBType(_rType){}
|
|
|
|
OOperand() : m_eDBType(::com::sun::star::sdbc::DataType::OTHER){}
|
|
|
|
|
|
|
|
public:
|
2001-05-07 11:23:42 +00:00
|
|
|
virtual const ORowSetValue& getValue() const = 0;
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual void setValue(const ORowSetValue& _rVal) = 0;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
virtual sal_Int32 getDBType() const {return m_eDBType;}
|
|
|
|
virtual OEvaluateSet* preProcess(OBoolOperator* pOp, OOperand* pRight = 0);
|
|
|
|
inline sal_Bool isValid() const;
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOperandRow : public OOperand
|
|
|
|
{
|
|
|
|
sal_uInt16 m_nRowPos;
|
|
|
|
protected:
|
2003-09-04 07:28:52 +00:00
|
|
|
OValueRefRow m_pRow;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-04-10 07:51:30 +00:00
|
|
|
OOperandRow(sal_uInt16 _nPos, sal_Int32 _rType);
|
2000-09-18 15:18:56 +00:00
|
|
|
public:
|
|
|
|
sal_uInt16 getRowPos() const {return m_nRowPos;}
|
2001-05-07 11:23:42 +00:00
|
|
|
virtual const ORowSetValue& getValue() const;
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual void setValue(const ORowSetValue& _rVal);
|
2005-02-16 16:31:56 +00:00
|
|
|
void bindValue(const OValueRefRow& _pRow); // Bindung an den Wert, den der Operand repraesentiert
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Attribute aus einer Ergebniszeile
|
|
|
|
class OOperandAttr : public OOperandRow
|
|
|
|
{
|
|
|
|
protected:
|
2000-10-30 06:34:16 +00:00
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet> m_xColumn;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
public:
|
2001-05-07 09:37:54 +00:00
|
|
|
OOperandAttr(sal_uInt16 _nPos,
|
|
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual sal_Bool isIndexed() const;
|
|
|
|
virtual OEvaluateSet* preProcess(OBoolOperator* pOp, OOperand* pRight = 0);
|
2000-09-18 15:18:56 +00:00
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
2005-02-16 16:31:56 +00:00
|
|
|
// Parameter fuer ein Praedikat
|
2000-09-18 15:18:56 +00:00
|
|
|
class OOperandParam : public OOperandRow
|
|
|
|
{
|
|
|
|
public:
|
2001-04-10 07:51:30 +00:00
|
|
|
OOperandParam(connectivity::OSQLParseNode* pNode, sal_Int32 _nPos);
|
2000-10-30 06:34:16 +00:00
|
|
|
void describe(const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>& _xColumn, ::vos::ORef<connectivity::OSQLColumns> _xParamColumns);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
// WerteOperanden
|
|
|
|
class OOperandValue : public OOperand
|
|
|
|
{
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
ORowSetValue m_aValue;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
OOperandValue(){}
|
2001-04-30 08:59:56 +00:00
|
|
|
OOperandValue(const ORowSetValue& _rVar, sal_Int32 eDbType)
|
2000-09-18 15:18:56 +00:00
|
|
|
: OOperand(eDbType)
|
|
|
|
, m_aValue(_rVar)
|
|
|
|
{}
|
|
|
|
|
|
|
|
OOperandValue(sal_Int32 eDbType) :OOperand(eDbType){}
|
|
|
|
public:
|
2001-05-07 11:23:42 +00:00
|
|
|
virtual const ORowSetValue& getValue() const;
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual void setValue(const ORowSetValue& _rVal);
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Konstanten
|
|
|
|
class OOperandConst : public OOperandValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OOperandConst(const connectivity::OSQLParseNode& rColumnRef, const rtl::OUString& aStrValue);
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// Ergebnis Operanden
|
|
|
|
class OOperandResult : public OOperandValue
|
|
|
|
{
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
OOperandResult(const ORowSetValue& _rVar, sal_Int32 eDbType)
|
2000-09-18 15:18:56 +00:00
|
|
|
:OOperandValue(_rVar, eDbType) {}
|
|
|
|
OOperandResult(sal_Int32 eDbType)
|
|
|
|
:OOperandValue(eDbType) {}
|
|
|
|
public:
|
2003-09-04 07:28:52 +00:00
|
|
|
OOperandResult(const ORowSetValue& _rVar)
|
|
|
|
:OOperandValue(_rVar, _rVar.getTypeKind()) {}
|
2000-09-18 15:18:56 +00:00
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class OOperandResultBOOL : public OOperandResult
|
|
|
|
{
|
|
|
|
public:
|
2001-04-30 08:59:56 +00:00
|
|
|
OOperandResultBOOL(sal_Bool bResult) : OOperandResult(::com::sun::star::sdbc::DataType::BIT)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-04-30 08:59:56 +00:00
|
|
|
m_aValue = bResult ? 1.0 : 0.0;
|
|
|
|
m_aValue.setBound(sal_True);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOperandResultNUM : public OOperandResult
|
|
|
|
{
|
|
|
|
public:
|
2001-04-30 08:59:56 +00:00
|
|
|
OOperandResultNUM(double fNum) : OOperandResult(::com::sun::star::sdbc::DataType::DOUBLE)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2001-04-30 08:59:56 +00:00
|
|
|
m_aValue = fNum;
|
|
|
|
m_aValue.setBound(sal_True);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2003-09-04 07:28:52 +00:00
|
|
|
/** special stop operand
|
|
|
|
is appended when a list of arguments ends
|
|
|
|
*/
|
|
|
|
class OStopOperand : public OOperandValue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OStopOperand(){}
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
// Operatoren
|
|
|
|
class OOperator : public OCode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Exec(OCodeStack&) = 0;
|
2005-02-16 16:31:56 +00:00
|
|
|
virtual sal_uInt16 getRequestedOperands() const; // Anzahl benoetigter Operanden
|
2000-09-18 15:18:56 +00:00
|
|
|
// Standard ist 2
|
|
|
|
TYPEINFO();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// boolsche Operatoren
|
|
|
|
|
|
|
|
class OBoolOperator : public OOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
virtual void Exec(OCodeStack&);
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand*) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class OOp_AND : public OBoolOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand*) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_OR : public OBoolOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
protected:
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand*) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_ISNULL : public OBoolOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
public:
|
|
|
|
virtual void Exec(OCodeStack&);
|
|
|
|
virtual sal_uInt16 getRequestedOperands() const;
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand* = NULL) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_ISNOTNULL : public OOp_ISNULL
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand* = NULL) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_LIKE : public OBoolOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
protected:
|
|
|
|
const sal_Unicode cEscape;
|
|
|
|
|
|
|
|
public:
|
|
|
|
OOp_LIKE(const sal_Unicode cEsc = L'\0'):cEscape(cEsc){};
|
|
|
|
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand*) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_NOTLIKE : public OOp_LIKE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
|
|
|
public:
|
2002-07-04 05:40:21 +00:00
|
|
|
OOp_NOTLIKE(const sal_Unicode cEsc = L'\0'):OOp_LIKE(cEsc){};
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand*) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_COMPARE : public OBoolOperator
|
|
|
|
{
|
2004-03-15 11:48:30 +00:00
|
|
|
sal_Int32 aPredicateType;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
TYPEINFO();
|
2004-03-15 11:48:30 +00:00
|
|
|
OOp_COMPARE(sal_Int32 aPType)
|
2000-09-18 15:18:56 +00:00
|
|
|
:aPredicateType(aPType) {}
|
|
|
|
|
2004-03-15 11:48:30 +00:00
|
|
|
inline sal_Int32 getPredicateType() const { return aPredicateType; }
|
2000-09-18 15:18:56 +00:00
|
|
|
virtual sal_Bool operate(const OOperand*, const OOperand*) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
// numerische Operatoren
|
|
|
|
|
|
|
|
class ONumOperator : public OOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Exec(OCodeStack&);
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual double operate(const double& fLeft,const double& fRight) const = 0;
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_ADD : public ONumOperator
|
|
|
|
{
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual double operate(const double& fLeft,const double& fRight) const;
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_SUB : public ONumOperator
|
|
|
|
{
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual double operate(const double& fLeft,const double& fRight) const;
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_MUL : public ONumOperator
|
|
|
|
{
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual double operate(const double& fLeft,const double& fRight) const;
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class OOp_DIV : public ONumOperator
|
|
|
|
{
|
|
|
|
protected:
|
2001-04-30 08:59:56 +00:00
|
|
|
virtual double operate(const double& fLeft,const double& fRight) const;
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inline sal_Bool OOperand::isValid() const
|
|
|
|
{
|
2001-04-30 08:59:56 +00:00
|
|
|
return getValue().getDouble() != double(0.0);
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2003-09-04 07:28:52 +00:00
|
|
|
|
|
|
|
// operator
|
|
|
|
class ONthOperator : public OOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Exec(OCodeStack&);
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ORowSetValue operate(const ::std::vector<ORowSetValue>& lhs) const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OBinaryOperator : public OOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Exec(OCodeStack&);
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class OUnaryOperator : public OOperator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void Exec(OCodeStack&);
|
|
|
|
virtual sal_uInt16 getRequestedOperands() const;
|
|
|
|
virtual ORowSetValue operate(const ORowSetValue& lhs) const = 0;
|
|
|
|
|
|
|
|
TYPEINFO();
|
|
|
|
|
|
|
|
};
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _CONNECTIVITY_FILE_FCODE_HXX_
|
|
|
|
|