libabacus/include/libabacus.h

92 lines
3.0 KiB
C
Raw Normal View History

2018-02-10 13:52:33 -08:00
#ifndef LIBABACUS_H
#define LIBABACUS_H
#include "ht.h"
#include "lexer.h"
#include "table.h"
2018-02-11 22:23:02 -08:00
#include "parser.h"
2018-02-11 22:32:42 -08:00
#include "result.h"
#include "custom.h"
2018-02-10 13:52:33 -08:00
/**
* The main struct of libabacus,
* which essentially holds all the informatiom
* for the library's state and operation.
2018-02-10 13:52:33 -08:00
*/
struct libab_s {
/**
* The lexer used to convert a string
* to tokens.
*/
libab_lexer lexer;
2018-02-11 22:23:02 -08:00
/**
* The parser used to convert
* tokens to a tree.
*/
libab_parser parser;
/**
* The table used to store top-level
* things like functions and operators.
*/
libab_table table;
2018-02-10 13:52:33 -08:00
};
typedef struct libab_s libab;
/**
* Initializes the libabacus struct as well
* as all its internal structures such as the lexer.
* @param ab the libabacus instance used to keep state.
* @return the result of the initialization.
*/
libab_result libab_init(libab* ab);
/**
* Registers an operator with libabacus.
* @param ab the libabacus instance to reigster the operator with.
* @param op the operator string to register.
* @param precedence the precedence of the operator.
* @param associativity the associativity of the operator.
* @param type the type of this operator.
* @param func the function that describes the functionality of the operator.
* @return the result of the initialization.
*/
libab_result libab_register_operator_infix(libab* ab, const char* op, int precedence, int associativity, const char* type, libab_function_ptr func);
/**
* Registers an operation with libabacus that appears
* before its operand.
* @param ab the libabacus instance to register the operator with.
* @param op the operator string to register.
* @param type the type of this operator.
* @param func the function that describes the functionality of the operator.
* @return the result of the registration.
*/
libab_result libab_register_operator_prefix(libab* ab, const char* op, const char* type, libab_function_ptr func);
/**
* Registers an operation with libabacus that appears
* after its operand.
* @param ab the libabacus instance to register the operator with.
* @param op the operator string to register.
* @param type the type of this operator.
* @param func the function that describes the functionality of the operator.
* @return the result of the registration.
*/
libab_result libab_register_operator_postfix(libab* ab, const char* op, const char* type, libab_function_ptr func);
/**
* Registers a function with libabacus.
* @param ab the libabacus instance used to keep state.
* @param name the name of the function.
* @param type the type of this operator.
* @param func the function that describes the functionality of the function.
* @return the result of the initialization.
*/
libab_result libab_register_function(libab* ab, const char* name, const char* type, libab_function_ptr func);
/**
* Releases all the resources allocated by libabacus.
* @param ab the libabacus instance to release.
* @return the result of the initialization.
*/
libab_result libab_free(libab* ab);
2018-02-10 13:52:33 -08:00
#endif