Reece
7fde7d04fb
[+] IIOBufferedStreamAvailable callback [+] IIOProcessor singleshot work items / IIOProcessorWorkUnit [+] IOPipeCallback description of a pipes destination [+] IOPipeInputData description of a pipes source [+] IOPipeRequest, IOPipeRequestAIO, IOPipeRequestBasic [+] IPipeBackend hooks for on start/end hooks of IOPipeRequestBasics [*] Update IOAdapaterAsyncStream implementation to better support caller buffering [*] Updated IAsyncStreamReader to include a warm/dequeue API for direct async usage [*] Fix NT IO regressions [*] Fix ThreadPool shutdown on an unregistered thread [*] Fix race condition in Async.NT.cpp & fix signalable state to closely match Linux (dunno how this was passing before) [*] Refactor IOProcessorWorkUnit -> IIOProcessorWorkUnit [*] Update experimental header to include the changes
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: IPipeBackend.hpp
|
|
Date: 2022-6-20
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO
|
|
{
|
|
AUKN_INTERFACE(IPipeBackend,
|
|
/**
|
|
* @brief pipe starting hook
|
|
*/
|
|
AUI_METHOD(void, OnStart, ()),
|
|
|
|
/**
|
|
* @brief This function is called once the stream reader returns zero
|
|
* You should use this opportunity to schedule the next waitable item state (eg, initiate async read, set event high, etc)
|
|
* You can return false to soft-fail the pipe to indicate EoS
|
|
* You should otherwise return true in order to continue yield until the next waitable item state change
|
|
* Note, an EoS event may also occur during the next alert state change should the stream reader return an error
|
|
*/
|
|
AUI_METHOD(void, OnEndPump, ()),
|
|
|
|
/**
|
|
* @brief pipe end hook
|
|
*/
|
|
AUI_METHOD(void, OnEnd, ())
|
|
);
|
|
} |