LCleanedupHandle Class Reference

#include <emanaged.h>

class LCleanedupHandle : protected LAutoHandleBase

Inherits from

Detailed Description

A class template for the creation and CleanupStack-based local-scope automatic management of resource handles (typically instances of R-classes).

Note:

This class can only be used to define locals, never data members. See below for an explanation and links to management classes suitable for use in different contexts. It should never be used in the same function as code that uses the CleanupStack API directly.

This class template can be used to create and protect a resource handle of type T (typically a R-class) such that the instance of T referred to is automatically cleaned up when either of the following occur:
  • The referring local variable goes out of scope normally

  • The referring local variable goes out of scope due to an untrapped leave causing the scope to be exited non-locally

By default, the cleanup action is to call the Close() member function of the managed handle. An alternative cleanup strategy may be selected by specifying a cleanup strategy template class in the optional second template parameter position. The most common alternative cleanup strategies are predefined. It is also possible to specialize the default cleanup action for a given class using the DEFINE_CLEANUP_FUNCTION macro.

The constructors of this class may leave.

Any arguments supplied when initializing an instance of this class are automatically passed through to T's constructors.

As a convenience, the methods of the managed handle may be accessed via "->" notation directly on the management object, while "." notation is used to access the interface of the management object itself. Using "*" to dereference the management object yields a T&, and is often useful when passing the managed object as an argument.

Automatic cleanup may be disabled at any time by calling Unmanage(), while cleanup may be forced at any time by calling ReleaseResource().

Example:
	// block scope example
	{
	LCleanedupHandle<RClosable> obj;
	obj->DoSomethingL(); // leave-safe
	if (obj->Finished())
		return; // RClosable::Close is invoked automatically
	obj->DoSomethingElseL(); // leave-safe
	// RClosable::Close is invoked automatically
	}

Behind the scenes, this class template is implemented in terms of the thread-local CleanupStack, restricting its use to locals on the stack. This use of the CleanupStack ensures a consistent cleanup order between functions that call one another, even if they use different cleanup idioms.

This class template together with the cleanup strategy class templates provide a template-based implementation of the Strategy design pattern (See also: Policy-based design).

See also: TClose which implements the default Close() calling cleanup strategy TResetAndDestroy which implements an alternative ResetAndDestroy() calling cleanup strategy TFree which implements an alternative Free() calling cleanup strategy TDestroy which implements an alternative Destroy() calling cleanup strategy TRelease which implements an alternative Release() calling cleanup strategy LManagedHandle which has the same interface, but does not use the cleanup stack and is suitable for protecting the data members of classes

Member Type Definition Documentation

Typedef CleanupStrategy

typedef CleanupStrategyTypeCleanupStrategy

Typedef ManagedType

typedef TManagedType

Constructor & Destructor Documentation

LCleanedupHandle ( )

LCleanedupHandle()[inline]

Default constructor.

LCleanedupHandle ( const Param1 & )

LCleanedupHandle(const Param1 &aParam1)[inline, explicit]

LCleanedupHandle ( Param1 & )

LCleanedupHandle(Param1 &aParam1)[inline, explicit]

LCleanedupHandle ( const Param1 &, const Param2 & )

LCleanedupHandle(const Param1 &aParam1,
const Param2 &aParam2
)[inline]

LCleanedupHandle ( const Param1 &, Param2 & )

LCleanedupHandle(const Param1 &aParam1,
Param2 &aParam2
)[inline]

LCleanedupHandle ( Param1 &, const Param2 & )

LCleanedupHandle(Param1 &aParam1,
const Param2 &aParam2
)[inline]

LCleanedupHandle ( Param1 &, Param2 & )

LCleanedupHandle(Param1 &aParam1,
Param2 &aParam2
)[inline]

~LCleanedupHandle ( )

~LCleanedupHandle()[inline]

Member Function Documentation

Cleanup ( TAny * )

voidCleanup(TAny *aPtr)[static, inline]

ReleaseResource ( )

voidReleaseResource()[inline]

If automatic resource management is enabled, calls the cleanup function defined by the cleanup strategy with the managed resource handle object and then disables the automatic resource management for this object. The cleanup strategy is specified by the CleanupStrategy template template parameter. The default cleanup strategy is to call the cleanup member function on the contained resource handle object. which is a member function named Close(), unless explicitly defined otherwise for the class of the object, for example by using the provided DEFINE_CLEANUP_FUNCTION macro.

Swap ( LCleanedupHandle & )

voidSwap(LCleanedupHandle &aCleanedupHandle)[inline]

operator= ( const U & )

LCleanedupHandle &operator=(const U &aHandle)[inline]

Assigns a new resource to be managed. If the LCleanedupHandle object already contains a managed resource handle, then the managed resource is released using the specified cleanup strategy before assigning the new managed resource.