1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#pragma once
#include <config_options.h>
#include <connectivity/sqliterator.hxx>
#include <com/sun/star/sdbc/DataType.hpp>
#include <connectivity/FValue.hxx>
#include <file/filedllapi.hxx>
#include <stack>
#include <utility>
namespace connectivity
{
class OSQLParseNode;
namespace file
{
class OOperand;
typedef std::stack<OOperand*> OCodeStack;
class UNLESS_MERGELIBS_MORE(OOO_DLLPUBLIC_FILE) OCode
{
public:
//virtual dtor to allow this to be the root of the class hierarchy
virtual ~OCode();
//but that disables the default move ctor
OCode(OCode&&) = default;
//but that disables the rest of default ctors
OCode(const OCode&) = default;
OCode() = default;
//and same issue for the assignment operators
OCode& operator=(const OCode&) = default;
OCode& operator=(OCode&&) = default;
};
// operands that the parsetree generate
class OOO_DLLPUBLIC_FILE OOperand : public OCode
{
protected:
sal_Int32 m_eDBType;
OOperand(sal_Int32 _rType) : m_eDBType(_rType){}
OOperand() : m_eDBType(css::sdbc::DataType::OTHER){}
public:
virtual const ORowSetValue& getValue() const = 0;
virtual void setValue(const ORowSetValue& _rVal) = 0;
sal_Int32 getDBType() const {return m_eDBType;}
inline bool isValid() const;
};
class OOperandRow : public OOperand
{
sal_uInt16 m_nRowPos;
OValueRefRow m_pRow;
protected:
OOperandRow(sal_uInt16 _nPos, sal_Int32 _rType);
public:
virtual const ORowSetValue& getValue() const override;
virtual void setValue(const ORowSetValue& _rVal) override;
void bindValue(const OValueRefRow& _pRow); // Bind to the value that the operand represents
};
// Attributes from a result row
class OOperandAttr : public OOperandRow
{
public:
OOperandAttr(sal_uInt16 _nPos,
const css::uno::Reference< css::beans::XPropertySet>& _xColumn);
};
// Parameter for a predicate
class OOperandParam : public OOperandRow
{
public:
OOperandParam(sal_Int32 _nPos);
};
// Value operands
class OOperandValue : public OOperand
{
protected:
ORowSetValue m_aValue;
protected:
OOperandValue(){}
OOperandValue(ORowSetValue _aVar, sal_Int32 eDbType)
: OOperand(eDbType)
, m_aValue(std::move(_aVar))
{}
OOperandValue(sal_Int32 eDbType) :OOperand(eDbType){}
public:
virtual const ORowSetValue& getValue() const override;
virtual void setValue(const ORowSetValue& _rVal) override;
};
// Constants
class OOperandConst : public OOperandValue
{
public:
OOperandConst(const connectivity::OSQLParseNode& rColumnRef, const OUString& aStrValue);
};
// Result operands
class OOperandResult : public OOperandValue
{
protected:
OOperandResult(sal_Int32 eDbType)
:OOperandValue(eDbType) {}
public:
OOperandResult(const ORowSetValue& _rVar)
:OOperandValue(_rVar, _rVar.getTypeKind()) {}
};
class OOperandResultBOOL : public OOperandResult
{
public:
OOperandResultBOOL(bool bResult) : OOperandResult(css::sdbc::DataType::BIT)
{
m_aValue = bResult ? 1.0 : 0.0;
m_aValue.setBound(true);
}
};
class OOperandResultNUM : public OOperandResult
{
public:
OOperandResultNUM(double fNum) : OOperandResult(css::sdbc::DataType::DOUBLE)
{
m_aValue = fNum;
m_aValue.setBound(true);
}
};
/** special stop operand
is appended when a list of arguments ends
*/
class OStopOperand : public OOperandValue
{
public:
OStopOperand(){}
};
// Operators
class OOO_DLLPUBLIC_FILE OOperator : public OCode
{
public:
virtual void Exec(OCodeStack&) = 0;
};
// Boolean operators
class OOO_DLLPUBLIC_FILE OBoolOperator : public OOperator
{
public:
virtual void Exec(OCodeStack&) override;
virtual bool operate(const OOperand*, const OOperand*) const;
};
class OOp_NOT : public OBoolOperator
{
public:
protected:
virtual void Exec(OCodeStack&) override;
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class OOp_AND : public OBoolOperator
{
public:
protected:
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class OOp_OR : public OBoolOperator
{
public:
protected:
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class OOO_DLLPUBLIC_FILE OOp_ISNULL : public OBoolOperator
{
public:
public:
virtual void Exec(OCodeStack&) override;
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class OOO_DLLPUBLIC_FILE OOp_ISNOTNULL : public OOp_ISNULL
{
public:
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class OOO_DLLPUBLIC_FILE OOp_LIKE : public OBoolOperator
{
const sal_Unicode cEscape;
public:
OOp_LIKE(const sal_Unicode cEsc):cEscape(cEsc){};
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class OOp_NOTLIKE : public OOp_LIKE
{
public:
public:
OOp_NOTLIKE(const sal_Unicode cEsc):OOp_LIKE(cEsc){};
virtual bool operate(const OOperand*, const OOperand*) const override;
};
class UNLESS_MERGELIBS_MORE(OOO_DLLPUBLIC_FILE) OOp_COMPARE : public OBoolOperator
{
sal_Int32 aPredicateType;
public:
OOp_COMPARE(sal_Int32 aPType)
:aPredicateType(aPType) {}
sal_Int32 getPredicateType() const { return aPredicateType; }
virtual bool operate(const OOperand*, const OOperand*) const override;
};
// Numerical operators
class ONumOperator : public OOperator
{
public:
virtual void Exec(OCodeStack&) override;
protected:
virtual double operate(const double& fLeft,const double& fRight) const = 0;
};
class OOp_ADD : public ONumOperator
{
protected:
virtual double operate(const double& fLeft,const double& fRight) const override;
};
class OOp_SUB : public ONumOperator
{
protected:
virtual double operate(const double& fLeft,const double& fRight) const override;
};
class OOp_MUL : public ONumOperator
{
protected:
virtual double operate(const double& fLeft,const double& fRight) const override;
};
class OOp_DIV : public ONumOperator
{
protected:
virtual double operate(const double& fLeft,const double& fRight) const override;
};
inline bool OOperand::isValid() const
{
return getValue().getDouble() != 0.0;
}
// Operator
class ONthOperator : public OOperator
{
public:
virtual void Exec(OCodeStack&) override;
protected:
virtual ORowSetValue operate(const std::vector<ORowSetValue>& lhs) const = 0;
};
class OBinaryOperator : public OOperator
{
public:
virtual void Exec(OCodeStack&) override;
protected:
virtual ORowSetValue operate(const ORowSetValue& lhs,const ORowSetValue& rhs) const = 0;
};
class OUnaryOperator : public OOperator
{
public:
virtual void Exec(OCodeStack&) override;
virtual ORowSetValue operate(const ORowSetValue& lhs) const = 0;
};
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|