2024-04-22 20:02:40 +00:00
|
|
|
#ifndef cwFlowNet_h
|
|
|
|
#define cwFlowNet_h
|
|
|
|
|
|
|
|
namespace cw
|
|
|
|
{
|
|
|
|
namespace flow
|
|
|
|
{
|
|
|
|
rc_t network_create( flow_t* p,
|
2024-09-16 17:43:52 +00:00
|
|
|
const object_t* subnetCfgA, // subnetCfgA[subNetCfgN] per subnet cfg record
|
|
|
|
network_t& net, // Network object to be filled with new proc instances
|
|
|
|
variable_t* proxyVarL, //
|
|
|
|
unsigned polyCnt = 1 // Count of networks to create
|
2024-04-22 20:02:40 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
rc_t network_destroy( network_t& net );
|
|
|
|
|
|
|
|
const object_t* find_network_preset( const network_t& net, const char* presetLabel );
|
|
|
|
|
2024-09-16 12:18:05 +00:00
|
|
|
rc_t exec_cycle( network_t& net, unsigned proc_idx=0, unsigned proc_cnt=kInvalidCnt );
|
2024-04-22 20:02:40 +00:00
|
|
|
|
|
|
|
|
2024-05-06 19:46:12 +00:00
|
|
|
rc_t get_variable( network_t& net, const char* inst_label, const char* var_label, unsigned chIdx, proc_t*& instPtrRef, variable_t*& varPtrRef );
|
2024-04-22 20:02:40 +00:00
|
|
|
|
|
|
|
template< typename T >
|
|
|
|
rc_t set_variable_value( network_t& net, const char* inst_label, const char* var_label, unsigned chIdx, T value )
|
|
|
|
{
|
|
|
|
rc_t rc = kOkRC;
|
2024-05-06 19:46:12 +00:00
|
|
|
proc_t* inst = nullptr;
|
2024-04-22 20:02:40 +00:00
|
|
|
variable_t* var = nullptr;
|
|
|
|
|
|
|
|
// get the variable
|
|
|
|
if((rc = get_variable(net,inst_label,var_label,chIdx,inst,var)) != kOkRC )
|
|
|
|
goto errLabel;
|
|
|
|
|
|
|
|
// set the variable value
|
|
|
|
if((rc = var_set( inst, var->vid, chIdx, value )) != kOkRC )
|
|
|
|
{
|
|
|
|
rc = cwLogError(kOpFailRC,"The variable set failed on instance:'%s' variable:'%s'.",cwStringNullGuard(inst_label),cwStringNullGuard(var_label));
|
|
|
|
goto errLabel;
|
|
|
|
}
|
|
|
|
|
|
|
|
errLabel:
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
template< typename T >
|
|
|
|
rc_t get_variable_value( network_t& net, const char* inst_label, const char* var_label, unsigned chIdx, T& valueRef )
|
|
|
|
{
|
|
|
|
rc_t rc = kOkRC;
|
2024-05-06 19:46:12 +00:00
|
|
|
proc_t* inst = nullptr;
|
2024-04-22 20:02:40 +00:00
|
|
|
variable_t* var = nullptr;
|
|
|
|
|
|
|
|
// get the variable
|
|
|
|
if((rc = get_variable(net,inst_label,var_label,chIdx,inst,var)) != kOkRC )
|
|
|
|
goto errLabel;
|
|
|
|
|
|
|
|
// get the variable value
|
|
|
|
if((rc = var_get( inst, var->vid, chIdx, valueRef )) != kOkRC )
|
|
|
|
{
|
|
|
|
rc = cwLogError(kOpFailRC,"The variable get failed on instance:'%s' variable:'%s'.",cwStringNullGuard(inst_label),cwStringNullGuard(var_label));
|
|
|
|
goto errLabel;
|
|
|
|
}
|
|
|
|
|
|
|
|
errLabel:
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2024-05-03 13:21:08 +00:00
|
|
|
// 'proc_label_sfx_id' is the proc label_sfx_id to be used to identify all proc's which will
|
|
|
|
// be updated by the preset application. This is used to identify the set of procs to be updated
|
|
|
|
// for 'poly' networks.
|
2024-05-24 20:36:43 +00:00
|
|
|
// If 'proc_label_sfx_id' is set to 'kInvalidId' then the preset will be applied to all proc's.
|
|
|
|
rc_t network_apply_preset( network_t& net, const char* presetLabel, unsigned proc_label_sfx_id=kInvalidId );
|
|
|
|
rc_t network_apply_dual_preset( network_t& net, const char* presetLabel_0, const char* presetLabel_1, double coeff, unsigned proc_label_sfx_id=kInvalidId );
|
|
|
|
rc_t network_apply_preset( network_t& net, const multi_preset_selector_t& mps, unsigned proc_label_sfx_id=kInvalidId );
|
2024-04-22 20:02:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|