helics
3.5.3
|
#include <Core.hpp>
Public Member Functions | |
Core ()=default | |
virtual | ~Core ()=default |
virtual void | configure (std::string_view configureString)=0 |
virtual void | configureFromArgs (int argc, char *argv[])=0 |
virtual void | configureFromVector (std::vector< std::string > args)=0 |
virtual bool | isConfigured () const =0 |
virtual bool | connect ()=0 |
virtual bool | isConnected () const =0 |
virtual void | disconnect ()=0 |
virtual bool | hasError () const =0 |
virtual bool | waitForDisconnect (std::chrono::milliseconds msToWait=std::chrono::milliseconds(0)) const =0 |
virtual bool | isOpenToNewFederates () const =0 |
virtual const std::string & | getIdentifier () const =0 |
virtual const std::string & | getAddress () const =0 |
virtual void | globalError (LocalFederateId federateID, int32_t errorCode, std::string_view errorString)=0 |
virtual void | localError (LocalFederateId federateID, int32_t errorCode, std::string_view errorString)=0 |
virtual int | getErrorCode () const =0 |
virtual std::string | getErrorMessage () const =0 |
virtual void | finalize (LocalFederateId federateID)=0 |
virtual bool | enterInitializingMode (LocalFederateId federateID, IterationRequest iterate=NO_ITERATION)=0 |
virtual void | setCoreReadyToInit ()=0 |
virtual iteration_time | enterExecutingMode (LocalFederateId federateID, IterationRequest iterate=NO_ITERATION)=0 |
virtual LocalFederateId | registerFederate (std::string_view name, const CoreFederateInfo &info)=0 |
virtual const std::string & | getFederateName (LocalFederateId federateID) const =0 |
virtual LocalFederateId | getFederateId (std::string_view name) const =0 |
virtual int32_t | getFederationSize ()=0 |
virtual Time | timeRequest (LocalFederateId federateID, Time next)=0 |
virtual iteration_time | requestTimeIterative (LocalFederateId federateID, Time next, IterationRequest iterate)=0 |
virtual void | processCommunications (LocalFederateId fedId, std::chrono::milliseconds msToWait)=0 |
virtual void | setTimeProperty (LocalFederateId federateID, int32_t property, Time timeValue)=0 |
virtual Time | getTimeProperty (LocalFederateId federateID, int32_t property) const =0 |
virtual void | setIntegerProperty (LocalFederateId federateID, int32_t property, int16_t propValue)=0 |
virtual int16_t | getIntegerProperty (LocalFederateId federateID, int32_t property) const =0 |
virtual Time | getCurrentTime (LocalFederateId federateID) const =0 |
virtual void | setFlagOption (LocalFederateId federateID, int32_t flag, bool flagValue)=0 |
virtual bool | getFlagOption (LocalFederateId federateID, int32_t flag) const =0 |
virtual InterfaceHandle | registerPublication (LocalFederateId federateID, std::string_view key, std::string_view type, std::string_view units)=0 |
virtual InterfaceHandle | getPublication (LocalFederateId federateID, std::string_view key) const =0 |
virtual InterfaceHandle | registerInput (LocalFederateId federateID, std::string_view key, std::string_view type, std::string_view units)=0 |
virtual InterfaceHandle | getInput (LocalFederateId federateID, std::string_view key) const =0 |
virtual const std::string & | getHandleName (InterfaceHandle handle) const =0 |
virtual void | removeTarget (InterfaceHandle handle, std::string_view targetToRemove)=0 |
virtual const std::string & | getExtractionUnits (InterfaceHandle handle) const =0 |
virtual const std::string & | getInjectionUnits (InterfaceHandle handle) const =0 |
virtual const std::string & | getInjectionType (InterfaceHandle handle) const =0 |
virtual const std::string & | getExtractionType (InterfaceHandle handle) const =0 |
virtual void | setHandleOption (InterfaceHandle handle, int32_t option, int32_t option_value)=0 |
virtual int32_t | getHandleOption (InterfaceHandle handle, int32_t option) const =0 |
virtual void | closeHandle (InterfaceHandle handle)=0 |
virtual void | setValue (InterfaceHandle handle, const char *data, uint64_t len)=0 |
virtual const std::shared_ptr< const SmallBuffer > & | getValue (InterfaceHandle handle, uint32_t *inputIndex=nullptr)=0 |
virtual const std::vector< std::shared_ptr< const SmallBuffer > > & | getAllValues (InterfaceHandle handle)=0 |
virtual const std::vector< InterfaceHandle > & | getValueUpdates (LocalFederateId federateID)=0 |
virtual InterfaceHandle | registerEndpoint (LocalFederateId federateID, std::string_view name, std::string_view type)=0 |
virtual InterfaceHandle | registerTargetedEndpoint (LocalFederateId federateID, std::string_view name, std::string_view type)=0 |
virtual InterfaceHandle | getEndpoint (LocalFederateId federateID, std::string_view name) const =0 |
virtual InterfaceHandle | registerDataSink (LocalFederateId federateID, std::string_view name)=0 |
virtual InterfaceHandle | getDataSink (LocalFederateId federateID, std::string_view name) const =0 |
virtual InterfaceHandle | registerCloningFilter (std::string_view filterName, std::string_view type_in, std::string_view type_out)=0 |
virtual InterfaceHandle | registerFilter (std::string_view filterName, std::string_view type_in, std::string_view type_out)=0 |
virtual InterfaceHandle | registerTranslator (std::string_view translatorName, std::string_view endpointType, std::string_view units)=0 |
virtual void | addDestinationTarget (InterfaceHandle handle, std::string_view dest, InterfaceType hint=InterfaceType::UNKNOWN)=0 |
virtual void | addSourceTarget (InterfaceHandle handle, std::string_view name, InterfaceType hint=InterfaceType::UNKNOWN)=0 |
virtual const std::string & | getDestinationTargets (InterfaceHandle handle) const =0 |
virtual const std::string & | getSourceTargets (InterfaceHandle handle) const =0 |
virtual InterfaceHandle | getFilter (std::string_view name) const =0 |
virtual InterfaceHandle | getTranslator (std::string_view name) const =0 |
virtual void | addDependency (LocalFederateId federateID, std::string_view federateName)=0 |
virtual void | linkEndpoints (std::string_view source, std::string_view dest)=0 |
virtual void | addAlias (std::string_view interfaceKey, std::string_view alias)=0 |
virtual void | makeConnections (const std::string &file)=0 |
virtual void | dataLink (std::string_view source, std::string_view target)=0 |
virtual void | addSourceFilterToEndpoint (std::string_view filter, std::string_view target)=0 |
virtual void | addDestinationFilterToEndpoint (std::string_view filter, std::string_view target)=0 |
virtual void | send (InterfaceHandle sourceHandle, const void *data, uint64_t length)=0 |
virtual void | sendTo (InterfaceHandle sourceHandle, const void *data, uint64_t length, std::string_view destination)=0 |
virtual void | sendAt (InterfaceHandle sourceHandle, const void *data, uint64_t length, Time time)=0 |
virtual void | sendToAt (InterfaceHandle sourceHandle, const void *data, uint64_t length, std::string_view destination, Time time)=0 |
virtual void | sendMessage (InterfaceHandle sourceHandle, std::unique_ptr< Message > message)=0 |
virtual uint64_t | receiveCount (InterfaceHandle destination)=0 |
virtual std::unique_ptr< Message > | receive (InterfaceHandle destination)=0 |
virtual std::unique_ptr< Message > | receiveAny (LocalFederateId federateID, InterfaceHandle &endpoint_id)=0 |
virtual uint64_t | receiveCountAny (LocalFederateId federateID)=0 |
virtual void | logMessage (LocalFederateId federateID, int logLevel, std::string_view messageToLog)=0 |
virtual void | setFilterOperator (InterfaceHandle filter, std::shared_ptr< FilterOperator > callback)=0 |
virtual void | setTranslatorOperator (InterfaceHandle translator, std::shared_ptr< TranslatorOperator > callback)=0 |
virtual void | setFederateOperator (LocalFederateId fed, std::shared_ptr< FederateOperator > callback)=0 |
virtual void | setLoggingCallback (LocalFederateId federateID, std::function< void(int, std::string_view, std::string_view)> logFunction)=0 |
virtual void | setLoggingLevel (int logLevel)=0 |
virtual void | setLogFile (std::string_view lfile)=0 |
virtual void | setGlobal (std::string_view valueName, std::string_view value)=0 |
virtual void | sendCommand (std::string_view target, std::string_view commandStr, std::string_view source, HelicsSequencingModes mode)=0 |
virtual std::pair< std::string, std::string > | getCommand (LocalFederateId federateID)=0 |
virtual std::pair< std::string, std::string > | waitCommand (LocalFederateId federateID)=0 |
virtual std::string | query (std::string_view target, std::string_view queryStr, HelicsSequencingModes mode)=0 |
virtual void | setQueryCallback (LocalFederateId federateID, std::function< std::string(std::string_view)> queryFunction, int order)=0 |
virtual void | setInterfaceInfo (InterfaceHandle handle, std::string_view info)=0 |
virtual const std::string & | getInterfaceInfo (InterfaceHandle handle) const =0 |
virtual void | setInterfaceTag (InterfaceHandle handle, std::string_view tag, std::string_view value)=0 |
virtual const std::string & | getInterfaceTag (InterfaceHandle handle, std::string_view tag) const =0 |
virtual void | setFederateTag (LocalFederateId fid, std::string_view tag, std::string_view value)=0 |
virtual const std::string & | getFederateTag (LocalFederateId fid, std::string_view tag) const =0 |
the class defining the core interface through an abstract class
|
default |
default constructor
|
virtualdefault |
virtual destructor
|
pure virtual |
add an interface alias This allows an interface to be referred to by multiple keys
interfaceKey | the name of the interface to generate an alias for |
alias | the additional identification string |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::addAlias().
|
pure virtual |
add a time dependency between federates
this function is primarily useful for Message federates which do not otherwise restrict the dependencies adding a dependency gives additional information to the core that the specified federate(given by id) will be sending Messages to the named Federate(by federateName)
federateID | the identifier for the federate |
federateName | the name of the dependent federate |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
create a filter connection between a named filter and a named endpoint for destination processing
filter | the name of the filter |
target | the name of the source target |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
adds a destination for interface data, the handle can be a publication, endpoint, filter, or translators
a filter will create an additional processing step for messages before they get to a destination endpoint, for publications this will establish a linkage from the publication to the named input
handle | an interface to add the target to |
dest | the target endpoint for the filter |
hint | the interface type for the destination target |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::addDestinationTarget().
|
pure virtual |
create a filter connection between a named filter and a named endpoint for messages coming from that endpoint
filter | the name of the filter |
target | the name of the source target |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
adds a source of data to an interface, the handle can be an input, filter, translator, or endpoint
for subscriptions and inputs this establishes a link from a publication, for endpoints this creates a linkage to a particular publication, for filters it add a source endpoint to filter
handle | the identifier of the interface |
name | the name of the filter or its target |
hint | the interface type for the source target |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::addSourceTarget().
|
pure virtual |
close a handle from further connections
handle | the handle from the publication, input, endpoint or filter |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::close(), and helics::ConnectorFederateManager::closeAllConnectors().
|
pure virtual |
Configure the core from a configuration string
Should be invoked a single time to initialize the co-simulation core.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Configure the core from command line arguments.
Should be invoked a single time to configure the co-simulation core for operation
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Configure the core from command line arguments contained in a vector in reverse order
Should be invoked a single time to configure the co-simulation core for operations
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
connect the core to a broker if needed
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
create a data connection between a named publication and a named input
source | the name of the publication |
target | the name of the input |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
disconnect the core from its broker
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Change the federate state to the Executing state.
May only be invoked in Initializing state.
federateID | the identifier of the federate |
iterate | the requested iteration mode if nonconverged the federate requests an iterative update |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Federates may be in five Modes.
federateID | the identifier of the federate |
iterate | the requested iteration mode, ITERATE_IF_NEEDED will operate identically to FORCE_ITERATION in this case |
May only be invoked in Created state otherwise an error is thrown for callback federates this call passes full control to the core
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Federate has completed.
Should be invoked a single time to complete the simulation.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get the connection network or connection address for the core
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Return all the available data for the specified handle or the latest input
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get a command for a specific federate
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
get the most recent granted Time
federateID | the identifier of the federate to get the time |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get an interface handle to a data sink
federateID | the identifier for the federate |
name | the name of the data sink |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
get the destinations for an interface
handle | an interface get the destination targets for |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getDestinationTargets().
|
pure virtual |
get an endpoint Handle from its name
federateID | the identifier for the federate |
name | the name of the endpoint |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get the last error code from a core
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get the last error message
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get the type for which data comes out of an interface, this is the type for data coming into an interface
for filters this is the output type, for publications this is the specified type, for endpoints this is the specified type and for inputs this is the specified type
handle | the interface handle to get the injection type for |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getExtractionType().
|
pure virtual |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getExtractionUnits().
|
pure virtual |
Returns the federate Id.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Returns the federate name.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
getter for the federate tags
fid | the identifier for the federate to get the tag data for |
tag | the name of the tag to retrieve |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Returns the global number of federates that are registered only return accurately after the initialization state has been entered
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get a filter Handle from its name or target(this may not be unique so it will only find the first one)
name | the name of the filter or its target |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Set a flag in a a federate
federateID | the identifier for the federate |
flag | an index code for the flag to set |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Returns the name or identifier for a specified handle
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getName(), helics::ConnectorFederateManager::registerCloningFilter(), helics::ConnectorFederateManager::registerFilter(), and helics::ConnectorFederateManager::registerTranslator().
|
pure virtual |
get a handle option
handle | the handle from the publication, input, endpoint or filter |
option | the option to set see /ref defs::options |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getOption().
|
pure virtual |
get an identifier string for the core
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get the injection type for an interface, this is the type for data coming into an interface
for filters this is the input type, for publications this is type used to transmit data, for endpoints this is the specified type and for inputs this is the type of the transmitting publication
handle | the interface handle to get the injection type for |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getInjectionType().
|
pure virtual |
get the injection units for an interface, this is the type for data coming into an interface
for publications this is the units associated with the transmitted data, for inputs this is the units of the transmitting publication
handle | the interface handle to get the injection type for |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getInjectionUnits().
|
pure virtual |
get a subscription Handle from its key
federateID | the identifier for the federate |
key | the tag of the named input |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get an integer property on a federate
federateID | the federate to set a time based property on |
property | the property to set see /ref defs::properties |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
getter for the interface information
handle | the identifiers for the interface to query |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getInfo().
|
pure virtual |
getter for the interface tags
handle | the identifier for the interface to set the info data on |
tag | the name of the tag to retrieve |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getTag().
|
pure virtual |
get a publication Handle from its key
federateID | the identifier for the federate |
key | the name of the publication |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get the sources of data for an interface
handle | the identifier of the interface |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::getSourceTargets(), and helics::Interface::getTarget().
|
pure virtual |
get a timebased property on a federate
federateID | the federate to set a time based property on |
property | the property to set see /ref defs::properties |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get a translator handle from its name or target (this may not be unique so it will only find the first one)
name | the name of the translator or its target |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Return the data for the specified handle or the latest input
handle | the input handle from which to get the data | |
[out] | inputIndex | return the index of input (always 1 for inputs with only a single source) |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Returns vector of input handles that received an update during the last time request. The data remains valid until the next call to getValueUpdates for the given federateID
federateID | the identification code of the federate to get which interfaces have been updated |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Federate has encountered a global error and the federation should halt.
federateID | the federate |
errorCode | a numerical code associated with the error |
errorString | a text message associated with the error |
|
pure virtual |
Returns true if the core has been configured.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
check if the core is connected properly
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
check if the core is ready to accept new federates
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Register communicating source/destination endpoint targets.
source | the endpoint that is sending data |
dest | the endpoint receiving the data |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Federate has encountered a local error and should be disconnected.
federateID | the federate |
errorCode | a numerical code associated with the error |
errorString | a text message associated with the error |
|
pure virtual |
send a log message to the Core for logging
federateID | the federate that is sending the log message |
logLevel | an integer for the log level /ref helics_log_levels |
messageToLog | the string to send to a logger |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
load a file containing connection information
file | a JSON or TOML file containing connection information |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
blocking call that processes helics communication messages this call can be used when expecting communication from other federates or when the federate has nothing else to do and doesn't want to advance time
fedId | the ID of the federate to process communications for |
msToWait | the amount of time to wait before the function returns from processing communications |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
make a query for information from the co-simulation
the format is somewhat unspecified target is the name of an object typically one of "federation", "broker", "core", or the name of a specific object/core/broker target can also be "global_value" to query a global value stored in the broker, or "global" to get a json structure with the name and value
target | the specific target of the query |
queryStr | the actual query |
mode | the sequencing mode for the query, fast or ordered |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
Returns the next buffered message the specified destination endpoint.
this is a non-blocking call and will return a nullptr if no message are available
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Receives a message for any destination.
this is a non-blocking call and will return a nullptr if no messages are available
federateID | the identifier for the federate | |
[out] | endpoint_id | the endpoint handle related to the message gets stored here |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::MessageFederateManager::updateTime().
|
pure virtual |
Returns the number of pending receives for the specified destination endpoint.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Returns number of messages for all destinations.
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::MessageFederateManager::updateTime().
|
pure virtual |
Register a cloning filter, a cloning filter operates on a copy of the message vs the actual message
filterName | the name of the filter (may be left blank and one will be automatically assigned) |
type_in | the input type of the filter |
type_out | the output type of the filter (may be left blank if the filter doesn't change type) |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::CloningFilter::CloningFilter(), and helics::ConnectorFederateManager::registerCloningFilter().
|
pure virtual |
Register a data sink which can only receive data from specific targets
federateID | the federate to associate the endpoint with |
name | the name of the sink |
Implemented in helics::EmptyCore, and helics::CommonCore.
Referenced by helics::MessageFederateManager::registerDataSink().
|
pure virtual |
Message interface. Designed for point-to-point communication patterns. Register an endpoint.
federateID | the federate to associate the endpoint with |
name | the name of the endpoint |
type | the type of data the endpoint should accept or generate(can be left empty) |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::MessageFederateManager::registerEndpoint().
|
pure virtual |
Register a federate.
The returned FederateId is local to invoking process, FederateId's should not be used as a global identifier.
May only be invoked in initialize state otherwise throws an error
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Register filter.
May only be invoked in the Initialization state.
filterName | the name of the filter (may be left blank and one will be automatically assigned) |
type_in | the input type of the filter |
type_out | the output type of the filter (may be left blank if the filter doesn't change type) this is important for ordering in filters with operators |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Filter::Filter(), and helics::ConnectorFederateManager::registerFilter().
|
pure virtual |
Register a control input for the specified federate.
May only be invoked in the initialize state.
federateID | the identifier for the federate to register an input interface on |
key | the name of the control input |
type | a string describing the type of the federate |
units | a string naming the units of the federate |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Value interface. Register a publication.
May only be invoked in the initialize state.
federateID | the identifier for the federate |
key | the tag for the publication |
type | the type of data the publication produces |
units | the units associated with the publication |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Register an endpoint which can only send or receive to specific targets
federateID | the federate to associate the endpoint with |
name | the name of the endpoint |
type | the type of data the endpoint should accept or generate(can be left empty) |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::MessageFederateManager::registerTargetedEndpoint().
|
pure virtual |
Register translator.
translatorName | the name of the translator (may be left blank and one will be automatically assigned) |
units | the specified units for the value side of the translator |
endpointType | a user specified name of the type data on the endpoint |
Implemented in helics::EmptyCore, and helics::CommonCore.
Referenced by helics::ConnectorFederateManager::registerTranslator(), and helics::Translator::Translator().
|
pure virtual |
remove a target from a handles operation
handle | the handle from the publication, input, endpoint or filter |
targetToRemove | the name of the target to remove |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::removeTarget().
|
pure virtual |
Request a new time advancement window for reiterative federates.
Reiterative federates block on requestTimeIterative() until all reiterative federates have invoked requestTimeIterative(). The bool returned a global AND of all localConverged values. If globalConverged is false, time returned is the previous granted time. Time should not advance and another iteration attempted. Federates should recompute state based on newly published values. Time is advanced only when all reiterative federates have converged. If globalConverged is True, grantedTime is the minimum of over all next times in both reiterative and non-reiterative federates.
If a federate determines it cannot converge it should invoke the error() method.
Federates only participate it in reiterations for times that are evenly divisible by the federates time delta.
May only be invoked in Executing state.
Non-reiterative federates may not invoke this method.
federateID | the identifier for the federate to process |
next | the requested time |
iterate | the requested iteration mode /ref iteration_request |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Send data from a source to its targets
Time is implicitly defined as the end of the current time advancement window (value returned by last call to nextTime().
This send version was designed to enable communication of data between federates with the possible introduction of source and destination filters to represent properties of a communication network. This enables simulations to be run with/without a communications model present.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Send data from source to destination with explicit expected delivery time.
Time supplied is the time that will be reported in the message in the receiving federate.
This send version was designed to enable communication of events between discrete event federates. For this use case the receiving federate can deserialize the data and schedule an event for the specified time.
sourceHandle | the source of the event |
data | the raw data for the event |
length | the record length of the event |
time | the time the event is scheduled for |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
send a command to a specific target
the format is somewhat unspecified; target is the name of an object, typically one of "federation", "broker", "core", or the name of a specific object/core/broker
target | the specific target of the command |
commandStr | the actual command |
source | the designated source of the command, for return values or indication |
mode | the sequencing mode for the command, fast or ordered |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
Send for filters.
Continues sending the message to the next filter or to final destination.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Send data from source to destination.
Time is implicitly defined as the end of the current time advancement window (value returned by last call to nextTime().
This send version was designed to enable communication of data between federates with the possible introduction of source and destination filters to represent properties of a communication network. This enables simulations to be run with/without a communications model present.
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Send data from source to destination with explicit expected delivery time.
Time supplied is the time that will be reported in the message in the receiving federate.
This send version was designed to enable communication of events between discrete event federates. For this use case the receiving federate can deserialize the data and schedule an event for the specified time.
sourceHandle | the source of the event |
data | the raw data for the event |
length | the record length of the event |
destination | the target of the event |
time | the time the event is scheduled for |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
set the core to ready to enter init
this function only needs to be called for cores that don't have any federates but may have filters for cores with federates it won't do anything
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
set the callback Federate operators
fed | the federate to set the callback for |
callback | pointer to the operator class executing the federate |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
setter for federate tags which are key-value pairs
fid | the identifier for the federate to set the tag data on |
tag | a string containing the name of the tag |
value | a string containing the value for the tag |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
set the filter callback operator
filter | the handle of the filter |
callback | pointer to the operator class executing the filter |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Filter::setFilterOperations(), and helics::Filter::setOperator().
|
pure virtual |
Set a flag in a a federate
federateID | the identifier for the federate |
flag | an index code for the flag to set |
flagValue | the value to set the flag to |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
set a federation global value
this overwrites any previous value for this name
valueName | the name of the global to set |
value | the value of the global |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
set a handle option
handle | the handle from the publication, input, endpoint or filter |
option | the option to set |
option_value | the value to set the option (mostly 0 or 1) |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::setOption().
|
pure virtual |
set an integer property on a federate
federateID | the federate to set a time based property on |
property | the property to set see /ref defs::properties |
propValue | the requested value of the property |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
setter for the interface information
handle | the identifiers for the interface to set the info data on |
info | a string containing the info data |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::setInfo().
|
pure virtual |
setter for interface tags which are key-value pairs
handle | the identifier for the interface to set the tag data on |
tag | a string containing the name of the tag |
value | a string containing the value for the tag |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Interface::setTag().
|
pure virtual |
set the core logging file
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
define a logging function to use for logging message and notices from the federation and individual federate
federateID | the identifier for the individual federate or 0 for the Core Logger |
logFunction | the callback function for doing something with a log message it takes 3 inputs an integer for logLevel /ref helics_log_levels A string indicating the source of the message and another string with the actual message |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
set the core logging level
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
supply a query callback function
the intention of the query callback is to allow federates to answer particular requests through the query interface this allows other federates to make requests or queries of other federates in an asynchronous fashion.
federateID | the identifier for the federate |
queryFunction | a function object that returns a string as a result of a query in the form of const string ref. This callback will be called when a federate received a query that cannot be answered that directed at a particular federate |
order | indicator of the execution order slot for query callbacks; the value is bound [1,10] inclusive and values given outside this range are clamped to the boundary values. The callback is overwritten if multiple callbacks at the same index are given. |
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
set a timebased property on a federate
federateID | the federate to set a time based property on |
property | the property to set see /ref defs::properties |
timeValue | the requested value of the property |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
set the translator callback operators
translator | the handle of the translator |
callback | pointer to the operator class executing the translator |
Implemented in helics::CommonCore, and helics::EmptyCore.
Referenced by helics::Translator::setTranslatorOperations().
|
pure virtual |
Publish specified data to the specified key.
handle | the handle from the publication, input, endpoint or filter |
data | the raw data to send |
len | the size of the data |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
Time management. Request a new time advancement window for non-reiterative federates.
RequestTime() blocks until all non-reiterative federates have invoked requestTime() and all reiterative federates have converged (called requestTimeIterative() with localConverged value of true). Return time is the minimum of all supplied times.
May only be invoked in Executing state.
Iterative federates may not invoke this method.
federateID | the identification of the federate requesting the time |
next | the next time that is requested from the federate |
Implemented in helics::CommonCore, and helics::EmptyCore.
|
pure virtual |
get a command for a specific federate. block until a command is received
Implemented in helics::EmptyCore, and helics::CommonCore.
|
pure virtual |
waits in the current thread until the core is disconnected
Implemented in helics::CommonCore, and helics::EmptyCore.