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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2011 by Jonas Maebe
member of the Free Pascal development team.
This file implements the helper routines for TObject
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************
}
procedure TObject.Free;
begin
if not DestructorCalled then
begin
DestructorCalled:=true;
Destroy;
end;
end;
destructor TObject.Destroy;
begin
end;
procedure TObject.Finalize;
begin
Free;
end;
procedure tvarrec.init(l: longint);
begin
VType:=vtInteger;
Value:=JLInteger.valueOf(l);
end;
procedure tvarrec.init(b: boolean);
begin
VType:=vtBoolean;
Value:=JLBoolean.valueOf(b);
end;
procedure tvarrec.init(c: ansichar);
begin
VType:=vtChar;
Value:=JLByte.valueOf(byte(c));
end;
procedure tvarrec.init(w: widechar);
begin
VType:=vtWideChar;
Value:=JLCharacter.valueOf(w);
end;
procedure tvarrec.init(d: extended);
var
arr: array[0..0] of extended;
begin
VType:=vtExtended;
{ VExtended has to return a PExtended -> return address of array (it
doesn't matter that this is a local variable, all arrays are garbage
collected pointers underneath!) }
arr[0]:=d;
Value:=JLObject(@arr);
end;
procedure tvarrec.init(const s: shortstring);
begin
VType:=vtString;
Value:=JLObject(@s);
end;
procedure tvarrec.init(constref p: pointer);
begin
// pointer = object
VType:=vtPointer;
Value:=JLObject(p);
end;
procedure tvarrec.init(p: pchar);
begin
VType:=vtPChar;
Value:=JLObject(p);
end;
procedure tvarrec.init(p: JLObject);
begin
VType:=vtObject;
Value:=p;
end;
procedure tvarrec.init(c: TJClass);
begin
VType:=vtClass;
Value:=JLObject(c);
end;
procedure tvarrec.init(p: pwidechar);
begin
VType:=vtPWideChar;
Value:=JLObject(p);
end;
procedure tvarrec.init(const a: ansistring);
begin
VType:=vtAnsiString;
Value:=JLObject(a);
end;
procedure tvarrec.init(constref c: currency);
begin
VType:=vtCurrency;
{ a constref parameter is internally passed as an array -> we can just
take its address and return it later as a pcurrency (which is also a
pointer internally) }
Value:=JLObject(@c);
end;
procedure tvarrec.init(const w: widestring);
begin
VType:=vtUnicodeString;
Value:=JLObject(w);
end;
procedure tvarrec.init(i: int64);
var
arr: array[0..0] of int64;
begin
VType:=vtInt64;
arr[0]:=i;
Value:=JLObject(@arr);
end;
procedure tvarrec.init(q: qword; unsigned: boolean = true);
var
arr: array[0..0] of qword;
begin
init(int64(q));
{ parameter could be false in case it's called from Java code }
if unsigned then
VType:=vtQWord;
end;
function tvarrec.VInteger: longint;
begin
result:=JLInteger(Value).intValue
end;
function tvarrec.VBoolean: boolean;
begin
result:=JLBoolean(Value).booleanValue;
end;
function tvarrec.VChar: ansichar;
begin
result:=char(JLByte(Value).byteValue);
end;
function tvarrec.VWideChar: widechar;
begin
result:=JLCharacter(Value).charValue;
end;
function tvarrec.VExtended: pextended;
begin
result:=PExtended(Value);
end;
function tvarrec.VDouble: double;
begin
result:=JLDouble(Value).doubleValue;
end;
function tvarrec.VString: PShortString;
begin
result:=PShortString(Value);
end;
function tvarrec.VPointer: pointer;
begin
result:=pointer(Value);
end;
function tvarrec.VPChar: PChar;
begin
result:=PChar(Value);
end;
function tvarrec.VObject: JLObject;
begin
result:=Value;
end;
function tvarrec.VClass: TJClass;
begin
result:=TJClass(Value);
end;
function tvarrec.VPWideChar: PWideChar;
begin
result:=PWideChar(Value);
end;
function tvarrec.VAnsiString: Pointer;
begin
result:=Pointer(Value);
end;
function tvarrec.VCurrency: PCurrency;
begin
result:=PCurrency(Value);
end;
// function tvarrec.VVariant: PVariant;
function tvarrec.VInterface: JLObject;
begin
result:=Value;
end;
function tvarrec.VWideString: Pointer;
begin
result:=Pointer(Value);
end;
function tvarrec.VInt64: PInt64;
begin
result:=PInt64(Value);
end;
function tvarrec.VUnicodeString: Pointer;
begin
result:=Pointer(Value);
end;
function tvarrec.VQWord: PQWord;
begin
result:=PQword(Value);
end;
|