forked from ying32/govcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexception.go
162 lines (136 loc) · 4.05 KB
/
exception.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
//----------------------------------------
// The code is automatically generated by the GenlibLcl tool.
// Copyright © ying32. All Rights Reserved.
//
// Licensed under Apache License 2.0
//
//----------------------------------------
package vcl
import (
. "github.com/ying32/govcl/vcl/api"
. "github.com/ying32/govcl/vcl/types"
"unsafe"
)
type Exception struct {
IObject
instance uintptr
// 特殊情况下使用,主要应对Go的GC问题,与LCL没有太多关系。
ptr unsafe.Pointer
}
// 动态转换一个已存在的对象实例。
//
// Dynamically convert an existing object instance.
func AsException(obj interface{}) *Exception {
instance, ptr := getInstance(obj)
if instance == 0 { return nil }
return &Exception{instance: instance, ptr: ptr}
}
// -------------------------- Deprecated begin --------------------------
// 新建一个对象来自已经存在的对象实例指针。
//
// Create a new object from an existing object instance pointer.
// Deprecated: use AsException.
func ExceptionFromInst(inst uintptr) *Exception {
return AsException(inst)
}
// 新建一个对象来自已经存在的对象实例。
//
// Create a new object from an existing object instance.
// Deprecated: use AsException.
func ExceptionFromObj(obj IObject) *Exception {
return AsException(obj)
}
// 新建一个对象来自不安全的地址。注意:使用此函数可能造成一些不明情况,慎用。
//
// Create a new object from an unsecured address. Note: Using this function may cause some unclear situations and be used with caution..
// Deprecated: use AsException.
func ExceptionFromUnsafePointer(ptr unsafe.Pointer) *Exception {
return AsException(ptr)
}
// -------------------------- Deprecated end --------------------------
// 返回对象实例指针。
//
// Return object instance pointer.
func (e *Exception) Instance() uintptr {
return e.instance
}
// 获取一个不安全的地址。
//
// Get an unsafe address.
func (e *Exception) UnsafeAddr() unsafe.Pointer {
return e.ptr
}
// 检测地址是否为空。
//
// Check if the address is empty.
func (e *Exception) IsValid() bool {
return e.instance != 0
}
// 检测当前对象是否继承自目标对象。
//
// Checks whether the current object is inherited from the target object.
func (e *Exception) Is() TIs {
return TIs(e.instance)
}
// 动态转换当前对象为目标对象。
//
// Dynamically convert the current object to the target object.
//func (e *Exception) As() TAs {
// return TAs(e.instance)
//}
// 获取类信息指针。
//
// Get class information pointer.
func ExceptionClass() TClass {
return Exception_StaticClassType()
}
// 文本类信息。
//
// Text information.
func (e *Exception) ToString() string {
return Exception_ToString(e.instance)
}
// 获取类的类型信息。
//
// Get class type information.
func (e *Exception) ClassType() TClass {
return Exception_ClassType(e.instance)
}
// 获取当前对象类名称。
//
// Get the current object class name.
func (e *Exception) ClassName() string {
return Exception_ClassName(e.instance)
}
// 获取当前对象实例大小。
//
// Get the current object instance size.
func (e *Exception) InstanceSize() int32 {
return Exception_InstanceSize(e.instance)
}
// 判断当前类是否继承自指定类。
//
// Determine whether the current class inherits from the specified class.
func (e *Exception) InheritsFrom(AClass TClass) bool {
return Exception_InheritsFrom(e.instance, AClass)
}
// 与一个对象进行比较。
//
// Compare with an object.
func (e *Exception) Equals(Obj IObject) bool {
return Exception_Equals(e.instance, CheckPtr(Obj))
}
// 获取类的哈希值。
//
// Get the hash value of the class.
func (e *Exception) GetHashCode() int32 {
return Exception_GetHashCode(e.instance)
}
// 获取异常消息。
func (e *Exception) Message() string {
return Exception_GetMessage(e.instance)
}
// 设置异常消息。
func (e *Exception) SetMessage(value string) {
Exception_SetMessage(e.instance, value)
}