1_hello

Store definition

// SPDX-FileCopyrightText: 2020-2023 Jochem Rutgers
//
// SPDX-License-Identifier: CC0-1.0

// This is a comment. The comment is always till the end of the line.

// Basically, a variable is defined as:
// <type> <name>
//
// Only built-in types can be used (although a blob can be cast to anything),
// and the name consists of all ASCII-printable characters (ASCII 0x20-0x7e).
// All variable are (default) initialized to zero or equivalent.
// More on that later on, but this creates two variables:

int32 hello
double world

// This file is named Hello.st, so a C++ object stored::Hello is generated,
// which can be included using Hello.h.

// Check out scripts/st.vim for syntax highlighting in Vim.

Application

// SPDX-FileCopyrightText: 2020-2023 Jochem Rutgers
//
// SPDX-License-Identifier: CC0-1.0

/*!
 * \file
 * \brief Hello world example.
 */

// Include the generated model, based on ExampleHello.st.
#include "ExampleHello.h"

#include <cstdio>

int main()
{
	// Construct the store.
	stored::ExampleHello h;

	// Print defaults.
	printf("hello=%" PRIi32 " world=%g\n", h.hello.get(), h.world.get());

	// Set some values.
	h.hello = 42;
	h.world = 3.14;

	// Check if it worked.
	printf("hello=%d world=%g\n", h.hello.as<int>(), h.world.get());

	// All variables can be accessed by name too. This is encoded in a
	// directory with scopes (see later examples), but this requires to add the
	// root /.
	// cppcheck-suppress unreadVariable
	h.find("/hello").variable<int32_t>() = 43;

	// Check if it changed.
	printf("hello=%d world=%g\n", h.hello.as<int>(), h.world.get());

	return 0;
}

Output

hello=0 world=0
hello=42 world=3.14
hello=43 world=3.14

Store reference

template<typename Base_, typename Implementation_>
class ExampleHelloObjects

All ExampleHelloBase’s objects.

Public Types

typedef Base_ Base
typedef Implementation_ Implementation

Public Members

impl::StoreVariable<Base, Implementation, int32_t, 8u, 4> hello

hello

impl::StoreVariable<Base, Implementation, double, 0u, 8> world

world

template<typename Implementation_>
class ExampleHelloBase : public stored::ExampleHelloObjects<ExampleHelloBase<Implementation_>, Implementation_>

Base class with default interface of all ExampleHello implementations.

Although there are no virtual functions in the base class, subclasses can override them. The (lowest) subclass must pass the Implementation_ template paramater to its base, such that all calls from the base class can be directed to the proper overridden implementation.

The base class cannot be instantiated. If a default implementation is required, which does not have side effects to functions, instantiate stored::ExampleHello. This class contains all data of all variables, so it can be large. So, be aware when instantiating it on the stack. Heap is fine. Static allocations is fine too, as the constructor and destructor are trivial.

To inherit the base class, you can use the following template:

class ExampleHello : public stored::store<ExampleHello, ExampleHelloBase>::type {
    STORE_CLASS(ExampleHello, ExampleHelloBase)
public:
    // Your class implementation, such as:
    ExampleHello() is_default
    // ...
};

Some compilers or tools may get confused by the inheritance using stored::store or stored::store_t. Alternatively, use STORE_T(...) instead, providing the template parameters of stored::store as macro arguments.

See also

stored::ExampleHelloData

Subclassed by stored::ExampleHelloDefaultFunctions< ExampleHelloBase< ExampleHello > >

Public Types

enum [anonymous]

Values:

enumerator ObjectCount

Number of objects in the store.

enumerator VariableCount

Number of variables in the store.

enumerator FunctionCount

Number of functions in the store.

enumerator BufferSize

Buffer size.

typedef Implementation_ Implementation

Type of the actual implementation, which is the (lowest) subclass.

typedef uintptr_t Key

Type of a key.

See also

bufferToKey()

typedef Map<String::type, Variant<Implementation>>::type ObjectMap

Map as generated by map().

typedef ExampleHelloObjects<ExampleHelloBase, Implementation_> Objects
typedef ExampleHelloBase root

We are the root, as used by STORE_CLASS.

typedef ExampleHelloBase self

Define self for stored::store.

Public Functions

inline ~ExampleHelloBase()
inline Key bufferToKey(void const *buffer) const noexcept

Converts a variable’s buffer to a key.

A key is unique for all variables of the same store, but identical for the same variables across different instances of the same store class. Therefore, the key can be used to synchronize between instances of the same store. A key does not contain meta data, such as type or length. It is up to the synchronization library to make sure that these properties are handled well.

For synchronization, when hookEntryX() or hookEntryRO() is invoked, one can compute the key of the object that is accessed. The key can be used, for example, in a key-to-Variant map. When data arrives from another party, the key can be used to find the proper Variant in the map.

This way, data exchange is type-safe, as the Variant can check if the data format matches the expected type. However, one cannot process data if the key is not set yet in the map.

inline Type::type bufferToType(void const *buffer) noexcept

Return the type of the variable, given its buffer.

inline Variant<Implementation> find(char const *name, size_t len = std::numeric_limits<size_t>::max()) noexcept

Finds an object with the given name.

Returns:

the object, or an invalid stored::Variant if not found.

template<typename T>
inline Function<T, Implementation> function(char const *name, size_t len = std::numeric_limits<size_t>::max()) noexcept

Finds a function with the given name.

The function, when it exists, must have the given (fixed) type.

inline Implementation const &implementation() const noexcept

Returns the reference to the implementation.

inline Implementation &implementation() noexcept

Returns the reference to the implementation.

template<typename F>
inline void list(F &&f) noexcept

Calls a callback for every object in the longDirectory().

See also

stored::list()

template<typename F>
inline void list(F f, void *arg, char const *prefix, String::type *nameBuffer) noexcept

Calls a callback for every object in the longDirectory().

See also

stored::list()

template<typename F>
inline void list(F f, void *arg, char const *prefix = nullptr) noexcept

Calls a callback for every object in the longDirectory().

See also

stored::list()

inline uint8_t const *longDirectory() const noexcept

Retuns the long directory.

When not available, the short directory is returned.

inline ObjectMap map(char const *prefix = nullptr)

Create a name to Variant map for the store.

Generating the map may be expensive and the result is not cached.

inline char const *name() const noexcept

Returns the name of store, which can be used as prefix for stored::Debugger.

inline uint8_t const *shortDirectory() const noexcept

Returns the short directory.

template<typename T>
inline Variable<T, Implementation> variable(char const *name, size_t len = std::numeric_limits<size_t>::max()) noexcept

Finds a variable with the given name.

The variable, when it exists, must have the given (fixed) type.

Public Members

impl::StoreVariable<Base, Implementation, int32_t, 8u, 4> hello

hello

impl::StoreVariable<Base, Implementation, double, 0u, 8> world

world

Public Static Functions

template<typename T>
static inline constexpr FreeFunction<T, Implementation> freeFunction(char const *name, size_t len = std::numeric_limits<size_t>::max()) noexcept

Finds a function with the given name.

The function, when it exists, must have the given (fixed) type. It is returned as a free function; it is not bound yet to a specific store instance. This function is constexpr for C++14.

template<typename T>
static inline constexpr FreeVariable<T, Implementation> freeVariable(char const *name, size_t len = std::numeric_limits<size_t>::max()) noexcept

Finds a variable with the given name.

The variable, when it exists, must have the given (fixed) type. It is returned as a free variable; it is not bound yet to a specific store instance. This function is constexpr for C++14.

static inline constexpr char const *hash() noexcept

Returns a unique hash of the store.

Friends

friend class impl::StoreFunction
friend class impl::StoreVariable
friend class impl::StoreVariantF
friend class impl::StoreVariantV
friend class stored::FreeVariable
friend class stored::Variant< void >
class ExampleHello : public stored::ExampleHelloDefaultFunctions<ExampleHelloBase<ExampleHello>>

Default ExampleHelloBase implementation.

Public Functions

ExampleHello() = default

Default constructor.