/******************************************************************************
 * $Id$
 *
 * Component: ODS formula Engine
 * Purpose: Implementation of the ods_formula_node class used to represent a
 *          node in a ODS expression.
 * Author: Even Rouault <even dot rouault at spatialys.com>
 *
 ******************************************************************************
 * Copyright (C) 2010 Frank Warmerdam <warmerdam@pobox.com>
 * Copyright (c) 2012, Even Rouault <even dot rouault at spatialys.com>
 *
 * SPDX-License-Identifier: MIT
 ****************************************************************************/

#ifndef ODS_FORMULA_H_INCLUDED_
#define ODS_FORMULA_H_INCLUDED_

#include "cpl_conv.h"
#include "cpl_string.h"

#include <vector>

#if defined(_WIN32)
#define strcasecmp stricmp
#endif

typedef enum
{
    ODS_OR,
    ODS_AND,
    ODS_NOT,
    ODS_IF,

    ODS_PI,

    ODS_SUM,
    ODS_AVERAGE,
    ODS_MIN,
    ODS_MAX,
    ODS_COUNT,
    ODS_COUNTA,

    // ODS_T,
    ODS_LEN,
    ODS_LEFT,
    ODS_RIGHT,
    ODS_MID,

    ODS_ABS,
    ODS_SQRT,
    ODS_COS,
    ODS_SIN,
    ODS_TAN,
    ODS_ACOS,
    ODS_ASIN,
    ODS_ATAN,
    ODS_EXP,
    ODS_LN,
    ODS_LOG,

    ODS_EQ,
    ODS_NE,
    ODS_LE,
    ODS_GE,
    ODS_LT,
    ODS_GT,

    ODS_ADD,
    ODS_SUBTRACT,
    ODS_MULTIPLY,
    ODS_DIVIDE,
    ODS_MODULUS,

    ODS_CONCAT,

    ODS_LIST,

    ODS_CELL,
    ODS_CELL_RANGE,

    ODS_INVALID
} ods_formula_op;

typedef enum
{
    ODS_FIELD_TYPE_INTEGER,
    ODS_FIELD_TYPE_FLOAT,
    ODS_FIELD_TYPE_STRING,
    ODS_FIELD_TYPE_EMPTY
} ods_formula_field_type;

typedef enum
{
    SNT_CONSTANT,
    SNT_OPERATION
} ods_formula_node_type;

class IODSCellEvaluator;

// cppcheck-suppress copyCtorAndEqOperator
class ods_formula_node
{
  private:
    void FreeSubExpr();
    std::string TransformToString() const;

    bool EvaluateOR(IODSCellEvaluator *poEvaluator);
    bool EvaluateAND(IODSCellEvaluator *poEvaluator);
    bool EvaluateNOT(IODSCellEvaluator *poEvaluator);
    bool EvaluateIF(IODSCellEvaluator *poEvaluator);

    bool EvaluateLEN(IODSCellEvaluator *poEvaluator);
    bool EvaluateLEFT(IODSCellEvaluator *poEvaluator);
    bool EvaluateRIGHT(IODSCellEvaluator *poEvaluator);
    bool EvaluateMID(IODSCellEvaluator *poEvaluator);

    bool EvaluateListArgOp(IODSCellEvaluator *poEvaluator);

    bool EvaluateSingleArgOp(IODSCellEvaluator *poEvaluator);

    bool EvaluateEQ(IODSCellEvaluator *poEvaluator);
    bool EvaluateNE(IODSCellEvaluator *poEvaluator);
    bool EvaluateLE(IODSCellEvaluator *poEvaluator);
    bool EvaluateGE(IODSCellEvaluator *poEvaluator);
    bool EvaluateLT(IODSCellEvaluator *poEvaluator);
    bool EvaluateGT(IODSCellEvaluator *poEvaluator);

    bool EvaluateBinaryArithmetic(IODSCellEvaluator *poEvaluator);

    bool EvaluateCONCAT(IODSCellEvaluator *poEvaluator);

    bool EvaluateCELL(IODSCellEvaluator *poEvaluator);

  public:
    ods_formula_node();

    explicit ods_formula_node(
        const char *,
        ods_formula_field_type field_type_in = ODS_FIELD_TYPE_STRING);
    // cppcheck-suppress noExplicitConstructor
    explicit ods_formula_node(int);
    // cppcheck-suppress noExplicitConstructor
    explicit ods_formula_node(double);
    // cppcheck-suppress noExplicitConstructor
    explicit ods_formula_node(ods_formula_op);

    ods_formula_node(const ods_formula_node &other);

    ~ods_formula_node();

    void Initialize();
    void Dump(FILE *fp, int depth);

    bool Evaluate(IODSCellEvaluator *poEvaluator);

    ods_formula_node_type eNodeType;
    ods_formula_field_type field_type;

    /* only for SNT_OPERATION */
    void PushSubExpression(ods_formula_node *);
    void ReverseSubExpressions();
    ods_formula_op eOp;
    int nSubExprCount;
    ods_formula_node **papoSubExpr;

    /* only for SNT_CONSTANT */
    char *string_value;
    int int_value;
    double float_value;
};

class ods_formula_parse_context
{
  public:
    ods_formula_parse_context()
        : nStartToken(0), pszInput(nullptr), pszNext(nullptr), poRoot(nullptr)
    {
    }

    int nStartToken;
    const char *pszInput;
    const char *pszNext;

    ods_formula_node *poRoot;
};

class IODSCellEvaluator
{
  public:
    virtual int EvaluateRange(int nRow1, int nCol1, int nRow2, int nCol2,
                              std::vector<ods_formula_node> &aoOutValues) = 0;

    virtual ~IODSCellEvaluator()
    {
    }

    int m_nDepth = 0;
};

ods_formula_node *ods_formula_compile(const char *expr);

typedef struct
{
    const char *pszName;
    ods_formula_op eOp;
    double (*pfnEval)(double);
} SingleOpStruct;

const SingleOpStruct *ODSGetSingleOpEntry(const char *pszName);
const SingleOpStruct *ODSGetSingleOpEntry(ods_formula_op eOp);

#endif /* def ODS_FORMULA_H_INCLUDED_ */
