Ion
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ion::gfxutils::ResourceCallback< T > Class Template Reference

Class that allows blocking until a callback is called and automagically destroys itself after both Callback() and WaitForCompletion() have executed. More...

#include "resourcecallback.h"

Inheritance diagram for ion::gfxutils::ResourceCallback< T >:
Collaboration diagram for ion::gfxutils::ResourceCallback< T >:

Public Types

typedef base::ReferentPtr
< ResourceCallback< T >
>::Type 
RefPtr
 

Public Member Functions

 ResourceCallback (bool do_wait)
 
const std::vector< T > & GetData () const
 Returns the data received by Callback(). More...
 
void Callback (const std::vector< T > &data)
 This function is compatible with ResourceManager::InfoCallback, and should be used as the callback passed to ResourceManager's Request() functions. More...
 
void WaitForCompletion (std::vector< T > *data)
 
const AllocatorPtr & GetAllocator () const
 Returns the Allocator that was used for the instance. More...
 
const AllocatorPtr & GetNonNullAllocator () const
 Return our allocator, or the default allocator if the instance was declared on the stack. More...
 
const AllocatorPtr & GetAllocatorForLifetime (AllocationLifetime lifetime) const
 Convenience function that returns the Allocator to use to allocate an object with a specific lifetime. More...
 
void * operator new (size_t size)
 The standard no-parameter new operator uses the default Allocator. More...
 
void * operator new (size_t size, AllocationLifetime lifetime)
 This overloaded version of the new operator uses the AllocationManager's default Allocator for the specified lifetime. More...
 
void * operator new (size_t size, const AllocatorPtr &allocator)
 This overloaded version of the new operator takes the Allocator to use directly as a parameter. More...
 
void * operator new (size_t size, const AllocatorPtr &allocator, void *ptr)
 Special operator new for using placement new with Allocatables. More...
 
void * operator new (size_t size, void *ptr)
 The placement new operator is defined conventionally. More...
 
void operator delete (void *ptr)
 Define the delete operator to use specialized functions dealing with an Allocator. More...
 
void operator delete (void *ptr, AllocationLifetime lifetime)
 Windows requires these (or it issues C4291 warnings). More...
 
void operator delete (void *ptr, const AllocatorPtr &allocator)
 
void operator delete (void *ptr, void *ptr2)
 The placement delete operator does nothing, as usual. More...
 
int GetRefCount () const
 GetRefCount() is part of the interface necessary for SharedPtr. More...
 

Protected Member Functions

 ~ResourceCallback () override
 The constructor is protected because this class is derived from Referent. More...
 

Protected Attributes

std::vector< Tdata_
 
port::Semaphore semaphore_
 
RefPtr callback_holder_
 
RefPtr wait_holder_
 

Detailed Description

template<typename T>
class ion::gfxutils::ResourceCallback< T >

Class that allows blocking until a callback is called and automagically destroys itself after both Callback() and WaitForCompletion() have executed.

This is accomplished by holding two references to itself.

Definition at line 33 of file resourcecallback.h.

Member Typedef Documentation

template<typename T >
typedef base::ReferentPtr<ResourceCallback<T> >::Type ion::gfxutils::ResourceCallback< T >::RefPtr

Definition at line 35 of file resourcecallback.h.

Constructor & Destructor Documentation

template<typename T >
ion::gfxutils::ResourceCallback< T >::~ResourceCallback ( )
inlineoverrideprotected

The constructor is protected because this class is derived from Referent.

Definition at line 87 of file resourcecallback.h.

References ion::gfxutils::ResourceCallback< T >::callback_holder_, DCHECK, ion::base::SharedPtr< T >::Get(), and ion::gfxutils::ResourceCallback< T >::wait_holder_.

Member Function Documentation

template<typename T >
void ion::gfxutils::ResourceCallback< T >::Callback ( const std::vector< T > &  data)
inline

This function is compatible with ResourceManager::InfoCallback, and should be used as the callback passed to ResourceManager's Request() functions.

It will be called after the request has been serviced and with the requested data.

Definition at line 50 of file resourcecallback.h.

References ion::gfxutils::ResourceCallback< T >::callback_holder_, ion::gfxutils::ResourceCallback< T >::data_, ion::port::Semaphore::Post(), and ion::gfxutils::ResourceCallback< T >::semaphore_.

const AllocatorPtr& ion::base::Allocatable::GetAllocator ( ) const
inlineinherited

Returns the Allocator that was used for the instance.

This will be NULL if the instance was declared on the stack or created with normal placement new.

Definition at line 68 of file allocatable.h.

References allocator_.

Referenced by ion::base::DataContainer::CreateAndCopy(), ion::text::DynamicFontImage::FindContainingImageDataIndex(), and ion::text::DynamicFontImage::FindImageDataIndex().

const AllocatorPtr& ion::base::Allocatable::GetAllocatorForLifetime ( AllocationLifetime  lifetime) const
inlineinherited
template<typename T >
const std::vector<T>& ion::gfxutils::ResourceCallback< T >::GetData ( ) const
inline

Returns the data received by Callback().

Definition at line 44 of file resourcecallback.h.

References ion::gfxutils::ResourceCallback< T >::data_.

const AllocatorPtr& ion::base::Allocatable::GetNonNullAllocator ( ) const
inlineinherited

Return our allocator, or the default allocator if the instance was declared on the stack.

Definition at line 72 of file allocatable.h.

References allocator_, and ion::base::AllocationManager::GetNonNullAllocator().

int ion::base::Shareable::GetRefCount ( ) const
inlineinherited

GetRefCount() is part of the interface necessary for SharedPtr.

Definition at line 34 of file shareable.h.

Referenced by ion::base::Notifier::RemoveReceiver().

void ion::base::Allocatable::operator delete ( void *  ptr)
inlineinherited

Define the delete operator to use specialized functions dealing with an Allocator.

Definition at line 109 of file allocatable.h.

void ion::base::Allocatable::operator delete ( void *  ptr,
AllocationLifetime  lifetime 
)
inlineinherited

Windows requires these (or it issues C4291 warnings).

Definition at line 112 of file allocatable.h.

void ion::base::Allocatable::operator delete ( void *  ptr,
const AllocatorPtr allocator 
)
inlineinherited

Definition at line 113 of file allocatable.h.

void ion::base::Allocatable::operator delete ( void *  ptr,
void *  ptr2 
)
inlineinherited

The placement delete operator does nothing, as usual.

Definition at line 118 of file allocatable.h.

void* ion::base::Allocatable::operator new ( size_t  size)
inlineinherited

The standard no-parameter new operator uses the default Allocator.

Definition at line 84 of file allocatable.h.

void* ion::base::Allocatable::operator new ( size_t  size,
AllocationLifetime  lifetime 
)
inlineinherited

This overloaded version of the new operator uses the AllocationManager's default Allocator for the specified lifetime.

Definition at line 88 of file allocatable.h.

void* ion::base::Allocatable::operator new ( size_t  size,
const AllocatorPtr allocator 
)
inlineinherited

This overloaded version of the new operator takes the Allocator to use directly as a parameter.

If the Allocator pointer is NULL, this uses the default Allocator.

Definition at line 95 of file allocatable.h.

void* ion::base::Allocatable::operator new ( size_t  size,
const AllocatorPtr allocator,
void *  ptr 
)
inlineinherited

Special operator new for using placement new with Allocatables.

Definition at line 100 of file allocatable.h.

void* ion::base::Allocatable::operator new ( size_t  size,
void *  ptr 
)
inlineinherited

The placement new operator is defined conventionally.

Definition at line 105 of file allocatable.h.

Member Data Documentation


The documentation for this class was generated from the following file: