/**
* Automatically-generated file. Do not edit!
*/
#include "core_math_lt.h"
#include "error.h"
#include <eswb/api.h>
#include <eswb/topic_proclaiming_tree.h>
#include <eswb/errors.h>
int core_math_lt_interface_inputs_init(
core_math_lt_interface_t *interface,
const func_conn_spec_t *conn_spec,
eswb_topic_descr_t mounting_td
)
{
eswb_rv_t rv;
int errcnt_no_topic = 0;
int errcnt_no_input = 0;
const char *topic_path_in_input0 = fspec_find_path2connect(conn_spec,"input0");
const char *topic_path_in_input1 = fspec_find_path2connect(conn_spec,"input1");
// Connecting mandatory input "input0"
if (topic_path_in_input0 != NULL) {
rv = eswb_connect_nested(mounting_td, topic_path_in_input0, &interface->eswb_descriptors.in_input0);
if(rv != eswb_e_ok) {
error("failed connect input \"input0\" to topic \"%s\": %s", topic_path_in_input0, eswb_strerror(rv));
errcnt_no_topic++;
}
} else {
error("mandatory input \"input0\" is not speicifed");
errcnt_no_input++;
}
// Connecting mandatory input "input1"
if (topic_path_in_input1 != NULL) {
rv = eswb_connect_nested(mounting_td, topic_path_in_input1, &interface->eswb_descriptors.in_input1);
if(rv != eswb_e_ok) {
error("failed connect input \"input1\" to topic \"%s\": %s", topic_path_in_input1, eswb_strerror(rv));
errcnt_no_topic++;
}
} else {
error("mandatory input \"input1\" is not speicifed");
errcnt_no_input++;
}
if ((errcnt_no_input > 0) || (errcnt_no_topic > 0)) {
if (errcnt_no_input > errcnt_no_topic) {
return fspec_rv_no_input;
} else {
return fspec_rv_no_topic;
}
}
return fspec_rv_ok;
}
fspec_rv_t core_math_lt_interface_inputs_update(core_math_lt_interface_t *interface)
{
eswb_rv_t rv;
rv = eswb_read(interface->eswb_descriptors.in_input0, &interface->i.input0);
if(rv != eswb_e_ok) {
/*FIXME nothing to do yet*/
}
rv = eswb_read(interface->eswb_descriptors.in_input1, &interface->i.input1);
if(rv != eswb_e_ok) {
/*FIXME nothing to do yet*/
}
return 0;
}
fspec_rv_t core_math_lt_interface_outputs_init(
core_math_lt_interface_t *interface,
const func_conn_spec_t *conn_spec,
eswb_topic_descr_t mounting_td,
const char *func_name
)
{
TOPIC_TREE_CONTEXT_LOCAL_DEFINE(cntx, 2);
core_math_lt_outputs_t out;
eswb_rv_t rv;
topic_proclaiming_tree_t *rt = usr_topic_set_struct(cntx, out, func_name);
usr_topic_add_struct_child(cntx, rt, core_math_lt_outputs_t, output, "output", tt_int32);
rv = eswb_proclaim_tree(mounting_td, rt, cntx->t_num, &interface->eswb_descriptors.out_all);
if (rv != eswb_e_ok) {
return fspec_rv_publish_err;
}
return fspec_rv_ok;
}
fspec_rv_t core_math_lt_interface_outputs_update(core_math_lt_interface_t *interface)
{
eswb_rv_t rv;
rv = eswb_update_topic(interface->eswb_descriptors.out_all, &interface->o);
if (rv != eswb_e_ok) {
return 1;
}
return 0;
}
void core_math_lt_interface_update(core_math_lt_interface_t *interface)
{
core_math_lt_interface_inputs_update(interface);
core_math_lt_exec(&interface->i, &interface->o);
core_math_lt_interface_outputs_update(interface);
}
fspec_rv_t core_math_lt_call_init_inputs(void *dh, const func_conn_spec_t *conn_spec, eswb_topic_descr_t mounting_td)
{
core_math_lt_interface_t *interface = (core_math_lt_interface_t*) dh;
return core_math_lt_interface_inputs_init(interface, conn_spec, mounting_td);
}
fspec_rv_t core_math_lt_call_init_outputs(
void *dh,
const func_conn_spec_t *conn_spec,
eswb_topic_descr_t mounting_td,
const char *func_name
)
{
core_math_lt_interface_t *interface = (core_math_lt_interface_t*) dh;
return core_math_lt_interface_outputs_init(interface, conn_spec, mounting_td, func_name);
}
void core_math_lt_call_exec(void *dh)
{
core_math_lt_interface_t *interface = (core_math_lt_interface_t*) dh;
core_math_lt_interface_update(interface);
}