bootstrap/include/evaluator.h

34 lines
907 B
C
Raw Permalink Normal View History

/**
@file
2023-11-25 22:25:01 +00:00
@brief `spec.json` and `runner` evaluator.
*/
#ifndef _BOOTSTRAP_EVALUATOR_H
#define _BOOTSTRAP_EVALUATOR_H
#include "config.h"
#include "error.h"
#include "validator.h"
/**
2023-11-25 22:25:01 +00:00
@brief Run the `runner` file found in the configured spec.
@param config
A reference to the parameters describing the desired spec.
@param fields
2023-11-25 22:25:01 +00:00
The list of prompts to have answered by the user prior to executing `runner`.
Responses are included as environment variables in the invoked subshell.
@param error
The out parameter containing a possible error. Set to a null pointer if no
error occurs. Otherwise set to an @ref Error instance.
@return
If @p error is set, returns `EXIT_FAILURE`. Otherwise returns the exit code
2023-11-25 22:25:01 +00:00
returned by the `runner`.
*/
2023-11-25 22:25:01 +00:00
int evaluate_runner(
const struct Config *const config,
2023-11-25 17:37:41 +00:00
const struct DynArray *const fields,
struct Error **error
);
#endif /* _BOOTSTRAP_EVALUATOR_H */