Reflection class describing assembly. Support is limited as the rules are quite different between C# and C++. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument. More...

#include "assembly.h"

Inherits System::Object.

Public Member Functions

ASPOSECPP_SHARED_API Assembly ()
 Constructor. More...
 
virtual ASPOSECPP_SHARED_API System::SharedPtr< System::IO::StreamGetManifestResourceStream (String name) const
 Gets stream connected to manifest resource. More...
 
virtual ASPOSECPP_SHARED_API ArrayPtr< StringGetManifestResourceNames () const
 Gets names of manifest resources. More...
 
virtual ASPOSECPP_SHARED_API ArrayPtr< System::TypeInfoGetTypes () const
 Gets types declared by assembly. More...
 
virtual ASPOSECPP_SHARED_API SharedPtr< AssemblyNameGetName () const
 Gets assembly name. More...
 
virtual ASPOSECPP_SHARED_API String get_FullName () const
 Gets assembly full name. More...
 
virtual ASPOSECPP_SHARED_API String get_CodeBase () const
 Gets directory of current assembly. Support is limited. More...
 
virtual ASPOSECPP_SHARED_API String get_Location () const
 Gets assembly location. Not implemented. More...
 
- Public Member Functions inherited from System::Object
ASPOSECPP_SHARED_API Object ()
 Creates object. Initializes all internal data structures. More...
 
virtual ASPOSECPP_SHARED_API ~Object ()
 Destroys object. Frees all internal data structures. More...
 
ASPOSECPP_SHARED_API Object (Object const &x)
 Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
Objectoperator= (Object const &x)
 Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
ObjectSharedRefAdded ()
 Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int SharedRefRemovedSafe ()
 Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int RemovedSharedRefs (int count)
 Decreases shared reference count by specified value. More...
 
Detail::SmartPtrCounter * WeakRefAdded ()
 Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
void WeakRefRemoved ()
 Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
Detail::SmartPtrCounter * GetCounter ()
 Gets reference counter data structure associated with the object. More...
 
int SharedCount () const
 Gets current value of shared reference counter. More...
 
ASPOSECPP_SHARED_API void Lock ()
 Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
 
ASPOSECPP_SHARED_API void Unlock ()
 Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
 
virtual ASPOSECPP_SHARED_API bool Equals (ptr obj)
 Compares objects using C# Object.Equals semantics. More...
 
virtual ASPOSECPP_SHARED_API int32_t GetHashCode () const
 Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. More...
 
virtual ASPOSECPP_SHARED_API String ToString () const
 Analog of C# Object.ToString() method. Enables converting custom objects to string. More...
 
virtual ASPOSECPP_SHARED_API ptr MemberwiseClone () const
 Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
 
virtual ASPOSECPP_SHARED_API const TypeInfoGetType () const
 Gets actual type of object. Analog of C# System.Object.GetType() call. More...
 
virtual ASPOSECPP_SHARED_API bool Is (const TypeInfo &targetType) const
 Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
 
virtual ASPOSECPP_SHARED_API void SetTemplateWeakPtr (uint32_t argument)
 Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
 
virtual ASPOSECPP_SHARED_API bool FastCast (const Details::FastRttiBase &helper, void **out_ptr) const
 For internal purposes only. More...
 
template<>
bool Equals (float const &objA, float const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool Equals (double const &objA, double const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool ReferenceEquals (String const &str, std::nullptr_t)
 Specialization of Object::ReferenceEquals for case of string and nullptr. More...
 
template<>
bool ReferenceEquals (String const &str1, String const &str2)
 Specialization of Object::ReferenceEquals for case of strings. More...
 

Static Public Member Functions

static ASPOSECPP_SHARED_API System::SharedPtr< AssemblyGetExecutingAssembly ()
 Gets executing assembly. More...
 
static ASPOSECPP_SHARED_API System::SharedPtr< AssemblyGetEntryAssembly ()
 Gets entry assembly. More...
 
static ASPOSECPP_SHARED_API System::SharedPtr< AssemblyGetCallingAssembly ()
 Gets calling assembly. More...
 
static ASPOSECPP_SHARED_API System::SharedPtr< AssemblyGetAssembly (const TypeInfo &type)
 Gets assembly defining specific type. More...
 
- Static Public Member Functions inherited from System::Object
static bool ReferenceEquals (ptr const &objA, ptr const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, T const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, std::nullptr_t)
 Reference-compares value type object with nullptr. More...
 
template<typename T1 , typename T2 >
static std::enable_if< IsSmartPtr< T1 >::value &&IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares reference type objects in C# style. More...
 
template<typename T1 , typename T2 >
static std::enable_if<!IsSmartPtr< T1 >::value &&!IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares value type objects in C# style. More...
 
static const TypeInfoType ()
 Implements C# typeof(System.Object) construct. More...
 

Protected Types

typedef std::map< String, std::pair< const uint8_t *, uint32_t > > RawResources
 Map of raw resources (name => {data, size}). More...
 

Protected Member Functions

ASPOSECPP_SHARED_API ~Assembly () override
 Destructor. More...
 
ASPOSECPP_SHARED_API Assembly (const String &name, const String &full_name, const ArrayPtr< String > &resource_names, const RawResources &raw_resources)
 Constructor. More...
 
void ASPOSECPP_SHARED_API RegisterType (const System::TypeInfo &type)
 Registers specific type in assembly. More...
 

Static Protected Member Functions

static ASPOSECPP_SHARED_API void Setup (const SharedPtr< Assembly > &assembly, const String &name, const String &full_name, const ArrayPtr< String > &resource_names, const RawResources &raw_resources)
 Sets assembly object parameters. More...
 

Protected Attributes

String m_name
 Assembly name. More...
 
String m_full_name
 Assembly full name. More...
 
System::ArrayPtr< Stringm_manifest_resource_names
 Resource names. More...
 
RawResources m_resources_raw
 Resource data. More...
 

Additional Inherited Members

- Public Types inherited from System::Object
typedef SmartPtr< Objectptr
 Alias for smart pointer type. More...
 

Detailed Description

Reflection class describing assembly. Support is limited as the rules are quite different between C# and C++. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

Member Typedef Documentation

◆ RawResources

typedef std::map<String, std::pair<const uint8_t*, uint32_t> > System::Reflection::Assembly::RawResources
protected

Map of raw resources (name => {data, size}).

Constructor & Destructor Documentation

◆ Assembly() [1/2]

ASPOSECPP_SHARED_API System::Reflection::Assembly::Assembly ( )

Constructor.

◆ ~Assembly()

ASPOSECPP_SHARED_API System::Reflection::Assembly::~Assembly ( )
overrideprotected

Destructor.

◆ Assembly() [2/2]

ASPOSECPP_SHARED_API System::Reflection::Assembly::Assembly ( const String name,
const String full_name,
const ArrayPtr< String > &  resource_names,
const RawResources raw_resources 
)
protected

Constructor.

Parameters
nameAssembly short name.
full_nameAssembly long name.
resource_namesNames of resources available in assembly.
raw_resourcesResources held by assembly.

Member Function Documentation

◆ get_CodeBase()

virtual ASPOSECPP_SHARED_API String System::Reflection::Assembly::get_CodeBase ( ) const
virtual

Gets directory of current assembly. Support is limited.

Returns
Path to directory with assembly.

◆ get_FullName()

virtual ASPOSECPP_SHARED_API String System::Reflection::Assembly::get_FullName ( ) const
virtual

Gets assembly full name.

Returns
Assembly full name.

◆ get_Location()

virtual ASPOSECPP_SHARED_API String System::Reflection::Assembly::get_Location ( ) const
virtual

Gets assembly location. Not implemented.

◆ GetAssembly()

static ASPOSECPP_SHARED_API System::SharedPtr<Assembly> System::Reflection::Assembly::GetAssembly ( const TypeInfo type)
static

Gets assembly defining specific type.

Parameters
typeType to get defining assembly for.
Returns
Pointer to assembly defining specific type.

◆ GetCallingAssembly()

static ASPOSECPP_SHARED_API System::SharedPtr<Assembly> System::Reflection::Assembly::GetCallingAssembly ( )
static

Gets calling assembly.

Returns
Pointer to calling aseembly.

◆ GetEntryAssembly()

static ASPOSECPP_SHARED_API System::SharedPtr<Assembly> System::Reflection::Assembly::GetEntryAssembly ( )
static

Gets entry assembly.

Returns
Pointer to entry aseembly.

◆ GetExecutingAssembly()

static ASPOSECPP_SHARED_API System::SharedPtr<Assembly> System::Reflection::Assembly::GetExecutingAssembly ( )
static

Gets executing assembly.

Returns
Pointer to executing aseembly.

◆ GetManifestResourceNames()

virtual ASPOSECPP_SHARED_API ArrayPtr<String> System::Reflection::Assembly::GetManifestResourceNames ( ) const
virtual

Gets names of manifest resources.

Returns
Array of resoure names.

◆ GetManifestResourceStream()

virtual ASPOSECPP_SHARED_API System::SharedPtr<System::IO::Stream> System::Reflection::Assembly::GetManifestResourceStream ( String  name) const
virtual

Gets stream connected to manifest resource.

Parameters
nameResource name.
Returns
Stream pointer.

◆ GetName()

virtual ASPOSECPP_SHARED_API SharedPtr<AssemblyName> System::Reflection::Assembly::GetName ( ) const
virtual

Gets assembly name.

Returns
Pointer to AssemblyName object.

◆ GetTypes()

virtual ASPOSECPP_SHARED_API ArrayPtr<System::TypeInfo> System::Reflection::Assembly::GetTypes ( ) const
virtual

Gets types declared by assembly.

Returns
Array of types declared by assembly.

◆ RegisterType()

void ASPOSECPP_SHARED_API System::Reflection::Assembly::RegisterType ( const System::TypeInfo type)
protected

Registers specific type in assembly.

Parameters
typeType to register.

◆ Setup()

static ASPOSECPP_SHARED_API void System::Reflection::Assembly::Setup ( const SharedPtr< Assembly > &  assembly,
const String name,
const String full_name,
const ArrayPtr< String > &  resource_names,
const RawResources raw_resources 
)
staticprotected

Sets assembly object parameters.

Parameters
assemblyAssembly to set parameters of.
nameAssembly short name.
full_nameAssembly long name.
resource_namesNames of resources available in assembly.
raw_resourcesResources held by assembly.

Member Data Documentation

◆ m_full_name

String System::Reflection::Assembly::m_full_name
protected

Assembly full name.

◆ m_manifest_resource_names

System::ArrayPtr<String> System::Reflection::Assembly::m_manifest_resource_names
protected

Resource names.

◆ m_name

String System::Reflection::Assembly::m_name
protected

Assembly name.

◆ m_resources_raw

RawResources System::Reflection::Assembly::m_resources_raw
protected

Resource data.