FTN12: FutoIn Async API
Version: 1.16DV
Date: 2026-08-13
Copyright: 2014-2026 FutoIn Project (http://futoin.org)
Authors: Andrey Galkin

CHANGES

1. Concept

This interface was initially born as a secondary option for the FTN6 Executor concept. However, it quickly became clear that async, reactor, proactor, light threads, etc. should be the base of scalable high performance server implementations and light clients, even though it is sometimes more difficult for understanding and/or debugging. Later that has been confirmed multiple times with all sorts of modern async functionality, including its iconic async/await pattern. The traditional synchronous program flow becomes an addon on top of asynchronous base for legacy code and/or too complex logic. Academic and practical research in this direction was started in field of cooperative multitasking back in XX century.

Program flow is split into non-blocking execution steps, represented with execution callback function. Processing Unit (eg. CPU) halting/ spinning/switching-to-another-task is seen as a blocking action in program flow. Execution of such fragments is partially ordered.

Any step must not call any of blocking functions, except for synchronization with guaranteed minimal period of lock acquisition. Note: under minimal period, it is assumed that any acquired lock is immediately released after action with O(1) complexity and no delay caused by programmatic suspension/locking of the executing task.

Every step is executed sequentially. A successful result of any step becomes the input for the following step.

Each step can have own error handler. Error handler is called, if AsyncSteps.error() is called within step execution or any of its sub-steps. A typical behavior of such handler is to override the error and to continue, or to make cleanup actions and complete job with the error still pending.

Each step can have own sequence of sub-steps. Sub-steps can be added only during that step execution. Sub-step sequence is executed after current step execution is finished.

If there are any sub-steps added then the current step must not call AsyncSteps.success() or AsyncSteps.error(). Otherwise, InternalError is raised.

It is possible to create a special "parallel" sub-step and add independent sub-steps to it. Execution of each parallel sub-step is start interleaved way. The parallel step completes with success when all sub-steps complete successfully. If error is raised in any sub-step of the parallel step then all other sub-steps are canceled.

Out-of-order cancel of execution can occur by a timeout, execution control engine decision (e.g. Invoker disconnect), or a failure in the sibling parallel steps. Each step can install custom on-cancel handler to free up resources and/or cancel external jobs. After cancel, it must be safe to destroy the AsyncSteps object.

AsyncSteps must be used in Executor request processing. The same [root] AsyncSteps object must be used for all asynchronous tasks within a given request processing.

AsyncSteps may be used by the FTN7 Invoker implementation.

AsyncSteps may support derived classes in implementation-defined way. A typical use case: functionality extension (e.g. request processing API).

For performance reasons, it is may be more efficient to initialize AsyncSteps with many business logic steps platform-specific AsyncSteps cloning/duplicating, but this ideas has not really much use and is deprecated now.

1.1. Levels

When AsyncSteps (or derived) object is created all steps are added sequentially in the Level 0 through the add(), parallel() or loop API. Note: each parallel() is seen as a step.

After AsyncSteps execution is initiated, each step of the Level 0 is executed. All sub-steps are added in the Level n+1. Example:

add() -> Level 0 #1
    add() -> Level 1 #1
        add() -> Level 2 #1
        parallel().add() -> Level 2 #2
        add() -> Level 2 #3
    parallel().add() -> Level 1 #2
    add() -> Level 1 #3
parallel() -> Level 0 #2
add() -> Level 0 #3

Execution cannot continue to the next step of the current Level until all sub-steps of nested levels are executed.

The execution sequence would be:

Level 0 add #1
Level 1 add #1
Level 2 add #1
Level 2 parallel #2
Level 2 add #3
Level 1 parallel #2
Level 1 add #3
Level 0 parallel #2
Level 0 add #3

1.2. Error Handling

Due to nonlinear programming, classic try/catch blocks are converted into execute-onerror pairs. Each added step may have its custom error handler. If such error handler is not specified then the control is passed to lower Level error handler. If none is defined then execution is aborted.

Example:

add( -> Level 0
    func( asi ){
        print( "Level 0 func" )
        add( -> Level 1
            func( asi ){
                print( "Level 1 func" )
                asi.error( "myerror" )
            },
            onerror( asi, error ){
                print( "Level 1 onerror: " + error )
                asi.error( "newerror" )
            }
        )
    },
    onerror( asi, error ){
        print( "Level 0 onerror: " + error )
        asi.success( "Prm" )
    }
)
add( -> Level 0
    func( asi, param ){
        print( "Level 0 func2: " + param )
        asi.success()
    }
)

The output would be:

Level 0 func
Level 1 func
Level 1 onerror: myerror
Level 0 onerror: newerror
Level 0 func2: Prm

In a synchronous way, it would look like:

variable = null

try
{
    print( "Level 0 func" )

    try
    {
        print( "Level 1 func" )
        throw "myerror"
    }
    catch ( error )
    {
        print( "Level 1 onerror: " + error )
        throw "newerror"
    }
}
catch( error )
{
    print( "Level 0 onerror: " + error )
    variable = "Prm"
}

print( "Level 0 func2: " + variable )

1.2.1. Steps in Error Handlers

Very often, error handler creates an alternative complex program path which requires own async operation. Therefore, such error handler must accept asi.add() as an implicit asi.success() override.

If steps are added inside error handler they must remain on the same async stack level while error handler itself gets removed.

Example:

add( -> Level 0
    func( asi ){
        print( "Level 0 func" )
        add( -> Level 1
            func( asi ){
                print( "Level 1 func" )
                asi.error( "first" )
            },
            onerror( asi, error ){
                print( "Level 1 onerror: " + error )
                asi.add( -> Level 2
                    func() {
                        print( "Level 2 func" )
                        asi.error( "second" );
                    },
                    onerror( asi, error ) {
                        print( "Level 2 onerror: " + error )
                    }
                )
            }
        )
    },
    onerror( asi, error ){
        print( "Level 0 onerror: " + error )
    }
)

The output would be:

Level 0 func
Level 1 func
Level 1 onerror: first
Level 2 func
Level 2 onerror: second
Level 0 onerror: second

Note: the "Level 1 onerror" is not executed second time!

1.3. Wait for External Resources

Very often, execution of step cannot continue without waiting for some external event, like input from network or disk. It is forbidden to block execution in such event waiting. As a solution, there are special setTimeout() and setCancel() API methods.

Example:

add(
    func( asi ){
        socket.read( function( data ){
            asi.success( data )
        } )

        asi.setCancel( function(){
            socket.cancel_read()
        } )

        asi.setTimeout( 30_000 ) // 30 seconds
    },
    onerror( asi, error ){
        if ( error == timeout ) {
            print( "Timeout" )
        }
        else
        {
            print( "Read Error" )
        }
    }
)

1.4. Abort in Parallel Execution

The definition of the parallel steps aborts execution, if any of the pallel steps fails. To avoid excessive time and resources spent on other steps, there is a concept of canceling sibling steps execution similar to the timeout above.

Example:

asi.parallel()
    .add(
        func( asi ){
            asi.setCancel( function(){ ... } )

            // do parallel job #1
            asi.state()->result1 = ...;
        }
    )
    .add(
        func( asi ){
            asi.setCancel( function(){ ... } )

            // do parallel job #1
            asi.state()->result2 = ...;
        }
    )
    .add(
        func( asi ){
            asi.error( "Some Error" )
        }
    )
asi.add(
    func( asi ){
        print( asi.state()->result1 + asi.state->result2 )
        asi.success()
    }
)

1.5. AsyncSteps Cloning

This is a deprecated concept, which can be used in some only niche optimizations. Therefore, it may not be supported in all implementations.

In long living applications the same business logic may be reused multiple times during execution. This applies only to same level sub-steps.

In a REST API server example, complex business logic can be defined only once and stored in a kind of AsyncSteps object repository. On each request, a reference object from the repository would be copied for actual processing with minimal overhead for sub-steps initialization.

However, there would be no-to-little performance difference in sub-step definition unless its callback function is also created at initialization time, but not at parent step execution time (the default concept). So, it should be possible to predefine those as well and copy during step execution. Copying steps must also involve copying of the state variables, which are not set in the target state.

Example:

AsyncSteps req_repo_common;
req_repo_common.add(func( asi ){
    asi.add( func( asi ){ ... } );
    asi.copyFrom( asi.state().business_logic );
    asi.add( func( asi ){ ... } );
});

AsyncSteps req_repo_buslog1;
req_repo_buslog1
    .add(func( asi ){ ... })
    .add(func( asi ){ ... });

AsyncSteps actual_exec = copy req_repo_common;
actual_exec.state().business_logic = req_repo_buslog1;
actual_exec.execute();

However, this approach only makes sense for deep performance optimizations.

1.6. Implicit asi.success()

If there are no sub-steps added, no timeout set and no cancel handler set then implicit asi.success() call is assumed to simplify code and increase efficiency of steps execution. However, such approach does not apply to the error handlers!

asi.add(func( asi ){
    doSomeStuff( asi );
})

1.6.1. asi.waitExternal() Shortcut for Empty Cancellation Handler

As in many cases it's required to wait for external event without any additional conditions, the general approach appeared to be adding an empty cancel handler. To avoid that, an explicit asi.waitExternal() API is provided.

1.7. Error Info, Last Exception and Async Call Stack

Predefined state variables:

Implementation may replace state variables with specific State object API.

The error code is not always descriptive enough, especially, if it can be generated in multiple places. As a convention, special error_info state field should hold descriptive information of the last error. Therefore, asi.error() is extended with optional parameter error_info.

The last_exception state variables may hold the last exception object caught, if feasible to implement. It should be populated with thrown FutoIn error objects as well.

1.8. Async Loops

Almost always, program flow is nonlinear, and loops are required.

Basic princips of the async loops:

    asi.loop( func( asi ){
        call_some_library( asi );
        asi.add( func( asi, result ){
            if ( !result )
            {
                // exit loop
                asi.break();
            }
        } );
    } )

Inner loops and identifiers:

    // start loop
    asi.loop( 
        func( asi ){
            asi.loop( func( asi ){
                call_some_library( asi );
                asi.add( func( asi, result ){
                    if ( !result )
                    {
                        // exit loop
                        asi.continue( "OUTER" );
                    }

                    asi.success( result );
                } );
            } );

            asi.add( func( asi, result ){
                // use it somehow
                asi.success();
            } );
        },
        "OUTER"
    )

Loop n times.

    asi.repeat( 3, func( asi, i ){
        print( 'Iteration: ' + i )
    } )

Traverse through a list:

    asi.forEach(
        [ 'apple', 'banana' ],
        func( asi, index, v ){
            print( index + ". " + v )
        }
    )

Traverse through a map:

    asi.forEach(
        [ 'apple', 'banana' ],
        func( asi, k, v ){
            print( k + " = " + v )
        }
    )

1.8.1. Termination

Normal loop termination is performed either by a loop condition (e.g. asi.forEach(), asi.repeat()) or by asi.break() call. Normal termination is seen as an implicit asi.success() call.

Abnormal termination is possible through asi.error(), including timeout, or external asi.cancel(). Abnormal termination is seen as a asi.error() call.

1.9. The Safety Rules of Libraries with AsyncSteps Interface

A good library calling convention has never been provided, and each use case in the field is unique. The following recommendations are provided, begging with FTN12 v1.15.

  1. The current level AsyncSteps must be passed to the library API directly.
  2. The library can add own sub-steps to the current outer step.
  3. The library should use asi.successStep() to return any variables.
  4. The library must not interfere with the outer step execution otherwise, including:

The library calls inside the current project boundaries may deviate from such guidelines for efficiency of operations.

1.10. Reserved Keyword Name Clash

If any of API identifiers clashes with one of reserved words or has illegal symbols then implementation-defined name mangling is allowed, but with the following guidelines in priority.

Predefined alternative method names, if the default matches language-specific reserved keywords:

1.11. Synchronization

Although AsyncSteps are designed for single-thread operation, synchronization between executing instances is still necessary.

1.11.1. Mutual exclusion

As with any multi-threaded application, multistep cases may also require synchronization to ensure that no more than N steps enter the same critical section which spans over several fragments (steps) of the asynchronous flow.

Implemented as Mutex class.

1.11.2. Throttling

For general stability reasons and protection of self-DoS, it may be required to limit number of steps allowed to enter a critical section within time period.

Implemented as Throttle class.

1.11.3. API details

A special asi.sync(obj, step, err_handler) shortcut API is available to synchronize against any object supporting synchronization protocol with pattern obj.sync(asi, step, err_handler).

Synchronization object is allowed to add own steps and is responsible for adding the requested sub-steps under protection of the provided synchronization. Synchronization object must correctly handle canceled execution and possible errors.

Incoming success parameters must be passed to the critical section step. Resulting success parameters must be forwarded to the following steps like there is no critical section logic.

1.11.4. Re-Entrance Requirements

All synchronization implementations must either allow multiple re-entrance of the same AsyncSteps instance or properly detect and raise error on such event.

All implementations must correctly detect parallel flows in the scope of a single AsyncSteps instance and treat each as a separate one. None of paralleled steps should inherit the lock state of its parent step.

1.11.5. Deadlock Detection

Deadlock detection is optional and is not mandatory required.

1.11.6. Max Queue Limits

It may be required to limit the maximum number of pending AsyncSteps flows. If overall queue limit is reached then new entries must get the predefined "DefenseRejected" error.

1.11.7. Processing Limits

Request processing stability requires to limit both simultaneous connections and request rate. Therefore, a special synchronization primitive Limiter wrapping Mutex and Throttle is introduced to impose combined limits.

1.12. Success Step and Result Injection

Sometimes, it's required to return a value after inner steps are executed. It leads to code like:

    value = 123;
    asi.add( subStep );
    asi.add( ( asi ) => asi.success( value ) );

To optimize and make the code cleaner, the previously deprecated asi.successStep() is returned. Example:

    value = 123;
    asi.add( subStep );
    asi.successStep( value );

1.13. Promise/Await Integration

As Promises and await patterns become more and more popular in modern technologies, AsyncSteps should support them through asi.await(future_or_promise) call as feasible to implement.

Details of implementation is specific to particular technology. However, the following guidelines should be used:

  1. An async step must be added.
  2. If future_or_promise is cancellable then asi.setCancel() must be used.
  3. Otherwise, asi.waitExternal() to be used.
  4. Errors must be propagated through asi.error()
  5. Result must be propagated through asi.success()

1.14. Allocation for Technologies Without Garbage Collected Heap

For most GC-based technologies step closures can use objects allocated in outer steps without issues. However, object lifetime management is important for technologies like ISO C++.

A special Pointer stack(size) execution API is provided. The raw version acts like regular heap allocation, but allocated memory is automatically freed once the step is destroyed.

If other lifetime is required then implementation-specific shared pointers should be used.

Technology-specific implementation should provide a template or a generic overload to better integrate with specific type system and other features. Example:

// Prototype
template<typename T, typename... Args>
T& stack(Args&&... args);

// to be used like
asi.stack<T>();
asi.stack<T>(SomeCtorParam);

1.15. Execution Burst

Originally, this feature was a non-spec optimization introduced to JS reference implementation to aid performance by improving data locality in CPU caches.

Each AsyncSteps instance is expected to run a burst of steps until it requires to wait for an external event. The default recommended burst is 100 sub-steps. The burst can be reduced, if it takes too long, e.g. 1 millisecond.

A non-core helper asi.relinquish() should be provided as a shortcut for an empty sub-step, triggering external wait with immediate completion from the event-loop, effectively moving the current instance to the end of the queue.

2. Async Steps API

2.1. Types

2.2. Functions

It is assumed that all functions in this section are part of the single AsyncSteps interface. However, they are grouped by semantic scope of use. Such design violates certain best practices, but it is done intentionally.

2.2.1. Common API

This API can be used in any context.

  1. AsyncSteps add( execute_callback func[, error_callback onerror] ):
  2. AsyncSteps parallel( [error_callback onerror] ):
  3. State state():
  4. AsyncSteps copyFrom( AsyncSteps other ):
  5. AsyncSteps sync(ISync obj, execute_callback func[, error_callback onerror] ):
  6. AsyncSteps successStep( [result_arg, ...] ):
  7. AsyncSteps await( future_or_promise[, error_callback onerror] ):
  8. AsyncSteps newInstance():
  9. boolean cast():
  10. FutoInAsyncSteps cast():
  11. FutoInAsyncSteps binary():
  12. AsyncSteps wrap(FutoInAsyncSteps):

2.2.2. Execution API

This API can be used only inside the execute_callback context. The success() and error() can be used in error_callback context as well.

  1. void success( [result_arg, ...] )
  2. void error( name [, error_info] ):
  3. void errorNoThrow( name [, error_info] ):
  4. void setTimeout( timeout_ms ):
  5. call operator overloading:
  6. void setCancel( cancel_callback oncancel ):
  7. void waitExternal():
  8. void relinquish():
  9. Pointer stack(size[, destroy_cb]):

2.2.3. Control API

This API can be used only on Root AsyncSteps objects.

  1. void execute() - must be called only once after the root object steps are configured.
  2. void cancel() - may be called on the root object to asynchronously cancel execution.
  3. Promise promise() - must be called only once after the root object steps are configured.

2.2.4. Execution Loop API

This API can be used only inside execute_callback.

  1. void loop( func, [, label] ):
  2. void forEach( map|list, func [, label] ):
  3. void repeat( count, func [, label] ):
  4. void break( [label] ):
  5. void breakNoThrow( [label] ):
  6. void continue( [label] ):
  7. void continueNoThrow( [label] ):

2.3. Mutex class

2.4. Throttle class

2.5. Limiter class

2.6. AsyncTool event loop interface

There is a strong assumption that AsyncSteps instances are executed in partial order by a common instance of event loop, with a historical name AsyncTool.

There is an assumption that AsyncTool will be extended with Input/Output event support to act as a true reactor, but it may not be always possible.

AsyncTool was not defined in previous versions of the specification because its interface is specific to technology while it was always existing. Below is only a general suggestion.

  1. Handle immediate( func ):
  2. Handle deferred( delay, func ):
  3. bool is_same_thread():
  4. void cancel( handle ):
  5. bool is_valid( handle ):

2.7. Universal Binary Interface (ABI)

To achieve the initial goal of the FutoIn project - universal cross-technology interface, a certain minimal binary interface has to be defined to be passed as an ordinary memory pointer for the first parameter of callback functions, so any technology-specific solution could wrap that as necessary and allow mixing asynchronous step fragments written in different languages like C, C++, C#, ECMAScript, Java, Lua, Ruby, Rust and others in scope of a single asynchronous thread.

As the base idea, Java Native Interface approach is taken, where a pointer to an abstract plain structure is passed. The first field of such structure is a pointer to a table of plain C functions, each API functions also assumes to get the pointer to the structure as the first parameter. C++ virtual table is also working similar way.

Plain ISO C is supported one way or another in almost every technology to create bindings and other type of glue functionality. Therefore, it is used to describe the binary interface with assumption of only standard platform-defined paddings and pointer sizes while all API callbacks use the standard platform-defined calling convention.

There are certain limitations as it is problematic to guarantee type safety without significant overhead, so binary interface user must be more aware of what is being done. State access is split into two API functions which operate over abstract void pointers.

2.7.1. Binary Data

Binary data interface is used to pass execute_callback arguments between technologies. Directly are supported:

  1. all ISO C primitive integers, floating point and boolean types,
  2. single dimension dynamic arrays(vectors) of such types,
  3. 8-, 16- and 32-bit Unicode strings,
  4. custom technology-specific types.

For efficiency reasons, complex types like vectors may be stored both in agnostic C format and as a technology-specific object instance. Therefore, binary value holding object supports cleanup callbacks to properly destroy such objects even from C or Assembly code.

typedef struct FutoInBinaryValue_ FutoInBinaryValue;
typedef struct FutoInType_ FutoInType;
typedef uint8_t FutoInTypeFlags;

enum
{
    FTN_TYPE_CUSTOM_OBJECT = 0x01,
    FTN_TYPE_STRING = 0x02,
    FTN_TYPE_STRING16 = 0x03,
    FTN_TYPE_STRING32 = 0x04,
    FTN_TYPE_BOOL = 0x05,
    FTN_TYPE_INT8 = 0x06,
    FTN_TYPE_INT16 = 0x07,
    FTN_TYPE_INT32 = 0x08,
    FTN_TYPE_INT64 = 0x09,
    FTN_TYPE_UINT8 = 0x0A,
    FTN_TYPE_UINT16 = 0x0B,
    FTN_TYPE_UINT32 = 0x0C,
    FTN_TYPE_UINT64 = 0x0D,
    FTN_TYPE_FLOAT = 0x0E,
    FTN_TYPE_DOUBLE = 0x0F,
    FTN_BASE_TYPE_MASK = 0x0F,
    // --
    FTN_TYPE_ARRAY = 0x10,
    FTN_COMPLEX_TYPE_MASK = 0xF0,
};

struct FutoInType_
{
    const FutoInTypeFlags flags;
    void (*const cleanup)(FutoInBinaryValue* v);
    // NOTE: extendable by implementation
};

struct FutoInBinaryValue_
{
    const FutoInType* type;
    union
    {
        const void* p;
        const char* cstr;
        const char16_t* cstr16;
        const char32_t* cstr32;
        bool b;
        int8_t i8;
        int16_t i16;
        int32_t i32;
        int64_t i64;
        uint8_t u8;
        uint16_t u16;
        uint32_t u32;
        uint64_t u64;
        float f;
        double d;
    };
    void* custom_data;
    uint32_t length;
};

static inline void futoin_reset_binval(FutoInBinaryValue* v)
{
    auto tp = v->type;
    if (tp) {
        auto* f = tp->cleanup;
        if (f) {
            f(v);
        }
    }

    v->type = 0;
    v->u64 = 0;
    v->custom_data = 0;
    v->length = 0;
}

2.7.2. Binary AsyncSteps Interface

Binary interface has a maximum limit of 4 custom arguments according to the industry best practices. Thefore, argument object is a collection of 4 binary value holders.

Binary interface is inspired by a typical C++ vtable and Java Native Interface specification. It is assumed that a pointer to an agnostic FutoInAsyncSteps structure is passed instead of technology-specific interface object. Such structure has the first field of a pointer to a function table. Each function receives the same pointer to the structure as the first argument. There may be additional implementation-defined fields. Therefore, business logic code must not assume that it knows actual size of such structure.

Unlike most of traditional cases, ISO C11 does not support exceptions and that imposes some restrictions and duties for business logic. For example, raising errors requires returning from the handler function manually.

The meaning of functions is the same, except additional data and similar arguments may be added to bind dynamic data to callbacks user-defined way.

The function table is also extended with AsyncTool interface for convenience.

The stateVariable() ABI primary purpose is to provide storage for technology-native value type, that breaks general interoperability guarantees, unless such variables get intentionally mapped as plain ISO C11 types.

By convention, special variable keys correspond to execution-related functionality, and act as read-only. They allocation and cleanup handlers must be null pointers. The special key "error_info" must be accessible as a const char*; "last_execption" must be accessible as void * mapped to C++ const std::exception_ptr*.

typedef struct FutoInAsyncStepsAPI_ FutoInAsyncStepsAPI;
typedef struct FutoInAsyncSteps_ FutoInAsyncSteps;
typedef struct FutoInSyncAPI_ FutoInSyncAPI;
typedef struct FutoInSync_ FutoInSync;
typedef struct FutoInArgs_ FutoInArgs;
typedef struct FutoInHandle_ FutoInHandle;

struct FutoInArgs_
{
    union
    {
        struct
        {
            FutoInBinaryValue arg0;
            FutoInBinaryValue arg1;
            FutoInBinaryValue arg2;
            FutoInBinaryValue arg3;
        };
        FutoInBinaryValue args[4];
    };
};

struct FutoInHandle_
{
    void* data1;
    void* data2;
    ptrdiff_t data3;
};

typedef void (*FutoInAsyncSteps_execute_callback)(
        FutoInAsyncSteps* bsi, void* data, const FutoInArgs* args);
typedef void (*FutoInAsyncSteps_error_callback)(
        FutoInAsyncSteps* bsi, void* data, const char* code);
typedef void (*FutoInAsyncSteps_cancel_callback)(
        FutoInAsyncSteps* bsi, void* data);

struct FutoInAsyncStepsAPI_
{
    union
    {
        struct
        {
            // Index 0
            void (*add)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    FutoInAsyncSteps_execute_callback f,
                    FutoInAsyncSteps_error_callback eh);
            // Index 1
            FutoInAsyncSteps* (*parallel)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    FutoInAsyncSteps_error_callback eh);
            // Index 2
            void* (*stateVariable)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    const char* name,
                    void* (*allocate)(void* data),
                    void (*cleanup)(void* data, void* value));
            // Index 3
            void* (*stack)(
                    FutoInAsyncSteps* bsi,
                    size_t data_size,
                    void (*cleanup)(void* value));
            // Index 4
            void (*success)(FutoInAsyncSteps* bsi, FutoInArgs* args);
            // Index 5
            void (*handle_error)(
                    FutoInAsyncSteps* bsi, const char* code, const char* info);
            // Index 6
            void (*setTimeout)(FutoInAsyncSteps* bsi, uint32_t timeout_ms);
            // Index 7
            void (*setCancel)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    FutoInAsyncSteps_cancel_callback ch);
            // Index 8
            void (*waitExternal)(FutoInAsyncSteps* bsi);
            // Index 9
            void (*loop)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    void (*f)(FutoInAsyncSteps* bsi, void* data),
                    const char* label);
            // Index 10
            void (*repeat)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    size_t count,
                    void (*f)(FutoInAsyncSteps* bsi, void* data, size_t i),
                    const char* label);
            // Index 11
            void (*breakLoop)(FutoInAsyncSteps* bsi, const char* label);
            // Index 12
            void (*continueLoop)(FutoInAsyncSteps* bsi, const char* label);
            // Index 13
            void (*execute)(
                    FutoInAsyncSteps* bsi,
                    void* data,
                    FutoInAsyncSteps_error_callback unhandled_error);
            // Index 14
            void (*cancel)(FutoInAsyncSteps* bsi);
            // Index 15
            void (*addSync)(
                    FutoInAsyncSteps* bsi,
                    FutoInSync* sync,
                    void* data,
                    FutoInAsyncSteps_execute_callback f,
                    FutoInAsyncSteps_error_callback eh);
            // Index 16
            ptrdiff_t (*rootId)(FutoInAsyncSteps* bsi);
            // Index 17
            int (*isValid)(FutoInAsyncSteps* bsi);
            // Index 18
            FutoInAsyncSteps* (*newInstance)(FutoInAsyncSteps* bsi);
            // Index 19
            void (*free)(FutoInAsyncSteps* bsi);
            // Index 20
            FutoInHandle (*sched_immediate)(
                    FutoInAsyncSteps* bsi, void* data, void (*cb)(void* data));
            // Index 21
            FutoInHandle (*sched_deferred)(
                    FutoInAsyncSteps* bsi,
                    uint32_t delay_ms,
                    void* data,
                    void (*cb)(void* data));
            // Index 22
            void (*sched_cancel)(FutoInAsyncSteps* bsi, FutoInHandle* handle);
            // Index 23
            int (*sched_is_valid)(FutoInAsyncSteps* bsi, FutoInHandle* handle);
            // Index 24
            int (*is_same_thread)(FutoInAsyncSteps* bsi);
        };
        void* funcs[25];
    };
    // NOTE: extendable by implementation
};
struct FutoInAsyncSteps_
{
#ifdef __cplusplus
    FutoInAsyncSteps_(const FutoInAsyncStepsAPI* api) noexcept : api(api) {}
#endif
    const FutoInAsyncStepsAPI* const api;
    // NOTE: extendable by implementation
};

2.7.3. Binary Synchronization Primitive's Interface

Synchronization object interface is defined separately from the AsyncSteps one as it is quite possible that AsyncSteps may be implemented in one technology while the synchronization object is implemented in an absolutely different one.

struct FutoInSyncAPI_
{
    union
    {
        struct
        {
            // Index 0
            void (*lock)(FutoInAsyncSteps* bsi, FutoInSync* sync);
            // Index 1
            void (*unlock)(FutoInAsyncSteps* bsi, FutoInSync* sync);
        };
        void* funcs[2];
    };
    // NOTE: extendable by implementation
};
struct FutoInSync_
{
#ifdef __cplusplus
    FutoInSync_() noexcept : api(nullptr) {}
#endif
    const FutoInSyncAPI* const api;
    // NOTE: extendable by implementation
};

3. Examples

In pseudo-code.

3.1. Single-Level Steps

AsyncStepsImpl asi;

asi.add(
    function( inner_as ){
        if ( something )
            inner_as.success( 1, 2 )
        else
            inner_as.error( NotImplemented )
    },
    function( inner_as, error ){
        externalError( error );
    }
).add(
    function( inner_as, res1, res2 ){
        externalSuccess( res1, res2 );
    },
)

3.2. Sub-Steps

AsyncStepsImpl asi;

asi.add(
    function( inner_as ){
        inner_as.add(
            function( inner2_as ){
                if ( something )
                    inner2_as.success( 1 )
                else
                    inner2_as.error( NotImplemented )
            },
            function( inner2_as, error )
            {
                log( "Spotted error " + error )
                // continue with higher level error handlers
            }
        )
        inner_as.add(
            function( inner2_as, res1 ){
                inner2_as.success( res1, 2 )
            }
        )
    },
    function( inner_as, error ){
        externalError( error );
    }
).add(
    function( inner_as, res1, res2 ){
        externalSuccess( res1, res2 );
    },
)

3.3. The parallel() Steps and state()

AsyncStepsImpl asi;

asi.add(
    function( inner_as ){
        inner_as.parallel().add(
            function( inner2_as ){
                inner2_as.state().parallel_1 = 1;
            },
            function( inner2_as, error )
            {
                log( "Spotted error " + error )
                // continue with higher level error handlers
            }
        ).add(
            function( inner2_as ){
                inner2_as.state().parallel_2 = 2;
            },
            function( inner2_as, error )
            {
                inner2_as.state().parallel_2 = 0;
                // ignore error
            }
        )
    },
    function( inner_as, error ){
        externalError( error );
    }
).add(
    function( inner_as, res1, res2 ){
        externalSuccess(
            inner_as.state().parallel_1,
            inner_as.state().parallel_2
        );
    },
)

3.4. Loops

AsyncStepsImpl asi;

asi.add(
    function( asi ){
        asi.repeat( 3, function( asi, i ) {
            print i;
        } );

        asi.forEach( [ 1, 3, 3 ], function( asi, k, v ) {
            print k "=" v;
        } );

        asi.forEach( asi.state(), function( asi, k, v ) {
            print k "=" v;
        } );
    },
)

3.5. External Event Wait

AsyncStepsImpl asi;

asi.add(
    function( asi ){
        asi.waitExternal();

        callSomeExternal( function(err) {
            if (err)
            {
                try {
                    asi.error(err);
                } catch {
                    // ignore
                }
            }
            else
            {
                asi.success();
            }
        } );
    },
)

3.6. Synchronization

AsyncStepsImpl asi;
MutexImpl mutex(10);

asi.sync(
    mutex,
    function( asi ){
        // critical section with regular AsyncSteps
    },
)

=END OF SPEC=