forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandle.java
More file actions
189 lines (159 loc) · 6.86 KB
/
Copy pathHandle.java
File metadata and controls
189 lines (159 loc) · 6.86 KB
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
/***** BEGIN LICENSE BLOCK *****
* Version: EPL 1.0/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Eclipse Public
* License Version 1.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.eclipse.org/legal/epl-v10.html
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* Copyright (C) 2008-2010 Wayne Meissner
*
* Alternatively, the contents of this file may be used under the terms of
* either of the GNU General Public License Version 2 or later (the "GPL"),
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the EPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the EPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****/
package org.jruby.cext;
import org.jruby.Ruby;
import org.jruby.RubyBoolean;
import org.jruby.RubyFixnum;
import org.jruby.RubyIO;
import org.jruby.RubyNil;
import org.jruby.RubyNumeric;
import org.jruby.RubyObject;
import org.jruby.RubySymbol;
import org.jruby.runtime.ClassIndex;
import org.jruby.runtime.builtin.IRubyObject;
/**
* A {@link Handle} represents an object made available to native code tied to it's runtime.
*/
public final class Handle extends Cleaner {
private static final long FIXNUM_MAX = Integer.getInteger("sun.arch.data.model") == 64
? (Long.MAX_VALUE >> 1) : ((long) Integer.MAX_VALUE >> 1);
private static final long FIXNUM_MIN = Integer.getInteger("sun.arch.data.model") == 64
? (Long.MIN_VALUE >> 1) : ((long) Integer.MIN_VALUE >> 1);
private static final long FIXNUM_FLAG = 0x1L;
private static final int FIXNUM_SHIFT = 1;
private static final int SYMBOL_SHIFT = 8;
private static final long SYMBOL_FLAG = 0xeL;
private static final long Qfalse = 0L;
private static final long Qtrue = 2L;
private static final long Qnil = 4L;
private final Ruby runtime;
private final long address;
static Handle newHandle(Ruby runtime, Object rubyObject, long nativeHandle) {
return new Handle(runtime, rubyObject, nativeHandle);
}
private Handle(Ruby runtime, Object obj, long address) {
super(obj);
this.runtime = runtime;
this.address = address;
}
public final long getAddress() {
return address;
}
@Override
public boolean equals(Object obj) {
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final Handle other = (Handle) obj;
return this.address == other.address;
}
@Override
public int hashCode() {
int hash = 3;
hash = 37 * hash + (int) (this.address ^ (this.address >>> 32));
return hash;
}
@Override
public String toString() {
return "Native ruby object " + Long.toString(address);
}
@Override
void dispose() {
Native.freeHandle(address);
}
/**
* Retrieves the Handle object associated with a {@link RubyObject}. Retrieval is either done
* through the {@link GC} for Handles that have already been created, or depending on
* the object's native class index.<br/>
* Fixnum's and Symbol's native Handles are created through bit-shifting on their values, File and Float
* Handles are created using special JNI methods. All other objects are passed to the generic
* {@link Native#newHandle} method.<br/>
* Once a Handle has been created, it is registered with the {@link GC} to prevent garbage-collection
* during native method runs.
*/
static Handle valueOf(IRubyObject obj) {
Handle h = GC.lookup(obj);
if (h != null) {
return h;
}
Ruby runtime = obj.getRuntime();
long nativeHandle;
if (obj instanceof RubyObject) {
int type = ((RubyObject) obj).getNativeTypeIndex();
switch (type) {
case ClassIndex.FIXNUM: {
final long val = ((RubyFixnum) obj).getLongValue();
nativeHandle = (val <= FIXNUM_MAX && val >= FIXNUM_MIN)
? ((val << FIXNUM_SHIFT) | FIXNUM_FLAG)
: Native.getInstance(runtime).newFixnumHandle(obj, val);
}
break;
case ClassIndex.FLOAT:
nativeHandle = Native.getInstance(runtime).newFloatHandle(obj, ((RubyNumeric) obj).getDoubleValue());
break;
case ClassIndex.SYMBOL:
nativeHandle = ((long) ((RubySymbol) obj).getId() << SYMBOL_SHIFT) | SYMBOL_FLAG;
break;
case ClassIndex.FILE: // RubyIO uses FILE as type index, matching MRI's T_FILE
nativeHandle = Native.getInstance(runtime).newIOHandle(obj,
(int)((RubyIO) obj).fileno(runtime.getCurrentContext()).getLongValue(),
((RubyIO) obj).getOpenFile().getMode());
break;
default:
nativeHandle = Native.getInstance(runtime).newHandle(obj, type);
break;
}
} else {
nativeHandle = Native.getInstance(runtime).newHandle(obj, ClassIndex.OBJECT);
}
Handle handle = newHandle(runtime, obj, nativeHandle);
GC.register(obj, handle);
return handle;
}
/**
* @return the native Handle's address associated with the given RubyObject.
*/
static long nativeHandle(IRubyObject obj) {
if (obj.getClass() == RubyFixnum.class) {
final long val = ((RubyFixnum) obj).getLongValue();
if (val <= FIXNUM_MAX && val >= FIXNUM_MIN) {
return ((val << FIXNUM_SHIFT) | FIXNUM_FLAG);
}
} else if (obj.getClass() == RubySymbol.class) {
return ((long) ((RubySymbol) obj).getId() << SYMBOL_SHIFT) | SYMBOL_FLAG;
} else if (obj.getClass() == RubyBoolean.class) {
return obj.isTrue() ? Qtrue : Qfalse;
} else if (obj.getClass() == RubyNil.class) {
return Qnil;
}
return Handle.valueOf(obj).getAddress();
}
}