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
|
/***************************************************************************
function.h - Functions for internal parser
-------------------
copyright : (C) 2004 Michal Rudolf <mrudolf@kdewebdwev.org>
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _HAVE_FUNCTION_H_
#define _HAVE_FUNCTION_H_
#include "parsenode.h"
#include <tqvaluevector.h>
class Parser;
typedef TQValueVector<ParseNode> ParameterList;
typedef TQValueVector<Parse::ValueType> TypeList;
typedef ParseNode(*FunctionPointer)(Parser*, const ParameterList&);
class Function
{
public:
/* default constructor - empty function */
Function();
/* construct a function from parameterlist */
Function(FunctionPointer fp, Parse::ValueType value, const TypeList& params, uint min = 99999,
uint max = 0);
/* construct a function from parameters */
Function(FunctionPointer fp, Parse::ValueType value, Parse::ValueType param1, uint min = 99999,
uint max = 0);
Function(FunctionPointer fp, Parse::ValueType value, Parse::ValueType param1, Parse::ValueType param2,
uint min = 99999, uint max = 0);
Function(FunctionPointer fp, Parse::ValueType value, Parse::ValueType param1, Parse::ValueType param2,
Parse::ValueType param3, uint min = 99999, uint max = 0);
Function(FunctionPointer fp, Parse::ValueType value, Parse::ValueType param1, Parse::ValueType param2,
Parse::ValueType param3, Parse::ValueType param4, uint min = 99999, uint max = 0);
Function(FunctionPointer fp, Parse::ValueType value, Parse::ValueType param1, Parse::ValueType param2,
Parse::ValueType param3, Parse::ValueType param4, Parse::ValueType param5,
uint min = 99999, uint max = 0);
/* if function returns value */
bool isVoid() const;
/* type of returned value */
Parse::ValueType returnValue() const;
/* type of i-th argument */
Parse::ValueType argType(uint i) const;
/* minimum number of arguments */
uint minArgs() const;
/* maximum number of arguments */
uint maxArgs() const;
/* check whether given list is appropriate for this function */
bool isValid(const ParameterList& params) const;
/* execute */
ParseNode execute(Parser* P, const ParameterList& params) const;
private:
FunctionPointer m_function;
TypeList m_params;
Parse::ValueType m_returnValue;
uint m_minArgs;
uint m_maxArgs;
};
#endif
|