mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 14:40:30 +03:00
220 lines
3.7 KiB
D
220 lines
3.7 KiB
D
|
|
// Implementation is in internal\object.d
|
|
|
|
module object;
|
|
|
|
alias bool bit;
|
|
|
|
alias typeof(int.sizeof) size_t;
|
|
alias typeof(cast(void*)0 - cast(void*)0) ptrdiff_t;
|
|
alias size_t hash_t;
|
|
|
|
alias const(char)[] string;
|
|
alias const(wchar)[] wstring;
|
|
alias const(dchar)[] dstring;
|
|
|
|
extern (C)
|
|
{ int printf(in char *, ...);
|
|
void trace_term();
|
|
}
|
|
|
|
class Object
|
|
{
|
|
void print();
|
|
string toString();
|
|
hash_t toHash();
|
|
int opCmp(Object o);
|
|
int opEquals(Object o);
|
|
|
|
final void notifyRegister(void delegate(Object) dg);
|
|
final void notifyUnRegister(void delegate(Object) dg);
|
|
|
|
static Object factory(string classname);
|
|
}
|
|
|
|
struct Interface
|
|
{
|
|
ClassInfo classinfo;
|
|
void *[] vtbl;
|
|
int offset; // offset to Interface 'this' from Object 'this'
|
|
}
|
|
|
|
class ClassInfo : Object
|
|
{
|
|
byte[] init; // class static initializer
|
|
string name; // class name
|
|
void *[] vtbl; // virtual function pointer table
|
|
Interface[] interfaces;
|
|
ClassInfo base;
|
|
void *destructor;
|
|
void (*classInvariant)(Object);
|
|
uint flags;
|
|
// 1: // IUnknown
|
|
// 2: // has no possible pointers into GC memory
|
|
// 4: // has offTi[] member
|
|
// 8: // has constructors
|
|
// 16: // has xgetMembers member
|
|
void *deallocator;
|
|
OffsetTypeInfo[] offTi;
|
|
void* defaultConstructor; // default Constructor
|
|
const(MemberInfo[]) function(string) xgetMembers;
|
|
|
|
static ClassInfo find(string classname);
|
|
Object create();
|
|
const(MemberInfo[]) getMembers(string);
|
|
}
|
|
|
|
struct OffsetTypeInfo
|
|
{
|
|
size_t offset;
|
|
TypeInfo ti;
|
|
}
|
|
|
|
class TypeInfo
|
|
{
|
|
hash_t getHash(in void *p);
|
|
int equals(in void *p1, in void *p2);
|
|
int compare(in void *p1, in void *p2);
|
|
size_t tsize();
|
|
void swap(void *p1, void *p2);
|
|
TypeInfo next();
|
|
void[] init();
|
|
uint flags();
|
|
// 1: // has possible pointers into GC memory
|
|
OffsetTypeInfo[] offTi();
|
|
}
|
|
|
|
class TypeInfo_Typedef : TypeInfo
|
|
{
|
|
TypeInfo base;
|
|
string name;
|
|
void[] m_init;
|
|
}
|
|
|
|
class TypeInfo_Enum : TypeInfo_Typedef
|
|
{
|
|
}
|
|
|
|
class TypeInfo_Pointer : TypeInfo
|
|
{
|
|
TypeInfo m_next;
|
|
}
|
|
|
|
class TypeInfo_Array : TypeInfo
|
|
{
|
|
TypeInfo value;
|
|
}
|
|
|
|
class TypeInfo_StaticArray : TypeInfo
|
|
{
|
|
TypeInfo value;
|
|
size_t len;
|
|
}
|
|
|
|
class TypeInfo_AssociativeArray : TypeInfo
|
|
{
|
|
TypeInfo value;
|
|
TypeInfo key;
|
|
}
|
|
|
|
class TypeInfo_Function : TypeInfo
|
|
{
|
|
TypeInfo next;
|
|
}
|
|
|
|
class TypeInfo_Delegate : TypeInfo
|
|
{
|
|
TypeInfo next;
|
|
}
|
|
|
|
class TypeInfo_Class : TypeInfo
|
|
{
|
|
ClassInfo info;
|
|
}
|
|
|
|
class TypeInfo_Interface : TypeInfo
|
|
{
|
|
ClassInfo info;
|
|
}
|
|
|
|
class TypeInfo_Struct : TypeInfo
|
|
{
|
|
string name;
|
|
void[] m_init;
|
|
|
|
uint function(in void*) xtoHash;
|
|
int function(in void*, in void*) xopEquals;
|
|
int function(in void*, in void*) xopCmp;
|
|
string function(const(void)*) xtoString;
|
|
|
|
uint m_flags;
|
|
|
|
const(MemberInfo[]) function(string) xgetMembers;
|
|
}
|
|
|
|
class TypeInfo_Tuple : TypeInfo
|
|
{
|
|
TypeInfo[] elements;
|
|
}
|
|
|
|
class TypeInfo_Const : TypeInfo
|
|
{
|
|
TypeInfo next;
|
|
}
|
|
|
|
class TypeInfo_Invariant : TypeInfo_Const
|
|
{
|
|
}
|
|
|
|
abstract class MemberInfo
|
|
{
|
|
string name();
|
|
}
|
|
|
|
class MemberInfo_field : MemberInfo
|
|
{
|
|
this(string name, TypeInfo ti, size_t offset);
|
|
|
|
override string name();
|
|
TypeInfo typeInfo();
|
|
size_t offset();
|
|
}
|
|
|
|
class MemberInfo_function : MemberInfo
|
|
{
|
|
enum
|
|
{ Virtual = 1,
|
|
Member = 2,
|
|
Static = 4,
|
|
}
|
|
|
|
this(string name, TypeInfo ti, void* fp, uint flags);
|
|
|
|
override string name();
|
|
TypeInfo typeInfo();
|
|
void* fp();
|
|
uint flags();
|
|
}
|
|
|
|
// Recoverable errors
|
|
|
|
class Exception : Object
|
|
{
|
|
string msg;
|
|
Exception next;
|
|
|
|
this(string msg);
|
|
this(string msg, Error next);
|
|
|
|
override void print();
|
|
override string toString();
|
|
}
|
|
|
|
// Non-recoverable errors
|
|
|
|
class Error : Exception
|
|
{
|
|
this(string msg);
|
|
this(string msg, Error next);
|
|
}
|
|
|