62 lines
1.6 KiB
C
62 lines
1.6 KiB
C
#include <bshell/ast.h>
|
|
#include <bshell/parse/lex.h>
|
|
|
|
static enum bshell_status collect_children(
|
|
struct bshell_ast_node *node,
|
|
struct bshell_ast_iterator *it)
|
|
{
|
|
struct bshell_redirection_ast_node *redirection
|
|
= (struct bshell_redirection_ast_node *)node;
|
|
|
|
if (redirection->n_out_path_expr) {
|
|
bshell_ast_iterator_enqueue(it, redirection->n_out_path_expr);
|
|
}
|
|
|
|
return BSHELL_SUCCESS;
|
|
}
|
|
|
|
static void to_string(const struct bshell_ast_node *node, fx_bstr *out)
|
|
{
|
|
struct bshell_redirection_ast_node *redirection
|
|
= (struct bshell_redirection_ast_node *)node;
|
|
fx_bstr_write_fmt(out, NULL, "&%u", redirection->n_in);
|
|
|
|
if (redirection->n_append) {
|
|
fx_bstr_write_fmt(out, NULL, " >>");
|
|
} else {
|
|
fx_bstr_write_fmt(out, NULL, " >");
|
|
}
|
|
|
|
if (redirection->n_out_is_fd) {
|
|
fx_bstr_write_fmt(out, NULL, " &");
|
|
} else {
|
|
fx_bstr_write_fmt(out, NULL, " ");
|
|
}
|
|
|
|
if (redirection->n_out_is_expr) {
|
|
fx_bstr_write_fmt(out, NULL, "<expr>");
|
|
} else if (redirection->n_out_path) {
|
|
fx_bstr_write_fmt(out, NULL, "'%s'", redirection->n_out_path);
|
|
} else {
|
|
fx_bstr_write_fmt(out, NULL, "%u", redirection->n_out);
|
|
}
|
|
}
|
|
|
|
static enum bshell_status cleanup(struct bshell_ast_node *node)
|
|
{
|
|
struct bshell_redirection_ast_node *v
|
|
= (struct bshell_redirection_ast_node *)node;
|
|
if (v->n_out_tok) {
|
|
bshell_lex_token_destroy(v->n_out_tok);
|
|
}
|
|
return BSHELL_SUCCESS;
|
|
}
|
|
|
|
struct bshell_ast_node_definition redirection_bshell_ast_node = {
|
|
.def_id = BSHELL_AST_REDIRECTION,
|
|
.def_node_size = sizeof(struct bshell_redirection_ast_node),
|
|
.def_collect_children = collect_children,
|
|
.def_to_string = to_string,
|
|
.def_cleanup = cleanup,
|
|
};
|