8#ifndef SEN_KERNEL_COMPONENT_API_H
9#define SEN_KERNEL_COMPONENT_API_H
34#include "stl/sen/kernel/basic_types.stl.h"
68[[nodiscard]]
FuncResult execLoop(Runner* runner,
Duration cycleTime, std::function<
void()>&& workFunction);
72void remoteProcessDetected(
RunApi& api,
const ProcessInfo& processInfo);
74void remoteProcessLost(
RunApi& api,
const ProcessInfo& processInfo);
76[[nodiscard]] std::shared_ptr<ObjectSource> getSource(Runner* runner,
const BusAddress& address);
80[[nodiscard]]
const ProcessInfo* fetchOwnerInfo(
const Object*
object);
82[[nodiscard]] ::sen::impl::WorkQueue* getWorkQueue(Runner* runner);
138 template <typename T, typename Bus>
144 template <typename T, typename Bus>
154 template <typename T, typename Bus>
156 const
std::
string& query,
165 template <
typename T>
166 [[nodiscard]] std::string buildQuery(
const BusAddress& address)
const;
168 template <
typename T>
169 [[nodiscard]] std::string buildQuery(std::string_view bus)
const;
173 impl::Runner* runner_;
252 impl::KernelImpl& kernelImpl,
253 impl::Runner* runner,
281 std::function<
void()>&& func =
nullptr,
282 bool logOverruns = true);
321 impl::KernelImpl& kernelImpl_;
322 impl::Runner* runner_;
323 std::atomic_bool& stopRequested_;
341template <typename T, typename Bus>
344 auto sub = std::make_shared<Subscription<T>>();
349template <
typename T,
typename Bus>
354 auto sub = std::make_shared<Subscription<T>>();
358 std::ignore = sub->list.onAdded(std::move(onAdded));
362 std::ignore = sub->list.onRemoved(std::move(onRemoved));
368template <
typename T,
typename Bus>
370 const std::string& query,
374 auto sub = std::make_shared<Subscription<T>>();
379 std::ignore = sub->list.onAdded(std::move(onAdded));
383 std::ignore = sub->list.onRemoved(std::move(onRemoved));
390inline std::string KernelApi::buildQuery(
const BusAddress& address)
const
392 const ClassType* meta =
nullptr;
393 if constexpr (!std::is_same_v<T, Object>)
398 std::string query =
"SELECT ";
399 query.append(meta ? meta->getQualifiedName() :
"*");
400 query.append(
" FROM ");
401 query.append(address.sessionName);
403 query.append(address.busName);
409inline std::string KernelApi::buildQuery(std::string_view bus)
const
411 const ClassType* meta =
nullptr;
412 if constexpr (!std::is_same_v<T, Object>)
414 meta = T::meta()->asClassType();
417 std::string query =
"SELECT ";
418 query.append(meta ? meta->getQualifiedName() :
"*");
419 query.append(
" FROM ");
Base class for event or method callbacks. It stores the queue where to push the response....
Definition callback.h:146
A registry of custom types.
Definition type_registry.h:36
A time duration.
Definition duration.h:25
static std::shared_ptr< Interest > make(std::string_view query, const CustomTypeRegistry &typeRegistry)
Make an interest from a query. Throws std::exception if not well formed.
A sen object.
Definition object.h:76
A list of objects that is managed by some source based on user-expressed interests.
Definition object_list.h:30
std::function< void(const Iterators &iterators)> Callback
Definition object_list.h:65
Allows adding and receiving objects.
Definition object_source.h:35
Result<T, E> is a template type that can be used to return and propagate errors. The intent is to rep...
Definition result.h:135
Contiguous view of elements of type T. Inspired by http://www.open-std.org/jtc1/sc22/wg21/docs/papers...
Definition span.h:34
A point in time.
Definition timestamp.h:26
ConfigGetter(const VarMap &config) noexcept
const VarMap & getConfig() const noexcept
Gets the configuration associated with this component.
~InitApi() noexcept=default
InitApi(Kernel &kernel, impl::Runner *runner, const VarMap &config) noexcept
User-facing kernel functions.
Definition component_api.h:106
::sen::impl::WorkQueue * getWorkQueue() const noexcept
The work queue of this runner.
KernelApi(Kernel &kernel, impl::Runner *runner) noexcept
std::shared_ptr< Subscription< T > > selectFrom(const Bus &bus, const std::string &query, typename sen::ObjectList< T >::Callback onAdded=nullptr, typename sen::ObjectList< T >::Callback onRemoved=nullptr)
Creates a subscription for objects matching the given Sen query string. Unlike selectAllFrom,...
Definition component_api.h:369
std::shared_ptr< ObjectSource > getSource(const BusAddress &address)
Gets an object source, where objects can be found and published.
std::filesystem::path getConfigFilePath() const noexcept
Gets the path to the configuration file used to construct the kernel. It might be empty if the kernel...
Definition component_api.h:162
CustomTypeRegistry & getTypes() noexcept
The types registered into the kernel.
SessionsDiscoverer & getSessionsDiscoverer() noexcept
Object that allows discovering sessions and buses.
const ProcessInfo * fetchOwnerInfo(const Object *object) const noexcept
Gets information about the process where an object is. Returns nullptr if the object resides in the c...
const std::string & getAppName() const noexcept
Gets the (optional) application name passed to the kernel as a configuration parameter.
void requestKernelStop(int exitCode=0)
Issues an asynchronous request to stop the kernel. The request is ignored if a previous stop request ...
std::shared_ptr< Subscription< T > > selectAllFrom(const Bus &bus)
Definition component_api.h:342
Main entry point of a sen microkernel.
Definition kernel.h:40
~LoadApi() noexcept=default
LoadApi(Kernel &kernel, impl::Runner *runner, const VarMap &config) noexcept
PreloadApi(Kernel &kernel, impl::Runner *runner, const VarMap &config) noexcept
~PreloadApi() noexcept=default
void installTracerFactory(TracerFactory &&factory) const
Installs a tracer factory.
void installTransportFactory(TransportFactory &&factory, uint32_t transportVersion) const
Installs a transport factory for the kernel to use for sessions.
RegistrationApi(Kernel &kernel, impl::Runner *runner, const VarMap &config) noexcept
~RegistrationApi() noexcept=default
What can be done while a component is running.
Definition component_api.h:246
Span< const ComponentInfo > getLoadedComponents() const noexcept
Build information for every component loaded into the kernel, excluding pipeline components (which ar...
TimeStamp getStartTime() const noexcept
The initial simulation time for the objects in the component.
Span< const ComponentInfo > getImportedPackages() const noexcept
Build information for all imported packages (from pipeline components). The returned span references ...
void commit()
Send changes, so that they become visible to other participants. This includes object additions and r...
Tracer & getTracer() const noexcept
Create a scoped zone used for tracing runtime performance.
void drainInputs()
Perform any request coming from the outside and drainInputs all the local data structures with their ...
~RunApi() noexcept=default
std::optional< Duration > getTargetCycleTime() const noexcept
If present, it returns the configured cycle time for iterations.
std::optional< uint32_t > getTransportProtocolVersion() const noexcept
Version of the currently installed transport protocol. Empty when no transport is installed....
FuncResult execLoop(Duration cycleTime, std::function< void()> &&func=nullptr, bool logOverruns=true)
A basic execution loop. Func is an optional callback that will be invoked on each cycle.
RunApi(Kernel &kernel, impl::KernelImpl &kernelImpl, impl::Runner *runner, std::atomic_bool &stopRequested, const VarMap &config, Guarded< TimeStamp > &timePoint) noexcept
KernelMonitoringInfo fetchMonitoringInfo() const
Monitoring information.
friend void impl::remoteProcessLost(RunApi &api, const ProcessInfo &processInfo)
const std::atomic_bool & stopRequested() const noexcept
True if stop has been requested by the runtime.
void update()
This calls update() on all the objects registered by the component.
friend void impl::remoteProcessDetected(RunApi &api, const ProcessInfo &processInfo)
TimeStamp getTime() const noexcept
The (potentially virtualized) time.
Definition source_info.h:99
Interface implemented by tracers. You can use it to trace the behavior of your code....
Definition tracer.h:28
UnloadApi(Kernel &kernel, const VarMap &config, impl::Runner *runner) noexcept
~UnloadApi() noexcept=default
std::function< std::unique_ptr< Transport >(const std::string &, std::unique_ptr< Tracer > tracer)> TransportFactory
A function that creates a transport given a session name.
Definition include/sen/kernel/transport.h:203
Global transport statistics.
Definition include/sen/kernel/transport.h:146
std::map< std::string, Var, std::less<> > VarMap
A map of vars to represent structures.
Definition var.h:107
Strong type for the unique identifier for a transport timer.
Definition native_object_impl.h:39
uint32_t group
Definition component_api.h:90
Result< OpState, ExecError > PassResult
The result of operations that may be called multiple times.
Definition component_api.h:56
std::function< std::unique_ptr< Tracer >(std::string_view)> TracerFactory
A factory function for tracers.
Definition tracer.h:119
Result< void, ExecError > FuncResult
The result of operations that are called once.
Definition component_api.h:53
std::optional< Duration > cycleTime
Definition component_api.h:92
std::vector< ComponentMonitoringInfo > components
Definition component_api.h:101
std::size_t objectCount
Definition component_api.h:93
std::string name
Definition component_api.h:89
RunMode runMode
Definition component_api.h:99
bool requiresRealTime
Definition component_api.h:91
TransportStats transportStats
Definition component_api.h:100
Runtime monitoring information about a single component runner.
Definition component_api.h:88
Kernel runtime monitoring information.
Definition component_api.h:98
Guarded is a lightweight wrapper class that can be used to protect an objet of type T from concurrent...
Definition mutex_utils.h:49
A list of objects and a reference to its source (to keep it alive).
Definition subscription.h:29