2014-02-10 18:54:46 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-02-10 18:54:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-06-14 03:09:55 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <algorithm>
|
2013-06-14 03:09:55 +00:00
|
|
|
#include <cassert>
|
2018-12-30 19:16:28 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <cmath>
|
2013-06-14 03:09:55 +00:00
|
|
|
#include <iostream>
|
2019-01-05 19:43:39 +00:00
|
|
|
#include <locale>
|
2013-06-14 03:09:55 +00:00
|
|
|
#include <map>
|
2016-06-26 03:34:09 +00:00
|
|
|
#include <memory>
|
2018-12-30 18:38:02 +00:00
|
|
|
#include <regex>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include <string>
|
2013-06-14 03:09:55 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-12-30 19:16:28 +00:00
|
|
|
#include "Common/MathUtil.h"
|
2017-06-07 23:03:36 +00:00
|
|
|
#include "Common/StringUtil.h"
|
2016-10-12 00:48:38 +00:00
|
|
|
#include "InputCommon/ControlReference/ExpressionParser.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
|
2019-06-17 20:39:24 +00:00
|
|
|
namespace ciface::ExpressionParser
|
|
|
|
{
|
2013-06-14 03:09:55 +00:00
|
|
|
using namespace ciface::Core;
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
constexpr int LOOP_MAX_REPS = 10000;
|
|
|
|
constexpr ControlState CONDITION_THRESHOLD = 0.5;
|
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
enum TokenType
|
|
|
|
{
|
|
|
|
TOK_DISCARD,
|
|
|
|
TOK_INVALID,
|
|
|
|
TOK_EOF,
|
|
|
|
TOK_LPAREN,
|
|
|
|
TOK_RPAREN,
|
2019-01-06 15:08:35 +00:00
|
|
|
TOK_FUNCTION,
|
2018-12-30 22:29:48 +00:00
|
|
|
TOK_CONTROL,
|
|
|
|
TOK_LITERAL,
|
|
|
|
TOK_VARIABLE,
|
|
|
|
// Binary Ops:
|
|
|
|
TOK_BINARY_OPS_BEGIN,
|
|
|
|
TOK_AND = TOK_BINARY_OPS_BEGIN,
|
|
|
|
TOK_OR,
|
2013-06-14 06:52:07 +00:00
|
|
|
TOK_ADD,
|
2018-12-30 23:32:32 +00:00
|
|
|
TOK_SUB,
|
2018-12-30 17:51:12 +00:00
|
|
|
TOK_MUL,
|
|
|
|
TOK_DIV,
|
2018-12-30 19:16:28 +00:00
|
|
|
TOK_MOD,
|
2018-12-30 22:06:29 +00:00
|
|
|
TOK_ASSIGN,
|
2018-12-30 22:11:42 +00:00
|
|
|
TOK_LTHAN,
|
|
|
|
TOK_GTHAN,
|
2018-12-30 23:32:32 +00:00
|
|
|
TOK_COMMA,
|
2018-12-30 22:29:48 +00:00
|
|
|
TOK_BINARY_OPS_END,
|
2013-06-14 03:09:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inline std::string OpName(TokenType op)
|
|
|
|
{
|
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case TOK_AND:
|
|
|
|
return "And";
|
|
|
|
case TOK_OR:
|
|
|
|
return "Or";
|
2019-01-06 15:08:35 +00:00
|
|
|
case TOK_FUNCTION:
|
|
|
|
return "Function";
|
2013-06-14 06:52:07 +00:00
|
|
|
case TOK_ADD:
|
|
|
|
return "Add";
|
2018-12-30 23:32:32 +00:00
|
|
|
case TOK_SUB:
|
|
|
|
return "Sub";
|
2018-12-30 17:51:12 +00:00
|
|
|
case TOK_MUL:
|
|
|
|
return "Mul";
|
|
|
|
case TOK_DIV:
|
|
|
|
return "Div";
|
2018-12-30 19:16:28 +00:00
|
|
|
case TOK_MOD:
|
|
|
|
return "Mod";
|
2018-12-30 22:06:29 +00:00
|
|
|
case TOK_ASSIGN:
|
|
|
|
return "Assign";
|
2018-12-30 22:11:42 +00:00
|
|
|
case TOK_LTHAN:
|
|
|
|
return "LThan";
|
|
|
|
case TOK_GTHAN:
|
|
|
|
return "GThan";
|
2018-12-30 23:32:32 +00:00
|
|
|
case TOK_COMMA:
|
|
|
|
return "Comma";
|
2018-12-30 22:06:29 +00:00
|
|
|
case TOK_VARIABLE:
|
|
|
|
return "Var";
|
2013-06-14 03:09:55 +00:00
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class Token
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TokenType type;
|
2018-12-30 16:37:23 +00:00
|
|
|
std::string data;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
Token(TokenType type_) : type(type_) {}
|
2018-12-30 16:37:23 +00:00
|
|
|
Token(TokenType type_, std::string data_) : type(type_), data(std::move(data_)) {}
|
2017-02-26 07:04:16 +00:00
|
|
|
operator std::string() const
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case TOK_DISCARD:
|
|
|
|
return "Discard";
|
|
|
|
case TOK_EOF:
|
|
|
|
return "EOF";
|
|
|
|
case TOK_LPAREN:
|
|
|
|
return "(";
|
|
|
|
case TOK_RPAREN:
|
|
|
|
return ")";
|
|
|
|
case TOK_AND:
|
|
|
|
return "&";
|
|
|
|
case TOK_OR:
|
|
|
|
return "|";
|
2019-01-06 15:08:35 +00:00
|
|
|
case TOK_FUNCTION:
|
2018-12-30 22:35:52 +00:00
|
|
|
return '!' + data;
|
2013-06-14 06:52:07 +00:00
|
|
|
case TOK_ADD:
|
|
|
|
return "+";
|
2018-12-30 23:32:32 +00:00
|
|
|
case TOK_SUB:
|
|
|
|
return "-";
|
2018-12-30 17:51:12 +00:00
|
|
|
case TOK_MUL:
|
|
|
|
return "*";
|
|
|
|
case TOK_DIV:
|
|
|
|
return "/";
|
2018-12-30 19:16:28 +00:00
|
|
|
case TOK_MOD:
|
|
|
|
return "%";
|
2018-12-30 22:06:29 +00:00
|
|
|
case TOK_ASSIGN:
|
|
|
|
return "=";
|
2018-12-30 22:11:42 +00:00
|
|
|
case TOK_LTHAN:
|
|
|
|
return "<";
|
|
|
|
case TOK_GTHAN:
|
|
|
|
return ">";
|
2018-12-30 23:32:32 +00:00
|
|
|
case TOK_COMMA:
|
|
|
|
return ",";
|
2013-06-14 03:09:55 +00:00
|
|
|
case TOK_CONTROL:
|
2018-12-30 22:35:52 +00:00
|
|
|
return "Device(" + data + ')';
|
2018-12-30 16:37:23 +00:00
|
|
|
case TOK_LITERAL:
|
|
|
|
return '\'' + data + '\'';
|
2018-12-30 22:06:29 +00:00
|
|
|
case TOK_VARIABLE:
|
|
|
|
return '$' + data;
|
2018-12-31 01:50:20 +00:00
|
|
|
default:
|
2015-09-10 02:41:47 +00:00
|
|
|
break;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-09-10 02:41:47 +00:00
|
|
|
return "Invalid";
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class Lexer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string expr;
|
|
|
|
std::string::iterator it;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2015-05-29 00:28:48 +00:00
|
|
|
Lexer(const std::string& expr_) : expr(expr_) { it = expr.begin(); }
|
2018-12-30 16:37:23 +00:00
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
template <typename F>
|
|
|
|
std::string FetchCharsWhile(F&& func)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2019-01-05 19:43:39 +00:00
|
|
|
std::string value;
|
|
|
|
while (it != expr.end() && func(*it))
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2019-01-05 19:43:39 +00:00
|
|
|
value += *it;
|
2014-02-12 15:00:34 +00:00
|
|
|
++it;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2019-01-05 19:43:39 +00:00
|
|
|
return value;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
std::string FetchDelimString(char delim)
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
2019-01-05 19:43:39 +00:00
|
|
|
const std::string result = FetchCharsWhile([delim](char c) { return c != delim; });
|
2019-01-05 21:31:05 +00:00
|
|
|
if (it != expr.end())
|
|
|
|
++it;
|
2019-01-05 19:43:39 +00:00
|
|
|
return result;
|
|
|
|
}
|
2018-12-30 18:38:02 +00:00
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
std::string FetchWordChars()
|
|
|
|
{
|
2019-01-05 21:31:05 +00:00
|
|
|
// Words must start with a letter or underscore.
|
|
|
|
if (expr.end() == it || (!std::isalpha(*it, std::locale::classic()) && ('_' != *it)))
|
|
|
|
return "";
|
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
// Valid word characters:
|
|
|
|
std::regex rx("[a-z0-9_]", std::regex_constants::icase);
|
2018-12-30 18:38:02 +00:00
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
return FetchCharsWhile([&rx](char c) { return std::regex_match(std::string(1, c), rx); });
|
2018-12-30 18:38:02 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
Token GetFunction() { return Token(TOK_FUNCTION, FetchWordChars()); }
|
2018-12-30 22:06:29 +00:00
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
Token GetDelimitedLiteral() { return Token(TOK_LITERAL, FetchDelimString('\'')); }
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
Token GetVariable() { return Token(TOK_VARIABLE, FetchWordChars()); }
|
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
Token GetFullyQualifiedControl() { return Token(TOK_CONTROL, FetchDelimString('`')); }
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 07:10:27 +00:00
|
|
|
Token GetBarewordsControl(char c)
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
name += c;
|
2019-01-05 19:43:39 +00:00
|
|
|
name += FetchCharsWhile([](char c) { return std::isalpha(c, std::locale::classic()); });
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 07:10:27 +00:00
|
|
|
ControlQualifier qualifier;
|
|
|
|
qualifier.control_name = name;
|
|
|
|
return Token(TOK_CONTROL, qualifier);
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-01-05 19:43:39 +00:00
|
|
|
Token GetRealLiteral(char c)
|
|
|
|
{
|
|
|
|
std::string value;
|
|
|
|
value += c;
|
|
|
|
value +=
|
|
|
|
FetchCharsWhile([](char c) { return isdigit(c, std::locale::classic()) || ('.' == c); });
|
|
|
|
|
|
|
|
return Token(TOK_LITERAL, value);
|
|
|
|
}
|
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
Token NextToken()
|
|
|
|
{
|
|
|
|
if (it == expr.end())
|
|
|
|
return Token(TOK_EOF);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
char c = *it++;
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case ' ':
|
|
|
|
case '\t':
|
|
|
|
case '\n':
|
|
|
|
case '\r':
|
|
|
|
return Token(TOK_DISCARD);
|
|
|
|
case '(':
|
|
|
|
return Token(TOK_LPAREN);
|
|
|
|
case ')':
|
|
|
|
return Token(TOK_RPAREN);
|
|
|
|
case '&':
|
|
|
|
return Token(TOK_AND);
|
|
|
|
case '|':
|
|
|
|
return Token(TOK_OR);
|
|
|
|
case '!':
|
2019-01-06 15:08:35 +00:00
|
|
|
return GetFunction();
|
2013-06-14 06:52:07 +00:00
|
|
|
case '+':
|
|
|
|
return Token(TOK_ADD);
|
2018-12-30 23:32:32 +00:00
|
|
|
case '-':
|
|
|
|
return Token(TOK_SUB);
|
2018-12-30 17:51:12 +00:00
|
|
|
case '*':
|
|
|
|
return Token(TOK_MUL);
|
|
|
|
case '/':
|
|
|
|
return Token(TOK_DIV);
|
2018-12-30 19:16:28 +00:00
|
|
|
case '%':
|
|
|
|
return Token(TOK_MOD);
|
2018-12-30 22:06:29 +00:00
|
|
|
case '=':
|
|
|
|
return Token(TOK_ASSIGN);
|
2018-12-30 22:11:42 +00:00
|
|
|
case '<':
|
|
|
|
return Token(TOK_LTHAN);
|
|
|
|
case '>':
|
|
|
|
return Token(TOK_GTHAN);
|
2018-12-30 23:32:32 +00:00
|
|
|
case ',':
|
|
|
|
return Token(TOK_COMMA);
|
2018-12-30 16:37:23 +00:00
|
|
|
case '\'':
|
2019-01-05 19:43:39 +00:00
|
|
|
return GetDelimitedLiteral();
|
2018-12-30 22:06:29 +00:00
|
|
|
case '$':
|
|
|
|
return GetVariable();
|
2013-06-14 03:09:55 +00:00
|
|
|
case '`':
|
2013-06-14 07:10:27 +00:00
|
|
|
return GetFullyQualifiedControl();
|
2013-06-14 03:09:55 +00:00
|
|
|
default:
|
2019-01-05 19:43:39 +00:00
|
|
|
if (isalpha(c, std::locale::classic()))
|
2013-06-14 07:10:27 +00:00
|
|
|
return GetBarewordsControl(c);
|
2019-01-05 19:43:39 +00:00
|
|
|
else if (isdigit(c, std::locale::classic()))
|
|
|
|
return GetRealLiteral(c);
|
2013-06-14 07:10:27 +00:00
|
|
|
else
|
|
|
|
return Token(TOK_INVALID);
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-02-28 09:58:03 +00:00
|
|
|
ParseStatus Tokenize(std::vector<Token>& tokens)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
Token tok = NextToken();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
if (tok.type == TOK_DISCARD)
|
|
|
|
continue;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
if (tok.type == TOK_INVALID)
|
|
|
|
{
|
2013-07-03 01:42:44 +00:00
|
|
|
tokens.clear();
|
2017-02-28 09:58:03 +00:00
|
|
|
return ParseStatus::SyntaxError;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
tokens.push_back(tok);
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
if (tok.type == TOK_EOF)
|
|
|
|
break;
|
|
|
|
}
|
2017-04-02 10:13:12 +00:00
|
|
|
return ParseStatus::Successful;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-06-08 00:30:07 +00:00
|
|
|
class ControlExpression : public Expression
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-06-07 22:54:59 +00:00
|
|
|
// Keep a shared_ptr to the device so the control pointer doesn't become invalid
|
2018-12-30 22:06:29 +00:00
|
|
|
// TODO: This is causing devices to be destructed after backends are shutdown:
|
2017-06-07 22:54:59 +00:00
|
|
|
std::shared_ptr<Device> m_device;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-08 02:02:16 +00:00
|
|
|
explicit ControlExpression(ControlQualifier qualifier_) : qualifier(qualifier_) {}
|
2019-02-27 01:46:21 +00:00
|
|
|
ControlState GetValue() const override
|
|
|
|
{
|
2018-12-30 22:06:29 +00:00
|
|
|
if (!input)
|
2019-02-27 01:46:21 +00:00
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
// Note: Inputs may return negative values in situations where opposing directions are
|
|
|
|
// activated. We clamp off the negative values here.
|
|
|
|
|
|
|
|
// FYI: Clamping values greater than 1.0 is purposely not done to support unbounded values in
|
|
|
|
// the future. (e.g. raw accelerometer/gyro data)
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
return std::max(0.0, input->GetState());
|
2019-02-27 01:46:21 +00:00
|
|
|
}
|
2017-06-07 22:56:49 +00:00
|
|
|
void SetValue(ControlState value) override
|
|
|
|
{
|
2018-12-30 22:06:29 +00:00
|
|
|
if (output)
|
|
|
|
output->SetState(value);
|
2017-06-07 22:56:49 +00:00
|
|
|
}
|
2018-12-30 22:06:29 +00:00
|
|
|
int CountNumControls() const override { return (input || output) ? 1 : 0; }
|
|
|
|
void UpdateReferences(ControlEnvironment& env) override
|
2017-06-08 01:48:17 +00:00
|
|
|
{
|
2018-12-30 22:06:29 +00:00
|
|
|
m_device = env.FindDevice(qualifier);
|
|
|
|
input = env.FindInput(qualifier);
|
|
|
|
output = env.FindOutput(qualifier);
|
2017-06-08 01:48:17 +00:00
|
|
|
}
|
2017-06-07 22:54:59 +00:00
|
|
|
operator std::string() const override { return "`" + static_cast<std::string>(qualifier) + "`"; }
|
2018-12-30 22:06:29 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
ControlQualifier qualifier;
|
|
|
|
Device::Input* input = nullptr;
|
|
|
|
Device::Output* output = nullptr;
|
2013-06-14 03:09:55 +00:00
|
|
|
};
|
|
|
|
|
2017-06-08 00:30:07 +00:00
|
|
|
class BinaryExpression : public Expression
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
TokenType op;
|
2017-06-08 00:30:07 +00:00
|
|
|
std::unique_ptr<Expression> lhs;
|
|
|
|
std::unique_ptr<Expression> rhs;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-08 00:30:07 +00:00
|
|
|
BinaryExpression(TokenType op_, std::unique_ptr<Expression>&& lhs_,
|
|
|
|
std::unique_ptr<Expression>&& rhs_)
|
2017-06-07 22:29:00 +00:00
|
|
|
: op(op_), lhs(std::move(lhs_)), rhs(std::move(rhs_))
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-02-26 07:04:16 +00:00
|
|
|
ControlState GetValue() const override
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case TOK_AND:
|
2018-12-30 22:29:48 +00:00
|
|
|
return std::min(lhs->GetValue(), rhs->GetValue());
|
2013-06-14 03:09:55 +00:00
|
|
|
case TOK_OR:
|
2018-12-30 22:29:48 +00:00
|
|
|
return std::max(lhs->GetValue(), rhs->GetValue());
|
2013-06-14 06:52:07 +00:00
|
|
|
case TOK_ADD:
|
2018-12-30 22:29:48 +00:00
|
|
|
return lhs->GetValue() + rhs->GetValue();
|
2018-12-30 23:32:32 +00:00
|
|
|
case TOK_SUB:
|
|
|
|
return lhs->GetValue() - rhs->GetValue();
|
2018-12-30 17:51:12 +00:00
|
|
|
case TOK_MUL:
|
2018-12-30 22:29:48 +00:00
|
|
|
return lhs->GetValue() * rhs->GetValue();
|
2018-12-30 17:51:12 +00:00
|
|
|
case TOK_DIV:
|
|
|
|
{
|
2018-12-30 22:29:48 +00:00
|
|
|
const ControlState result = lhs->GetValue() / rhs->GetValue();
|
2018-12-30 17:51:12 +00:00
|
|
|
return std::isinf(result) ? 0.0 : result;
|
|
|
|
}
|
2018-12-30 19:16:28 +00:00
|
|
|
case TOK_MOD:
|
|
|
|
{
|
2018-12-30 22:29:48 +00:00
|
|
|
const ControlState result = std::fmod(lhs->GetValue(), rhs->GetValue());
|
2018-12-30 19:16:28 +00:00
|
|
|
return std::isnan(result) ? 0.0 : result;
|
|
|
|
}
|
2018-12-30 22:06:29 +00:00
|
|
|
case TOK_ASSIGN:
|
|
|
|
{
|
2018-12-30 22:29:48 +00:00
|
|
|
lhs->SetValue(rhs->GetValue());
|
|
|
|
return lhs->GetValue();
|
2018-12-30 22:06:29 +00:00
|
|
|
}
|
2018-12-30 22:11:42 +00:00
|
|
|
case TOK_LTHAN:
|
2018-12-30 22:29:48 +00:00
|
|
|
return lhs->GetValue() < rhs->GetValue();
|
2018-12-30 22:11:42 +00:00
|
|
|
case TOK_GTHAN:
|
2018-12-30 22:29:48 +00:00
|
|
|
return lhs->GetValue() > rhs->GetValue();
|
2018-12-30 23:32:32 +00:00
|
|
|
case TOK_COMMA:
|
|
|
|
{
|
|
|
|
// Eval and discard lhs:
|
|
|
|
lhs->GetValue();
|
|
|
|
return rhs->GetValue();
|
|
|
|
}
|
2013-06-14 03:09:55 +00:00
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2015-07-30 10:47:02 +00:00
|
|
|
void SetValue(ControlState value) override
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
// Don't do anything special with the op we have.
|
|
|
|
// Treat "A & B" the same as "A | B".
|
|
|
|
lhs->SetValue(value);
|
|
|
|
rhs->SetValue(value);
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-02-26 07:04:16 +00:00
|
|
|
int CountNumControls() const override
|
|
|
|
{
|
|
|
|
return lhs->CountNumControls() + rhs->CountNumControls();
|
|
|
|
}
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
void UpdateReferences(ControlEnvironment& env) override
|
2017-06-08 01:48:17 +00:00
|
|
|
{
|
2018-12-30 22:06:29 +00:00
|
|
|
lhs->UpdateReferences(env);
|
|
|
|
rhs->UpdateReferences(env);
|
2017-06-08 01:48:17 +00:00
|
|
|
}
|
|
|
|
|
2017-02-26 07:04:16 +00:00
|
|
|
operator std::string() const override
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
return OpName(op) + "(" + (std::string)(*lhs) + ", " + (std::string)(*rhs) + ")";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class FunctionExpression : public Expression
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-01-06 15:08:35 +00:00
|
|
|
int CountNumControls() const override
|
|
|
|
{
|
|
|
|
int result = 0;
|
2018-12-30 18:38:02 +00:00
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
for (auto& arg : m_args)
|
|
|
|
result += arg->CountNumControls();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UpdateReferences(ControlEnvironment& env) override
|
|
|
|
{
|
|
|
|
for (auto& arg : m_args)
|
|
|
|
arg->UpdateReferences(env);
|
|
|
|
}
|
2018-12-30 18:38:02 +00:00
|
|
|
|
|
|
|
operator std::string() const override
|
|
|
|
{
|
2019-01-06 15:08:35 +00:00
|
|
|
std::string result = '!' + GetFuncName();
|
|
|
|
|
|
|
|
for (auto& arg : m_args)
|
|
|
|
result += ' ' + static_cast<std::string>(*arg);
|
|
|
|
|
|
|
|
return result;
|
2018-12-30 18:38:02 +00:00
|
|
|
}
|
|
|
|
|
2019-01-09 00:26:36 +00:00
|
|
|
bool SetArguments(std::vector<std::unique_ptr<Expression>>&& args)
|
|
|
|
{
|
|
|
|
m_args = std::move(args);
|
2019-01-06 15:08:35 +00:00
|
|
|
|
2019-01-09 00:26:36 +00:00
|
|
|
return ValidateArguments(m_args);
|
|
|
|
}
|
2019-01-06 15:08:35 +00:00
|
|
|
|
2018-12-30 18:38:02 +00:00
|
|
|
protected:
|
|
|
|
virtual std::string GetFuncName() const = 0;
|
2019-01-09 00:26:36 +00:00
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) = 0;
|
|
|
|
|
|
|
|
Expression& GetArg(u32 number) { return *m_args[number]; }
|
|
|
|
const Expression& GetArg(u32 number) const { return *m_args[number]; }
|
2018-12-30 18:38:02 +00:00
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
private:
|
|
|
|
std::vector<std::unique_ptr<Expression>> m_args;
|
2018-12-30 18:38:02 +00:00
|
|
|
};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-30 18:38:02 +00:00
|
|
|
// TODO: Return an oscillating value to make it apparent something was spelled wrong?
|
2019-01-06 15:08:35 +00:00
|
|
|
class UnknownFunctionExpression : public FunctionExpression
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2018-12-30 18:38:02 +00:00
|
|
|
ControlState GetValue() const override { return 0.0; }
|
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "unknown"; }
|
2018-12-30 18:38:02 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class ToggleExpression : public FunctionExpression
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 1 == args.size();
|
|
|
|
}
|
|
|
|
|
2018-12-30 18:38:02 +00:00
|
|
|
ControlState GetValue() const override
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2019-01-06 15:08:35 +00:00
|
|
|
const ControlState inner_value = GetArg(0).GetValue();
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
if (inner_value < CONDITION_THRESHOLD)
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
|
|
|
m_released = true;
|
|
|
|
}
|
2019-01-06 15:08:35 +00:00
|
|
|
else if (m_released && inner_value > CONDITION_THRESHOLD)
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
|
|
|
m_released = false;
|
|
|
|
m_state ^= true;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2018-12-30 18:38:02 +00:00
|
|
|
|
|
|
|
return m_state;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2018-12-30 18:38:02 +00:00
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "toggle"; }
|
2018-12-30 18:38:02 +00:00
|
|
|
|
|
|
|
mutable bool m_released{};
|
|
|
|
mutable bool m_state{};
|
2013-06-14 03:09:55 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class NotExpression : public FunctionExpression
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 1 == args.size();
|
|
|
|
}
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
ControlState GetValue() const override { return 1.0 - GetArg(0).GetValue(); }
|
|
|
|
void SetValue(ControlState value) override { GetArg(0).SetValue(1.0 - value); }
|
2018-12-30 18:38:02 +00:00
|
|
|
std::string GetFuncName() const override { return ""; }
|
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class SinExpression : public FunctionExpression
|
2018-12-30 19:16:28 +00:00
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 1 == args.size();
|
|
|
|
}
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
ControlState GetValue() const override { return std::sin(GetArg(0).GetValue()); }
|
2018-12-30 19:16:28 +00:00
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "sin"; }
|
2018-12-30 19:16:28 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class TimerExpression : public FunctionExpression
|
2019-01-05 21:31:05 +00:00
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 1 == args.size();
|
|
|
|
}
|
|
|
|
|
2019-01-05 21:31:05 +00:00
|
|
|
ControlState GetValue() const override
|
|
|
|
{
|
|
|
|
const auto now = Clock::now();
|
|
|
|
const auto elapsed = now - m_start_time;
|
|
|
|
|
|
|
|
using FSec = std::chrono::duration<ControlState>;
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
const ControlState val = GetArg(0).GetValue();
|
2019-01-05 21:31:05 +00:00
|
|
|
|
|
|
|
ControlState progress = std::chrono::duration_cast<FSec>(elapsed).count() / val;
|
|
|
|
|
|
|
|
if (std::isinf(progress))
|
|
|
|
{
|
|
|
|
// User configured a 0.0 length timer. Reset the timer and return 0.0.
|
|
|
|
progress = 0.0;
|
|
|
|
m_start_time = now;
|
|
|
|
}
|
|
|
|
else if (progress >= 1.0)
|
|
|
|
{
|
|
|
|
const ControlState reset_count = std::floor(progress);
|
|
|
|
|
|
|
|
m_start_time += std::chrono::duration_cast<Clock::duration>(FSec(val * reset_count));
|
|
|
|
progress -= reset_count;
|
|
|
|
}
|
|
|
|
|
|
|
|
return progress;
|
|
|
|
}
|
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "timer"; }
|
2019-01-05 21:31:05 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
using Clock = std::chrono::steady_clock;
|
|
|
|
mutable Clock::time_point m_start_time = Clock::now();
|
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class IfExpression : public FunctionExpression
|
2018-12-30 23:32:32 +00:00
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 3 == args.size();
|
|
|
|
}
|
|
|
|
|
2018-12-30 23:32:32 +00:00
|
|
|
ControlState GetValue() const override
|
|
|
|
{
|
2019-01-06 15:08:35 +00:00
|
|
|
return (GetArg(0).GetValue() > CONDITION_THRESHOLD) ? GetArg(1).GetValue() :
|
|
|
|
GetArg(2).GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "if"; }
|
2019-01-06 15:08:35 +00:00
|
|
|
};
|
2018-12-30 23:32:32 +00:00
|
|
|
|
2019-01-06 16:03:21 +00:00
|
|
|
class UnaryMinusExpression : public FunctionExpression
|
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
private:
|
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 1 == args.size();
|
|
|
|
}
|
|
|
|
|
2019-01-06 16:03:21 +00:00
|
|
|
ControlState GetValue() const override
|
|
|
|
{
|
|
|
|
// Subtraction for clarity:
|
|
|
|
return 0.0 - GetArg(0).GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "minus"; }
|
2019-01-06 16:03:21 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
class WhileExpression : public FunctionExpression
|
|
|
|
{
|
2019-01-09 00:26:36 +00:00
|
|
|
virtual bool ValidateArguments(const std::vector<std::unique_ptr<Expression>>& args) override
|
|
|
|
{
|
|
|
|
return 2 == args.size();
|
|
|
|
}
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
ControlState GetValue() const override
|
|
|
|
{
|
2018-12-30 23:32:32 +00:00
|
|
|
// Returns 1.0 on successful loop, 0.0 on reps exceeded. Sensible?
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
for (int i = 0; i != LOOP_MAX_REPS; ++i)
|
2018-12-30 23:32:32 +00:00
|
|
|
{
|
2019-01-06 15:08:35 +00:00
|
|
|
// Check condition of 1st argument:
|
|
|
|
const ControlState val = GetArg(0).GetValue();
|
|
|
|
if (val < CONDITION_THRESHOLD)
|
2018-12-30 23:32:32 +00:00
|
|
|
return 1.0;
|
2019-01-06 15:08:35 +00:00
|
|
|
|
|
|
|
// Evaluate 2nd argument:
|
|
|
|
GetArg(1).GetValue();
|
2018-12-30 23:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Exceeded max reps:
|
|
|
|
return 0.0;
|
|
|
|
}
|
2019-01-06 15:08:35 +00:00
|
|
|
|
2018-12-30 23:32:32 +00:00
|
|
|
void SetValue(ControlState value) override {}
|
2019-01-09 02:34:24 +00:00
|
|
|
std::string GetFuncName() const override { return "while"; }
|
2018-12-30 23:32:32 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 15:08:35 +00:00
|
|
|
std::unique_ptr<FunctionExpression> MakeFunctionExpression(std::string name)
|
2018-12-30 18:38:02 +00:00
|
|
|
{
|
2018-12-30 22:35:52 +00:00
|
|
|
if (name.empty())
|
2019-01-06 15:08:35 +00:00
|
|
|
return std::make_unique<NotExpression>();
|
|
|
|
else if ("if" == name)
|
|
|
|
return std::make_unique<IfExpression>();
|
2018-12-30 19:16:28 +00:00
|
|
|
else if ("sin" == name)
|
2019-01-06 15:08:35 +00:00
|
|
|
return std::make_unique<SinExpression>();
|
2019-01-05 21:31:05 +00:00
|
|
|
else if ("timer" == name)
|
2019-01-06 15:08:35 +00:00
|
|
|
return std::make_unique<TimerExpression>();
|
2019-01-05 21:31:05 +00:00
|
|
|
else if ("toggle" == name)
|
2019-01-06 15:08:35 +00:00
|
|
|
return std::make_unique<ToggleExpression>();
|
2018-12-30 23:32:32 +00:00
|
|
|
else if ("while" == name)
|
2019-01-06 15:08:35 +00:00
|
|
|
return std::make_unique<WhileExpression>();
|
2019-01-06 16:03:21 +00:00
|
|
|
else if ("minus" == name)
|
|
|
|
return std::make_unique<UnaryMinusExpression>();
|
2018-12-30 18:38:02 +00:00
|
|
|
else
|
2019-01-06 15:08:35 +00:00
|
|
|
return std::make_unique<UnknownFunctionExpression>();
|
2018-12-30 18:38:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-30 16:37:23 +00:00
|
|
|
class LiteralExpression : public Expression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void SetValue(ControlState value) override
|
|
|
|
{
|
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
|
|
|
int CountNumControls() const override { return 1; }
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
void UpdateReferences(ControlEnvironment&) override
|
2018-12-30 16:37:23 +00:00
|
|
|
{
|
|
|
|
// Nothing needed.
|
|
|
|
}
|
|
|
|
|
2018-12-30 19:16:28 +00:00
|
|
|
operator std::string() const override { return '\'' + GetName() + '\''; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual std::string GetName() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class LiteralReal : public LiteralExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LiteralReal(ControlState value) : m_value(value) {}
|
|
|
|
|
|
|
|
ControlState GetValue() const override { return m_value; }
|
|
|
|
|
|
|
|
std::string GetName() const override { return ValueToString(m_value); }
|
2018-12-30 16:37:23 +00:00
|
|
|
|
|
|
|
private:
|
2018-12-30 19:16:28 +00:00
|
|
|
const ControlState m_value{};
|
2018-12-30 16:37:23 +00:00
|
|
|
};
|
|
|
|
|
2018-12-30 19:16:28 +00:00
|
|
|
std::unique_ptr<LiteralExpression> MakeLiteralExpression(std::string name)
|
|
|
|
{
|
2019-01-05 21:31:05 +00:00
|
|
|
// If TryParse fails we'll just get a Zero.
|
|
|
|
ControlState val{};
|
|
|
|
TryParse(name, &val);
|
|
|
|
return std::make_unique<LiteralReal>(val);
|
2018-12-30 19:16:28 +00:00
|
|
|
}
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
class VariableExpression : public Expression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
VariableExpression(std::string name) : m_name(name) {}
|
|
|
|
|
|
|
|
ControlState GetValue() const override { return *m_value_ptr; }
|
|
|
|
|
|
|
|
void SetValue(ControlState value) override { *m_value_ptr = value; }
|
|
|
|
|
|
|
|
int CountNumControls() const override { return 1; }
|
|
|
|
|
|
|
|
void UpdateReferences(ControlEnvironment& env) override
|
|
|
|
{
|
|
|
|
m_value_ptr = env.GetVariablePtr(m_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
operator std::string() const override { return '$' + m_name; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
const std::string m_name;
|
|
|
|
ControlState* m_value_ptr{};
|
|
|
|
};
|
|
|
|
|
2017-06-08 01:29:02 +00:00
|
|
|
// This class proxies all methods to its either left-hand child if it has bound controls, or its
|
|
|
|
// right-hand child. Its intended use is for supporting old-style barewords expressions.
|
|
|
|
class CoalesceExpression : public Expression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CoalesceExpression(std::unique_ptr<Expression>&& lhs, std::unique_ptr<Expression>&& rhs)
|
|
|
|
: m_lhs(std::move(lhs)), m_rhs(std::move(rhs))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlState GetValue() const override { return GetActiveChild()->GetValue(); }
|
2018-12-22 17:17:05 +00:00
|
|
|
void SetValue(ControlState value) override { GetActiveChild()->SetValue(value); }
|
2017-06-08 01:29:02 +00:00
|
|
|
|
|
|
|
int CountNumControls() const override { return GetActiveChild()->CountNumControls(); }
|
|
|
|
operator std::string() const override
|
|
|
|
{
|
|
|
|
return "Coalesce(" + static_cast<std::string>(*m_lhs) + ", " +
|
|
|
|
static_cast<std::string>(*m_rhs) + ')';
|
|
|
|
}
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
void UpdateReferences(ControlEnvironment& env) override
|
2017-06-08 01:48:17 +00:00
|
|
|
{
|
2018-12-30 22:06:29 +00:00
|
|
|
m_lhs->UpdateReferences(env);
|
|
|
|
m_rhs->UpdateReferences(env);
|
2017-06-08 01:48:17 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 01:29:02 +00:00
|
|
|
private:
|
|
|
|
const std::unique_ptr<Expression>& GetActiveChild() const
|
|
|
|
{
|
|
|
|
return m_lhs->CountNumControls() > 0 ? m_lhs : m_rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<Expression> m_lhs;
|
|
|
|
std::unique_ptr<Expression> m_rhs;
|
|
|
|
};
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
std::shared_ptr<Device> ControlEnvironment::FindDevice(ControlQualifier qualifier) const
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
if (qualifier.has_device)
|
|
|
|
return container.FindDevice(qualifier.device_qualifier);
|
|
|
|
else
|
|
|
|
return container.FindDevice(default_device);
|
|
|
|
}
|
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
Device::Input* ControlEnvironment::FindInput(ControlQualifier qualifier) const
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2016-06-25 19:46:39 +00:00
|
|
|
const std::shared_ptr<Device> device = FindDevice(qualifier);
|
2013-06-26 20:54:48 +00:00
|
|
|
if (!device)
|
2014-03-09 20:14:26 +00:00
|
|
|
return nullptr;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-30 22:06:29 +00:00
|
|
|
return device->FindInput(qualifier.control_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
Device::Output* ControlEnvironment::FindOutput(ControlQualifier qualifier) const
|
|
|
|
{
|
|
|
|
const std::shared_ptr<Device> device = FindDevice(qualifier);
|
|
|
|
if (!device)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return device->FindOutput(qualifier.control_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlState* ControlEnvironment::GetVariablePtr(const std::string& name)
|
|
|
|
{
|
|
|
|
return &m_variables[name];
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 22:08:55 +00:00
|
|
|
struct ParseResult
|
|
|
|
{
|
2017-06-08 00:30:07 +00:00
|
|
|
ParseResult(ParseStatus status_, std::unique_ptr<Expression>&& expr_ = {})
|
2017-06-07 22:29:00 +00:00
|
|
|
: status(status_), expr(std::move(expr_))
|
2017-06-07 22:08:55 +00:00
|
|
|
{
|
|
|
|
}
|
2017-06-07 22:29:00 +00:00
|
|
|
|
2017-06-07 22:08:55 +00:00
|
|
|
ParseStatus status;
|
2017-06-08 00:30:07 +00:00
|
|
|
std::unique_ptr<Expression> expr;
|
2017-06-07 22:08:55 +00:00
|
|
|
};
|
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
class Parser
|
|
|
|
{
|
|
|
|
public:
|
2017-06-08 01:48:17 +00:00
|
|
|
explicit Parser(std::vector<Token> tokens_) : tokens(tokens_) { m_it = tokens.begin(); }
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult Parse()
|
|
|
|
{
|
|
|
|
ParseResult result = ParseToplevel();
|
|
|
|
|
|
|
|
if (Peek().type == TOK_EOF)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
return {ParseStatus::SyntaxError};
|
|
|
|
}
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
private:
|
2019-01-09 00:26:36 +00:00
|
|
|
struct FunctionArguments
|
|
|
|
{
|
|
|
|
FunctionArguments(ParseStatus status_, std::vector<std::unique_ptr<Expression>>&& args_ = {})
|
|
|
|
: status(status_), args(std::move(args_))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ParseStatus status;
|
|
|
|
std::vector<std::unique_ptr<Expression>> args;
|
|
|
|
};
|
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
std::vector<Token> tokens;
|
|
|
|
std::vector<Token>::iterator m_it;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
Token Chew() { return *m_it++; }
|
|
|
|
Token Peek() { return *m_it; }
|
2019-01-09 00:26:36 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
bool Expects(TokenType type)
|
|
|
|
{
|
|
|
|
Token tok = Chew();
|
|
|
|
return tok.type == type;
|
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-01-09 00:26:36 +00:00
|
|
|
FunctionArguments ParseFunctionArguments()
|
|
|
|
{
|
|
|
|
if (!Expects(TOK_LPAREN))
|
|
|
|
return {ParseStatus::SyntaxError};
|
|
|
|
|
|
|
|
// Check for empty argument list:
|
|
|
|
if (TOK_RPAREN == Peek().type)
|
|
|
|
return {ParseStatus::Successful};
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<Expression>> args;
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
// Read one argument.
|
|
|
|
// Grab an expression, but stop at comma.
|
2019-01-09 00:36:58 +00:00
|
|
|
auto arg = ParseBinary(BinaryOperatorPrecedence(TOK_COMMA));
|
2019-01-09 00:26:36 +00:00
|
|
|
if (ParseStatus::Successful != arg.status)
|
|
|
|
return {ParseStatus::SyntaxError};
|
|
|
|
|
|
|
|
args.emplace_back(std::move(arg.expr));
|
|
|
|
|
|
|
|
// Right paren is the end of our arguments.
|
|
|
|
const Token tok = Chew();
|
|
|
|
if (TOK_RPAREN == tok.type)
|
|
|
|
return {ParseStatus::Successful, std::move(args)};
|
|
|
|
|
|
|
|
// Comma before the next argument.
|
|
|
|
if (TOK_COMMA != tok.type)
|
|
|
|
return {ParseStatus::SyntaxError};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult ParseAtom(const Token& tok)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
switch (tok.type)
|
|
|
|
{
|
2019-01-06 15:08:35 +00:00
|
|
|
case TOK_FUNCTION:
|
2019-01-05 21:31:05 +00:00
|
|
|
{
|
2019-01-06 15:08:35 +00:00
|
|
|
auto func = MakeFunctionExpression(tok.data);
|
2019-01-09 00:26:36 +00:00
|
|
|
auto args = ParseFunctionArguments();
|
|
|
|
|
|
|
|
if (ParseStatus::Successful != args.status)
|
|
|
|
return {ParseStatus::SyntaxError};
|
|
|
|
|
|
|
|
if (!func->SetArguments(std::move(args.args)))
|
|
|
|
return {ParseStatus::SyntaxError};
|
2019-01-06 15:08:35 +00:00
|
|
|
|
|
|
|
return {ParseStatus::Successful, std::move(func)};
|
2019-01-05 21:31:05 +00:00
|
|
|
}
|
2013-06-14 03:09:55 +00:00
|
|
|
case TOK_CONTROL:
|
2018-12-30 16:37:23 +00:00
|
|
|
{
|
|
|
|
ControlQualifier cq;
|
|
|
|
cq.FromString(tok.data);
|
|
|
|
return {ParseStatus::Successful, std::make_unique<ControlExpression>(cq)};
|
|
|
|
}
|
|
|
|
case TOK_LITERAL:
|
|
|
|
{
|
2018-12-30 19:16:28 +00:00
|
|
|
return {ParseStatus::Successful, MakeLiteralExpression(tok.data)};
|
2018-12-30 16:37:23 +00:00
|
|
|
}
|
2018-12-30 22:06:29 +00:00
|
|
|
case TOK_VARIABLE:
|
|
|
|
{
|
|
|
|
return {ParseStatus::Successful, std::make_unique<VariableExpression>(tok.data)};
|
|
|
|
}
|
2013-06-14 03:09:55 +00:00
|
|
|
case TOK_LPAREN:
|
2019-01-05 21:31:05 +00:00
|
|
|
{
|
2019-01-09 00:36:58 +00:00
|
|
|
return ParseParens();
|
2019-01-05 21:31:05 +00:00
|
|
|
}
|
2019-01-06 16:03:21 +00:00
|
|
|
case TOK_SUB:
|
|
|
|
{
|
|
|
|
// An atom was expected but we got a subtraction symbol.
|
|
|
|
// Interpret it as a unary minus function.
|
2019-01-09 00:36:58 +00:00
|
|
|
return ParseAtom(Token(TOK_FUNCTION, "minus"));
|
2019-01-06 16:03:21 +00:00
|
|
|
}
|
2013-06-14 03:09:55 +00:00
|
|
|
default:
|
2017-06-07 22:08:55 +00:00
|
|
|
return {ParseStatus::SyntaxError};
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-31 01:50:20 +00:00
|
|
|
static bool IsBinaryToken(TokenType type)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2018-12-30 22:29:48 +00:00
|
|
|
return type >= TOK_BINARY_OPS_BEGIN && type < TOK_BINARY_OPS_END;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-31 01:50:20 +00:00
|
|
|
static int BinaryOperatorPrecedence(TokenType type)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2018-12-31 01:50:20 +00:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case TOK_MUL:
|
|
|
|
case TOK_DIV:
|
|
|
|
case TOK_MOD:
|
|
|
|
return 1;
|
|
|
|
case TOK_ADD:
|
|
|
|
case TOK_SUB:
|
|
|
|
return 2;
|
|
|
|
case TOK_GTHAN:
|
|
|
|
case TOK_LTHAN:
|
|
|
|
return 3;
|
|
|
|
case TOK_AND:
|
|
|
|
return 4;
|
|
|
|
case TOK_OR:
|
|
|
|
return 5;
|
|
|
|
case TOK_ASSIGN:
|
|
|
|
return 6;
|
|
|
|
case TOK_COMMA:
|
|
|
|
return 7;
|
|
|
|
default:
|
|
|
|
assert(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult ParseBinary(int precedence = 999)
|
2018-12-31 01:50:20 +00:00
|
|
|
{
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult lhs = ParseAtom(Chew());
|
2018-12-31 01:50:20 +00:00
|
|
|
|
|
|
|
if (lhs.status == ParseStatus::SyntaxError)
|
|
|
|
return lhs;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-31 01:50:20 +00:00
|
|
|
std::unique_ptr<Expression> expr = std::move(lhs.expr);
|
|
|
|
|
|
|
|
// TODO: handle LTR/RTL associativity?
|
|
|
|
while (IsBinaryToken(Peek().type) && BinaryOperatorPrecedence(Peek().type) < precedence)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2018-12-31 01:50:20 +00:00
|
|
|
const Token tok = Chew();
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult rhs = ParseBinary(BinaryOperatorPrecedence(tok.type));
|
2018-12-31 01:50:20 +00:00
|
|
|
if (rhs.status == ParseStatus::SyntaxError)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
2018-12-31 01:50:20 +00:00
|
|
|
return rhs;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2018-12-31 01:50:20 +00:00
|
|
|
expr = std::make_unique<BinaryExpression>(tok.type, std::move(expr), std::move(rhs.expr));
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-07 22:29:00 +00:00
|
|
|
return {ParseStatus::Successful, std::move(expr)};
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult ParseParens()
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
// lparen already chewed
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult result = ParseToplevel();
|
2017-06-07 22:08:55 +00:00
|
|
|
if (result.status != ParseStatus::Successful)
|
|
|
|
return result;
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2013-06-14 03:09:55 +00:00
|
|
|
if (!Expects(TOK_RPAREN))
|
|
|
|
{
|
2017-06-07 22:08:55 +00:00
|
|
|
return {ParseStatus::SyntaxError};
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-07 22:08:55 +00:00
|
|
|
return result;
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2019-01-09 00:36:58 +00:00
|
|
|
ParseResult ParseToplevel() { return ParseBinary(); }
|
2018-12-31 01:50:20 +00:00
|
|
|
}; // namespace ExpressionParser
|
2013-06-14 03:09:55 +00:00
|
|
|
|
2017-06-08 01:48:17 +00:00
|
|
|
static ParseResult ParseComplexExpression(const std::string& str)
|
2013-06-14 03:09:55 +00:00
|
|
|
{
|
|
|
|
Lexer l(str);
|
|
|
|
std::vector<Token> tokens;
|
2017-06-07 21:53:41 +00:00
|
|
|
ParseStatus tokenize_status = l.Tokenize(tokens);
|
|
|
|
if (tokenize_status != ParseStatus::Successful)
|
2017-06-08 00:30:07 +00:00
|
|
|
return {tokenize_status};
|
2016-06-24 08:43:46 +00:00
|
|
|
|
2017-06-08 07:23:38 +00:00
|
|
|
return Parser(std::move(tokens)).Parse();
|
2013-06-14 03:09:55 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 01:48:17 +00:00
|
|
|
static std::unique_ptr<Expression> ParseBarewordExpression(const std::string& str)
|
2013-06-27 00:19:23 +00:00
|
|
|
{
|
|
|
|
ControlQualifier qualifier;
|
|
|
|
qualifier.control_name = str;
|
|
|
|
qualifier.has_device = false;
|
|
|
|
|
2017-06-08 01:48:17 +00:00
|
|
|
return std::make_unique<ControlExpression>(qualifier);
|
2017-06-08 01:29:02 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 01:48:17 +00:00
|
|
|
std::pair<ParseStatus, std::unique_ptr<Expression>> ParseExpression(const std::string& str)
|
2017-06-08 01:29:02 +00:00
|
|
|
{
|
|
|
|
if (StripSpaces(str).empty())
|
|
|
|
return std::make_pair(ParseStatus::EmptyExpression, nullptr);
|
|
|
|
|
2017-06-08 01:48:17 +00:00
|
|
|
auto bareword_expr = ParseBarewordExpression(str);
|
|
|
|
ParseResult complex_result = ParseComplexExpression(str);
|
2017-06-08 01:29:02 +00:00
|
|
|
|
|
|
|
if (complex_result.status != ParseStatus::Successful)
|
2014-08-30 20:44:28 +00:00
|
|
|
{
|
2017-06-08 01:29:02 +00:00
|
|
|
return std::make_pair(complex_result.status, std::move(bareword_expr));
|
2013-06-27 00:19:23 +00:00
|
|
|
}
|
|
|
|
|
2017-06-08 01:29:02 +00:00
|
|
|
auto combined_expr = std::make_unique<CoalesceExpression>(std::move(bareword_expr),
|
|
|
|
std::move(complex_result.expr));
|
|
|
|
return std::make_pair(complex_result.status, std::move(combined_expr));
|
2013-06-27 00:19:23 +00:00
|
|
|
}
|
2019-06-17 20:39:24 +00:00
|
|
|
} // namespace ciface::ExpressionParser
|