#ifndef LIBABACUS_CUSTOM_H #define LIBABACUS_CUSTOM_H #include "parsetype.h" #include "tree.h" #include "ref_trie.h" /** * A function pointer that is called * to execute a certain type of function. */ typedef void (*libab_function_ptr)(); /** * The variant of the operator that * has been registered with libabacus. */ enum libab_operator_variant_e { OPERATOR_PREFIX, OPERATOR_INFIX, OPERATOR_POSTFIX }; /** * The variant of the implementation of a behavior. */ enum libab_behavior_variant_e { BIMPL_INTERNAL, BIMPL_TREE }; /** * A struct that represents the implementation of a behavior. */ struct libab_behavior_impl_s { /** * The variant of this implementation. */ enum libab_behavior_variant_e variant; union { /** * The internal function used for an internal implementation. */ libab_function_ptr internal; /** * The tree-based implementation. */ libab_tree* tree; } data_u; }; /** * The common information * that both operators and functions shared. */ struct libab_behavior_s { /** * The implementation of this behavior. */ struct libab_behavior_impl_s impl; }; /** * A struct that holds informatiion * about an operator that has been * registered with libabacus. */ struct libab_operator_s { /** * The type of the operator (infix, prefix, postfix). * Corresponds to token types associated with * each operator. */ enum libab_operator_variant_e variant; /** * The type of this operator. */ libab_ref type; /** * The precedence of the operator. */ int precedence; /** * The associativity of the operator. */ int associativity; /** * The behavior of this operator. */ struct libab_behavior_s behavior; }; /** * A struct that holds information * about an function that has been * registered with libabacus. */ struct libab_function_s { /** * The behavior of this function. */ struct libab_behavior_s behavior; }; typedef enum libab_operator_variant_e libab_operator_variant; typedef enum libab_behavior_variant_e libab_behavior_variant; typedef struct libab_behavior_impl_s libab_behavior_impl; typedef struct libab_behavior_s libab_behavior; typedef struct libab_operator_s libab_operator; typedef struct libab_function_s libab_function; /** * Initializes a behavior that uses an internal function. * @param behavior the behavior to initialize. * @param type the type of the behavior. * @param func the function that this behavior calls. */ void libab_behavior_init_internal(libab_behavior* behavior, libab_function_ptr func); /** * Initializes a behavior that uses a tree that has been * parsed from the user. * @param behavior the behavior to initialize. * @param type the type of the behavior. * @param tree the tree that this behavior uses. */ void libab_behavior_init_tree(libab_behavior* behavior, libab_tree* tree); /** * Frees the given behavior. * @param behavior the behavior to free. */ void libab_behavior_free(libab_behavior* behavior); /** * Initializes an operator with the given info. * @param op the operator to initialize. * @param variant the variant of the operator (infix, prefix, etc) * @param precedence the precedence of the operator. * @param associativity the associativity (left = -1, right = 1) of the operator. * @param type the type of the operator. * @param func the function used to implement the operator. */ void libab_operator_init(libab_operator* op, libab_operator_variant variant, int precedence, int associativity, libab_ref* type, libab_function_ptr func); /** * Frees the given operator. * @param op the operator to free. */ void libab_operator_free(libab_operator* op); /** * Initializes a function with the given internal behavior. * @param function the function to initialize. * @param type the type of the function. * @param fun the function implementation. * @return the result of the initialization. */ libab_result libab_function_init_internal(libab_function* function, libab_function_ptr fun); /** * Initializes a function with the given tree behavior. * @param function the function to initialize. * @param type the type of the function. * @param tree the tree that represents the function's behavior. * @return the result of the initialization. */ libab_result libab_function_init_tree(libab_function* function, libab_tree* tree); /** * Frees the given function. * @param fun the function to free. */ void libab_function_free(libab_function* fun); #endif