Home
UV module

Handle

Wrapper class for managing uv_handle_t variants.

Handle

#include <icy/handle.h>
template<typename T>
class Handle

Defined in src/base/include/icy/handle.h:133

Subclassed by: Stream< uv_pipe_t >, Stream< uv_tcp_t >, Stream< T >

Wrapper class for managing uv_handle_t variants.

This class manages the handle during its lifecycle and safely handles the asynchronous destruction mechanism.

List of all members

NameKindOwner
HandlefunctionDeclared here
~HandlefunctionDeclared here
initfunctionDeclared here
invokefunctionDeclared here
invokeOrThrowfunctionDeclared here
closefunctionDeclared here
reffunctionDeclared here
unreffunctionDeclared here
initializedfunctionDeclared here
activefunctionDeclared here
closingfunctionDeclared here
closedfunctionDeclared here
errorfunctionDeclared here
setErrorfunctionDeclared here
setUVErrorfunctionDeclared here
setAndThrowErrorfunctionDeclared here
throwLastErrorfunctionDeclared here
loopfunctionDeclared here
resetfunctionDeclared here
getfunctionDeclared here
tidfunctionDeclared here
contextfunctionDeclared here
setCloseCleanupfunctionDeclared here
clearCloseCleanupfunctionDeclared here
assertThreadfunctionDeclared here
_loopvariableDeclared here
_contextvariableDeclared here
_tidvariableDeclared here
_errorvariableDeclared here
onErrorfunctionDeclared here
onClosefunctionDeclared here
HandlefunctionDeclared here
operator=functionDeclared here
HandlefunctionDeclared here
operator=functionDeclared here
TypetypedefDeclared here

Public Methods

ReturnNameDescription
Handle inlineConstruct the handle bound to the given event loop.
boolinit inlineInitialize the underlying libuv handle by calling f with the loop, the raw handle pointer, and any additional args.
boolinvoke inlineInvoke a libuv function f with args on the initialized handle.
voidinvokeOrThrow inlineInvoke a libuv function f with args, throwing on failure.
voidclose virtual inlineClose and destroy the handle.
voidref inlineRe-reference the handle with the event loop after a previous [unref()](#unref).
voidunref inlineUnreference the handle from the event loop.
boolinitialized const inlineReturn true if the handle has been successfully initialized via [init()](#init-8).
boolactive virtual const inlineReturn true when the handle is active (libuv uv_is_active).
boolclosing virtual const inlineReturn true if uv_close has been called and the handle is awaiting its close callback (libuv uv_is_closing).
boolclosed virtual const inlineReturn true if the handle has been fully closed (context released).
const icy::Error &error const inlineReturn the last error set on this handle, or a default-constructed [Error](icy-Error.html#error) if no error has occurred.
voidsetError virtual inlineSet the error state and invoke [onError()](#onerror).
voidsetUVError inlineTranslate a libuv error code into an [Error](icy-Error.html#error) and call [setError()](#seterror-1).
voidsetAndThrowError inlineSet the error state from a libuv error code and throw a std::runtime_error.
voidthrowLastError inlineThrow a std::runtime_error if the handle currently holds an error.
uv::Loop *loop const inlineReturn the event loop this handle is bound to.
voidreset inlineClose the current handle (if open) and allocate a fresh [Context](icy-uv-Context.html#context-2), leaving the handle ready to be re-initialized via [init()](#init-8).
Handle *get const inlineReturn the raw libuv handle pointer cast to [Handle](#handle-6).
std::thread::idtid const inlineReturn the ID of the thread that constructed this handle.
IntrusivePtr< Context< T > >context const inlineReturn the raw [Context](icy-uv-Context.html#context-2) that owns the libuv handle memory.
voidsetCloseCleanup inline
voidclearCloseCleanup inline
voidassertThread const inlineThrow std::logic_error if called from any thread other than the thread that constructed this handle.

Handle

inline

inline Handle(uv::Loop * loop = uv::defaultLoop())

Defined in src/base/include/icy/handle.h:140

Construct the handle bound to the given event loop.

Parameters

  • loop Event loop to associate this handle with. Defaults to the process-wide default loop.

init

inline

template<typename F, typename... Args> inline bool init(F && f, Args &&... args)

Defined in src/base/include/icy/handle.h:161

Initialize the underlying libuv handle by calling f with the loop, the raw handle pointer, and any additional args.

Must be called exactly once before any other operations. Throws std::logic_error if the handle is already initialized or the context is invalid.

Parameters

  • f libuv init function (e.g. uv_tcp_init).

  • args Additional arguments forwarded after the loop and handle pointer.

Returns

true on success; false and sets the error state on failure.


invoke

inline

template<typename F, typename... Args> inline bool invoke(F && f, Args &&... args)

Defined in src/base/include/icy/handle.h:183

Invoke a libuv function f with args on the initialized handle.

Throws std::logic_error if the handle is not yet initialized. Sets the error state and returns false if f returns a libuv error code.

Parameters

  • f libuv function to call.

  • args Arguments forwarded to f.

Returns

true on success; false on libuv error.


invokeOrThrow

inline

template<typename F, typename... Args> inline void invokeOrThrow(const std::string & message, F && f, Args &&... args)

Defined in src/base/include/icy/handle.h:204

Invoke a libuv function f with args, throwing on failure.

Identical to [invoke()](#invoke) but throws a std::runtime_error with message prepended if f returns a libuv error code. Must not be called from inside a libuv callback.

Parameters

  • message Error message prefix used in the thrown exception.

  • f libuv function to call.

  • args Arguments forwarded to f.


close

virtual inline

virtual inline void close()

Defined in src/base/include/icy/handle.h:218

Close and destroy the handle.

Releases the [Context](icy-uv-Context.html#context-2) (which schedules the async uv_close) and then fires [onClose()](#onclose). Safe to call more than once; subsequent calls are no-ops.

Reimplemented by

ref

inline

inline void ref()

Defined in src/base/include/icy/handle.h:235

Re-reference the handle with the event loop after a previous [unref()](#unref).

When all handles are unref'd the loop exits automatically. This call reverses that. Has no effect if the handle is not initialized.


unref

inline

inline void unref()

Defined in src/base/include/icy/handle.h:245

Unreference the handle from the event loop.

The loop will exit when all active handles are unref'd, even if this handle is still alive. Has no effect if the handle is not initialized.


initialized

const inline

inline bool initialized() const

Defined in src/base/include/icy/handle.h:252

Return true if the handle has been successfully initialized via [init()](#init-8).


active

virtual const inline

virtual inline bool active() const

Defined in src/base/include/icy/handle.h:261

Return true when the handle is active (libuv uv_is_active).

"Active" has type-specific meaning: a timer is active while counting, a stream is active while connected, etc.


closing

virtual const inline

virtual inline bool closing() const

Defined in src/base/include/icy/handle.h:268

Return true if uv_close has been called and the handle is awaiting its close callback (libuv uv_is_closing).


closed

virtual const inline

virtual inline bool closed() const

Defined in src/base/include/icy/handle.h:274

Return true if the handle has been fully closed (context released).

Reimplemented by

error

const inline

inline const icy::Error & error() const

Defined in src/base/include/icy/handle.h:281

Return the last error set on this handle, or a default-constructed [Error](icy-Error.html#error) if no error has occurred.


setError

virtual inline

virtual inline void setError(const Error & error)

Defined in src/base/include/icy/handle.h:289

Set the error state and invoke [onError()](#onerror).

Parameters

  • error Error value to store and propagate.
Reimplemented by

setUVError

inline

inline void setUVError(int err, std::string prefix = "UV Error")

Defined in src/base/include/icy/handle.h:303

Translate a libuv error code into an [Error](icy-Error.html#error) and call [setError()](#seterror-1).

Safe to call from inside libuv callbacks.

Parameters

  • err libuv error code (negative integer).

  • prefix Human-readable prefix prepended to the formatted message.


setAndThrowError

inline

inline void setAndThrowError(int err, std::string prefix = "UV Error")

Defined in src/base/include/icy/handle.h:317

Set the error state from a libuv error code and throw a std::runtime_error.

Must not be called from inside libuv callbacks; use [setUVError()](#setuverror) there.

Parameters

  • err libuv error code (negative integer).

  • prefix Human-readable prefix prepended to the thrown message.


throwLastError

inline

inline void throwLastError(std::string prefix = "UV Error")

Defined in src/base/include/icy/handle.h:329

Throw a std::runtime_error if the handle currently holds an error.

The stored error's message is re-formatted with prefix before throwing. No-op if the handle is not in an error state.

Parameters

  • prefix Human-readable prefix used when re-formatting the message.

loop

const inline

inline uv::Loop * loop() const

Defined in src/base/include/icy/handle.h:340

Return the event loop this handle is bound to.

Asserts that the caller is on the owning thread.

Returns

Pointer to the associated [uv::Loop](uv.html#loop-1).


reset

inline

inline void reset()

Defined in src/base/include/icy/handle.h:348

Close the current handle (if open) and allocate a fresh [Context](icy-uv-Context.html#context-2), leaving the handle ready to be re-initialized via [init()](#init-8).


get

const inline

template<typename Handle = T> inline Handle * get() const

Defined in src/base/include/icy/handle.h:363

Return the raw libuv handle pointer cast to [Handle](#handle-6).

Returns nullptr if the context has been released (handle closed). Asserts that the caller is on the owning thread.

Parameters

  • [Handle](#handle-6) Target type; defaults to the native handle type T.

Returns

Pointer to the underlying libuv handle, or nullptr.


tid

const inline

inline std::thread::id tid() const

Defined in src/base/include/icy/handle.h:374

Return the ID of the thread that constructed this handle.

All handle operations must be performed on this thread.

Returns

std::thread::id of the owning thread.


context

const inline

inline IntrusivePtr< Context< T > > context() const

Defined in src/base/include/icy/handle.h:385

Return the raw [Context](icy-uv-Context.html#context-2) that owns the libuv handle memory.

Primarily for use by subclasses and libuv callbacks that need to access the underlying libuv handle memory.

Returns

A retained reference to the [Context](icy-uv-Context.html#context-2), or an empty reference if closed.


setCloseCleanup

inline

template<typename U> inline void setCloseCleanup(U * data)

Defined in src/base/include/icy/handle.h:391


clearCloseCleanup

inline

inline void clearCloseCleanup()

Defined in src/base/include/icy/handle.h:400


assertThread

const inline

inline void assertThread() const

Defined in src/base/include/icy/handle.h:408

Throw std::logic_error if called from any thread other than the thread that constructed this handle.

Protected Attributes

ReturnNameDescription
uv::Loop *_loop
IntrusivePtr< Context< T > >_context
std::thread::id_tid
Error_error

_loop

uv::Loop * _loop

Defined in src/base/include/icy/handle.h:443


_context

IntrusivePtr< Context< T > > _context

Defined in src/base/include/icy/handle.h:444


_tid

std::thread::id _tid = std::this_thread::get_id()

Defined in src/base/include/icy/handle.h:445


_error

Error _error

Defined in src/base/include/icy/handle.h:446

Protected Methods

ReturnNameDescription
voidonError virtual inlineCalled by [setError()](#seterror-1) after the error state has been updated.
voidonClose virtual inlineCalled by [close()](#close-18) after the context has been released.
HandleNonCopyable and NonMovable.
HandleDeleted constructor.

onError

virtual inline

virtual inline void onError(const Error & error)

Defined in src/base/include/icy/handle.h:424

Called by [setError()](#seterror-1) after the error state has been updated.

Override to react to errors. The default implementation is a no-op.

Parameters

  • error The error that was set.
Reimplemented by

onClose

virtual inline

virtual inline void onClose()

Defined in src/base/include/icy/handle.h:432

Called by [close()](#close-18) after the context has been released.

Override to perform cleanup on handle closure. The default implementation is a no-op.

Reimplemented by

Handle

Handle(const Handle &) = delete

Defined in src/base/include/icy/handle.h:438

NonCopyable and NonMovable.


Handle

Handle(Handle &&) = delete

Defined in src/base/include/icy/handle.h:440

Deleted constructor.

Public Types

NameDescription
TypeDefine the native handle type.

Type

using Type = T

Defined in src/base/include/icy/handle.h:416

Define the native handle type.