tinyexpr.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // SPDX-License-Identifier: Zlib
  2. /*
  3. * TINYEXPR - Tiny recursive descent parser and evaluation engine in C
  4. *
  5. * Copyright (c) 2015-2020 Lewis Van Winkle
  6. *
  7. * http://CodePlea.com
  8. *
  9. * This software is provided 'as-is', without any express or implied
  10. * warranty. In no event will the authors be held liable for any damages
  11. * arising from the use of this software.
  12. *
  13. * Permission is granted to anyone to use this software for any purpose,
  14. * including commercial applications, and to alter it and redistribute it
  15. * freely, subject to the following restrictions:
  16. *
  17. * 1. The origin of this software must not be misrepresented; you must not
  18. * claim that you wrote the original software. If you use this software
  19. * in a product, an acknowledgement in the product documentation would be
  20. * appreciated but is not required.
  21. * 2. Altered source versions must be plainly marked as such, and must not be
  22. * misrepresented as being the original software.
  23. * 3. This notice may not be removed or altered from any source distribution.
  24. */
  25. #ifndef TINYEXPR_H
  26. #define TINYEXPR_H
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. typedef struct te_expr {
  31. int type;
  32. union {double value; const double *bound; const void *function;};
  33. void *parameters[1];
  34. } te_expr;
  35. enum {
  36. TE_VARIABLE = 0,
  37. TE_FUNCTION0 = 8, TE_FUNCTION1, TE_FUNCTION2, TE_FUNCTION3,
  38. TE_FUNCTION4, TE_FUNCTION5, TE_FUNCTION6, TE_FUNCTION7,
  39. TE_CLOSURE0 = 16, TE_CLOSURE1, TE_CLOSURE2, TE_CLOSURE3,
  40. TE_CLOSURE4, TE_CLOSURE5, TE_CLOSURE6, TE_CLOSURE7,
  41. TE_FLAG_PURE = 32
  42. };
  43. typedef struct te_variable {
  44. const char *name;
  45. const void *address;
  46. int type;
  47. void *context;
  48. } te_variable;
  49. /* Parses the input expression, evaluates it, and frees it. */
  50. /* Returns NaN on error. */
  51. double te_interp(const char *expression, int *error);
  52. /* Parses the input expression and binds variables. */
  53. /* Returns NULL on error. */
  54. te_expr *te_compile(const char *expression, const te_variable *variables, int var_count, int *error);
  55. /* Evaluates the expression. */
  56. double te_eval(const te_expr *n);
  57. /* Prints debugging information on the syntax tree. */
  58. void te_print(const te_expr *n);
  59. /* Frees the expression. */
  60. /* This is safe to call on NULL pointers. */
  61. void te_free(te_expr *n);
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif /*TINYEXPR_H*/