FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
jruby/src/org/jruby/RubyClass.java at parallel_boot · MSNexploder/jruby · GitHub
MSNexploder
/
jruby
Public
forked from
jruby/jruby
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
jruby
/
src
/
org
/
jruby
/
RubyClass.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
1899 lines (1622 loc) · 76.9 KB
Breadcrumbs
jruby
/
src
/
org
/
jruby
/
RubyClass.java
Copy path
File metadata and controls
1899 lines (1622 loc) · 76.9 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***** 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) 2001-2004 Jan Arne Petersen <jpetersen@uni-bonn.de>
* Copyright (C) 2002-2004 Anders Bengtsson <ndrsbngtssn@yahoo.se>
* Copyright (C) 2004-2005 Thomas E Enebo <enebo@acm.org>
* Copyright (C) 2004 Stefan Matthias Aust <sma@3plus4.de>
*
* 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
;
import
static
org
.
jruby
.
util
.
CodegenUtils
.
ci
;
import
static
org
.
jruby
.
util
.
CodegenUtils
.
p
;
import
static
org
.
jruby
.
util
.
CodegenUtils
.
sig
;
import
static
org
.
objectweb
.
asm
.
Opcodes
.
ACC_PRIVATE
;
import
static
org
.
objectweb
.
asm
.
Opcodes
.
ACC_PUBLIC
;
import
static
org
.
objectweb
.
asm
.
Opcodes
.
ACC_STATIC
;
import
static
org
.
objectweb
.
asm
.
Opcodes
.
ACC_SUPER
;
import
static
org
.
objectweb
.
asm
.
Opcodes
.
ACC_VARARGS
;
import
java
.
io
.
IOException
;
import
java
.
lang
.
reflect
.
Constructor
;
import
java
.
lang
.
reflect
.
InvocationTargetException
;
import
java
.
lang
.
reflect
.
Method
;
import
java
.
util
.
ArrayList
;
import
java
.
util
.
Collection
;
import
java
.
util
.
Collections
;
import
java
.
util
.
HashMap
;
import
java
.
util
.
HashSet
;
import
java
.
util
.
Hashtable
;
import
java
.
util
.
Iterator
;
import
java
.
util
.
List
;
import
java
.
util
.
Map
;
import
java
.
util
.
Set
;
import
org
.
jruby
.
anno
.
JRubyClass
;
import
org
.
jruby
.
anno
.
JRubyMethod
;
import
org
.
jruby
.
compiler
.
impl
.
SkinnyMethodAdapter
;
import
org
.
jruby
.
exceptions
.
RaiseException
;
import
org
.
jruby
.
internal
.
runtime
.
methods
.
DynamicMethod
;
import
org
.
jruby
.
java
.
codegen
.
RealClassGenerator
;
import
org
.
jruby
.
java
.
codegen
.
Reified
;
import
org
.
jruby
.
javasupport
.
Java
;
import
org
.
jruby
.
runtime
.
Helpers
;
import
org
.
jruby
.
runtime
.
Block
;
import
org
.
jruby
.
runtime
.
CallSite
;
import
org
.
jruby
.
runtime
.
CallType
;
import
org
.
jruby
.
runtime
.
ClassIndex
;
import
org
.
jruby
.
runtime
.
MethodIndex
;
import
org
.
jruby
.
runtime
.
ObjectAllocator
;
import
org
.
jruby
.
runtime
.
ObjectMarshal
;
import
org
.
jruby
.
runtime
.
ThreadContext
;
import
static
org
.
jruby
.
runtime
.
Visibility
.*;
import
static
org
.
jruby
.
CompatVersion
.*;
import
org
.
jruby
.
runtime
.
builtin
.
IRubyObject
;
import
org
.
jruby
.
runtime
.
callsite
.
CacheEntry
;
import
org
.
jruby
.
runtime
.
marshal
.
MarshalStream
;
import
org
.
jruby
.
runtime
.
marshal
.
UnmarshalStream
;
import
org
.
jruby
.
runtime
.
opto
.
Invalidator
;
import
org
.
jruby
.
util
.
ClassCache
.
OneShotClassLoader
;
import
org
.
jruby
.
util
.
ClassDefiningClassLoader
;
import
org
.
jruby
.
util
.
CodegenUtils
;
import
org
.
jruby
.
util
.
JavaNameMangler
;
import
org
.
jruby
.
util
.
collections
.
WeakHashSet
;
import
org
.
jruby
.
util
.
log
.
Logger
;
import
org
.
jruby
.
util
.
log
.
LoggerFactory
;
import
org
.
objectweb
.
asm
.
AnnotationVisitor
;
import
org
.
objectweb
.
asm
.
ClassWriter
;
/**
*
* @author jpetersen
*/
@
JRubyClass
(
name
=
"Class"
,
parent
=
"Module"
)
public
class
RubyClass
extends
RubyModule
{
private
static
final
Logger
LOG
=
LoggerFactory
.
getLogger
(
"RubyClass"
);
public
static
void
createClassClass
(
Ruby
runtime
,
RubyClass
classClass
) {
classClass
.
index
=
ClassIndex
.
CLASS
;
classClass
.
setReifiedClass
(
RubyClass
.
class
);
classClass
.
kindOf
=
new
RubyModule
.
KindOf
() {
@
Override
public
boolean
isKindOf
(
IRubyObject
obj
,
RubyModule
type
) {
return
obj
instanceof
RubyClass
;
}
};
classClass
.
undefineMethod
(
"module_function"
);
classClass
.
undefineMethod
(
"append_features"
);
classClass
.
undefineMethod
(
"extend_object"
);
classClass
.
defineAnnotatedMethods
(
RubyClass
.
class
);
}
public
static
final
ObjectAllocator
CLASS_ALLOCATOR
=
new
ObjectAllocator
() {
public
IRubyObject
allocate
(
Ruby
runtime
,
RubyClass
klass
) {
RubyClass
clazz
=
new
RubyClass
(
runtime
);
clazz
.
allocator
=
ObjectAllocator
.
NOT_ALLOCATABLE_ALLOCATOR
;
// Class.allocate object is not allocatable before it is initialized
return
clazz
;
}
};
public
ObjectAllocator
getAllocator
() {
return
allocator
;
}
public
void
setAllocator
(
ObjectAllocator
allocator
) {
this
.
allocator
=
allocator
;
}
/**
* Set a reflective allocator that calls a no-arg constructor on the given
* class.
*
* @param cls The class on which to call the default constructor to allocate
*/
public
void
setClassAllocator
(
final
Class
cls
) {
this
.
allocator
=
new
ObjectAllocator
() {
public
IRubyObject
allocate
(
Ruby
runtime
,
RubyClass
klazz
) {
try
{
RubyBasicObject
object
= (
RubyBasicObject
)
cls
.
newInstance
();
object
.
setMetaClass
(
klazz
);
return
object
;
}
catch
(
InstantiationException
ie
) {
throw
runtime
.
newTypeError
(
"could not allocate "
+
cls
+
" with default constructor:
\n
"
+
ie
);
}
catch
(
IllegalAccessException
iae
) {
throw
runtime
.
newSecurityError
(
"could not allocate "
+
cls
+
" due to inaccessible default constructor:
\n
"
+
iae
);
}
}
};
this
.
reifiedClass
=
cls
;
}
/**
* Set a reflective allocator that calls the "standard" Ruby object
* constructor (Ruby, RubyClass) on the given class.
*
* @param cls The class from which to grab a standard Ruby constructor
*/
public
void
setRubyClassAllocator
(
final
Class
cls
) {
try
{
final
Constructor
constructor
=
cls
.
getConstructor
(
Ruby
.
class
,
RubyClass
.
class
);
this
.
allocator
=
new
ObjectAllocator
() {
public
IRubyObject
allocate
(
Ruby
runtime
,
RubyClass
klazz
) {
try
{
return
(
IRubyObject
)
constructor
.
newInstance
(
runtime
,
klazz
);
}
catch
(
InvocationTargetException
ite
) {
throw
runtime
.
newTypeError
(
"could not allocate "
+
cls
+
" with (Ruby, RubyClass) constructor:
\n
"
+
ite
);
}
catch
(
InstantiationException
ie
) {
throw
runtime
.
newTypeError
(
"could not allocate "
+
cls
+
" with (Ruby, RubyClass) constructor:
\n
"
+
ie
);
}
catch
(
IllegalAccessException
iae
) {
throw
runtime
.
newSecurityError
(
"could not allocate "
+
cls
+
" due to inaccessible (Ruby, RubyClass) constructor:
\n
"
+
iae
);
}
}
};
this
.
reifiedClass
=
cls
;
}
catch
(
NoSuchMethodException
nsme
) {
throw
new
RuntimeException
(
nsme
);
}
}
/**
* Set a reflective allocator that calls the "standard" Ruby object
* constructor (Ruby, RubyClass) on the given class via a static
* __allocate__ method intermediate.
*
* @param cls The class from which to grab a standard Ruby __allocate__
* method.
*/
public
void
setRubyStaticAllocator
(
final
Class
cls
) {
try
{
final
Method
method
=
cls
.
getDeclaredMethod
(
"__allocate__"
,
Ruby
.
class
,
RubyClass
.
class
);
this
.
allocator
=
new
ObjectAllocator
() {
public
IRubyObject
allocate
(
Ruby
runtime
,
RubyClass
klazz
) {
try
{
return
(
IRubyObject
)
method
.
invoke
(
null
,
runtime
,
klazz
);
}
catch
(
InvocationTargetException
ite
) {
throw
runtime
.
newTypeError
(
"could not allocate "
+
cls
+
" with (Ruby, RubyClass) constructor:
\n
"
+
ite
);
}
catch
(
IllegalAccessException
iae
) {
throw
runtime
.
newSecurityError
(
"could not allocate "
+
cls
+
" due to inaccessible (Ruby, RubyClass) constructor:
\n
"
+
iae
);
}
}
};
this
.
reifiedClass
=
cls
;
}
catch
(
NoSuchMethodException
nsme
) {
throw
new
RuntimeException
(
nsme
);
}
}
@
JRubyMethod
(
name
=
"allocate"
)
public
IRubyObject
allocate
() {
if
(
superClass
==
null
) {
if
(!(
runtime
.
is1_9
() &&
this
==
runtime
.
getBasicObject
())) {
throw
runtime
.
newTypeError
(
"can't instantiate uninitialized class"
);
}
}
IRubyObject
obj
=
allocator
.
allocate
(
runtime
,
this
);
if
(
obj
.
getMetaClass
().
getRealClass
() !=
getRealClass
()) {
throw
runtime
.
newTypeError
(
"wrong instance allocation"
);
}
return
obj
;
}
public
CallSite
getBaseCallSite
(
int
idx
) {
return
baseCallSites
[
idx
];
}
public
CallSite
[]
getBaseCallSites
() {
return
baseCallSites
;
}
public
CallSite
[]
getExtraCallSites
() {
return
extraCallSites
;
}
public
static
class
VariableAccessor
{
private
final
String
name
;
private
final
int
index
;
private
final
int
classId
;
public
VariableAccessor
(
String
name
,
int
index
,
int
classId
) {
this
.
index
=
index
;
this
.
classId
=
classId
;
this
.
name
=
name
;
}
public
int
getClassId
() {
return
classId
;
}
public
int
getIndex
() {
return
index
;
}
public
String
getName
() {
return
name
;
}
public
Object
get
(
Object
object
) {
return
((
IRubyObject
)
object
).
getVariable
(
index
);
}
public
void
set
(
Object
object
,
Object
value
) {
((
IRubyObject
)
object
).
setVariable
(
index
,
value
);
}
public
static
final
VariableAccessor
DUMMY_ACCESSOR
=
new
VariableAccessor
(
null
, -
1
, -
1
);
}
public
Map
<
String
,
VariableAccessor
>
getVariableAccessorsForRead
() {
return
variableAccessors
;
}
private
final
VariableAccessorField
objectIdVariableAccessorField
=
new
VariableAccessorField
(
"object_id"
);
private
final
VariableAccessorField
cextHandleVariableAccessorField
=
new
VariableAccessorField
(
"cext"
);
private
final
VariableAccessorField
ffiHandleVariableAccessorField
=
new
VariableAccessorField
(
"ffi"
);
private
final
VariableAccessorField
objectGroupVariableAccessorField
=
new
VariableAccessorField
(
"objectspace_group"
);
private
synchronized
final
VariableAccessor
allocateVariableAccessor
(
String
name
) {
String
[]
myVariableNames
=
variableNames
;
int
newIndex
=
myVariableNames
.
length
;
String
[]
newVariableNames
=
new
String
[
newIndex
+
1
];
VariableAccessor
newVariableAccessor
=
new
VariableAccessor
(
name
,
newIndex
,
this
.
id
);
System
.
arraycopy
(
myVariableNames
,
0
,
newVariableNames
,
0
,
newIndex
);
newVariableNames
[
newIndex
] =
name
;
variableNames
=
newVariableNames
;
return
newVariableAccessor
;
}
public
VariableAccessor
getVariableAccessorForWrite
(
String
name
) {
VariableAccessor
ivarAccessor
=
variableAccessors
.
get
(
name
);
if
(
ivarAccessor
==
null
) {
synchronized
(
this
) {
Map
<
String
,
VariableAccessor
>
myVariableAccessors
=
variableAccessors
;
ivarAccessor
=
myVariableAccessors
.
get
(
name
);
if
(
ivarAccessor
==
null
) {
// allocate a new accessor and populate a new table
ivarAccessor
=
allocateVariableAccessor
(
name
);
Map
<
String
,
VariableAccessor
>
newVariableAccessors
=
new
HashMap
<
String
,
VariableAccessor
>(
myVariableAccessors
.
size
() +
1
);
newVariableAccessors
.
putAll
(
myVariableAccessors
);
newVariableAccessors
.
put
(
name
,
ivarAccessor
);
variableAccessors
=
newVariableAccessors
;
}
}
}
return
ivarAccessor
;
}
public
final
class
VariableAccessorField
{
private
final
String
name
;
private
volatile
VariableAccessor
variableAccessor
=
VariableAccessor
.
DUMMY_ACCESSOR
;
private
VariableAccessorField
(
String
name
) {
this
.
name
=
name
;
}
public
VariableAccessor
getVariableAccessorForRead
() {
return
variableAccessor
;
}
public
VariableAccessor
getVariableAccessorForWrite
() {
return
variableAccessor
!=
VariableAccessor
.
DUMMY_ACCESSOR
?
variableAccessor
:
allocateVariableAccessor
();
}
private
synchronized
VariableAccessor
allocateVariableAccessor
() {
if
(
variableAccessor
==
VariableAccessor
.
DUMMY_ACCESSOR
) {
variableAccessor
=
RubyClass
.
this
.
allocateVariableAccessor
(
name
);
}
return
variableAccessor
;
}
}
public
VariableAccessor
getVariableAccessorForRead
(
String
name
) {
VariableAccessor
accessor
=
getVariableAccessorsForRead
().
get
(
name
);
if
(
accessor
==
null
)
accessor
=
VariableAccessor
.
DUMMY_ACCESSOR
;
return
accessor
;
}
public
VariableAccessorField
getObjectIdAccessorField
() {
return
objectIdVariableAccessorField
;
}
public
VariableAccessorField
getNativeHandleAccessorField
() {
return
cextHandleVariableAccessorField
;
}
public
VariableAccessorField
getFFIHandleAccessorField
() {
return
ffiHandleVariableAccessorField
;
}
public
VariableAccessorField
getObjectGroupAccessorField
() {
return
objectGroupVariableAccessorField
;
}
public
int
getVariableTableSize
() {
return
variableAccessors
.
size
();
}
public
int
getVariableTableSizeWithExtras
() {
return
variableNames
.
length
;
}
public
Map
<
String
,
VariableAccessor
>
getVariableTableCopy
() {
return
new
HashMap
<
String
,
VariableAccessor
>(
getVariableAccessorsForRead
());
}
/**
* Get an array of all the known instance variable names. The offset into
* the array indicates the offset of the variable's value in the per-object
* variable array.
*
* @return a copy of the array of known instance variable names
*/
public
String
[]
getVariableNames
() {
String
[]
original
=
variableNames
;
String
[]
copy
=
new
String
[
original
.
length
];
System
.
arraycopy
(
original
,
0
,
copy
,
0
,
original
.
length
);
return
copy
;
}
@
Override
public
int
getNativeTypeIndex
() {
return
ClassIndex
.
CLASS
;
}
@
Override
public
boolean
isModule
() {
return
false
;
}
@
Override
public
boolean
isClass
() {
return
true
;
}
@
Override
public
boolean
isSingleton
() {
return
false
;
}
/** boot_defclass
* Create an initial Object meta class before Module and Kernel dependencies have
* squirreled themselves together.
*
* @param runtime we need it
* @return a half-baked meta class for object
*/
public
static
RubyClass
createBootstrapClass
(
Ruby
runtime
,
String
name
,
RubyClass
superClass
,
ObjectAllocator
allocator
) {
RubyClass
obj
;
if
(
superClass
==
null
) {
// boot the Object class
obj
=
new
RubyClass
(
runtime
);
obj
.
marshal
=
DEFAULT_OBJECT_MARSHAL
;
}
else
{
// boot the Module and Class classes
obj
=
new
RubyClass
(
runtime
,
superClass
);
}
obj
.
setAllocator
(
allocator
);
obj
.
setBaseName
(
name
);
return
obj
;
}
/** separate path for MetaClass and IncludedModuleWrapper construction
* (rb_class_boot version for MetaClasses)
* no marshal, allocator initialization and addSubclass(this) here!
*/
protected
RubyClass
(
Ruby
runtime
,
RubyClass
superClass
,
boolean
objectSpace
) {
super
(
runtime
,
runtime
.
getClassClass
(),
objectSpace
);
this
.
runtime
=
runtime
;
this
.
realClass
=
superClass
==
null
?
null
:
superClass
.
getRealClass
();
setSuperClass
(
superClass
);
// this is the only case it might be null here (in MetaClass construction)
}
/** used by CLASS_ALLOCATOR (any Class' class will be a Class!)
* also used to bootstrap Object class
*/
protected
RubyClass
(
Ruby
runtime
) {
super
(
runtime
,
runtime
.
getClassClass
());
this
.
runtime
=
runtime
;
this
.
realClass
=
this
;
index
=
ClassIndex
.
CLASS
;
}
/** rb_class_boot (for plain Classes)
* also used to bootstrap Module and Class classes
*/
protected
RubyClass
(
Ruby
runtime
,
RubyClass
superClazz
) {
this
(
runtime
);
setSuperClass
(
superClazz
);
marshal
=
superClazz
.
marshal
;
// use parent's marshal
superClazz
.
addSubclass
(
this
);
allocator
=
superClazz
.
allocator
;
infectBy
(
superClass
);
}
/**
* A constructor which allows passing in an array of supplementary call sites.
*/
protected
RubyClass
(
Ruby
runtime
,
RubyClass
superClazz
,
CallSite
[]
extraCallSites
) {
this
(
runtime
);
setSuperClass
(
superClazz
);
this
.
marshal
=
superClazz
.
marshal
;
// use parent's marshal
superClazz
.
addSubclass
(
this
);
this
.
extraCallSites
=
extraCallSites
;
infectBy
(
superClass
);
}
/**
* Construct a new class with the given name scoped under Object (global)
* and with Object as its immediate superclass.
* Corresponds to rb_class_new in MRI.
*/
public
static
RubyClass
newClass
(
Ruby
runtime
,
RubyClass
superClass
) {
if
(
superClass
==
runtime
.
getClassClass
())
throw
runtime
.
newTypeError
(
"can't make subclass of Class"
);
if
(
superClass
.
isSingleton
())
throw
runtime
.
newTypeError
(
"can't make subclass of virtual class"
);
return
new
RubyClass
(
runtime
,
superClass
);
}
/**
* A variation on newClass that allow passing in an array of supplementary
* call sites to improve dynamic invocation.
*/
public
static
RubyClass
newClass
(
Ruby
runtime
,
RubyClass
superClass
,
CallSite
[]
extraCallSites
) {
if
(
superClass
==
runtime
.
getClassClass
())
throw
runtime
.
newTypeError
(
"can't make subclass of Class"
);
if
(
superClass
.
isSingleton
())
throw
runtime
.
newTypeError
(
"can't make subclass of virtual class"
);
return
new
RubyClass
(
runtime
,
superClass
,
extraCallSites
);
}
/**
* Construct a new class with the given name, allocator, parent class,
* and containing class. If setParent is true, the class's parent will be
* explicitly set to the provided parent (rather than the new class just
* being assigned to a constant in that parent).
* Corresponds to rb_class_new/rb_define_class_id/rb_name_class/rb_set_class_path
* in MRI.
*/
public
static
RubyClass
newClass
(
Ruby
runtime
,
RubyClass
superClass
,
String
name
,
ObjectAllocator
allocator
,
RubyModule
parent
,
boolean
setParent
) {
RubyClass
clazz
=
newClass
(
runtime
,
superClass
);
clazz
.
setBaseName
(
name
);
clazz
.
setAllocator
(
allocator
);
clazz
.
makeMetaClass
(
superClass
.
getMetaClass
());
if
(
setParent
)
clazz
.
setParent
(
parent
);
parent
.
setConstant
(
name
,
clazz
);
clazz
.
inherit
(
superClass
);
return
clazz
;
}
/**
* A variation on newClass that allows passing in an array of supplementary
* call sites to improve dynamic invocation performance.
*/
public
static
RubyClass
newClass
(
Ruby
runtime
,
RubyClass
superClass
,
String
name
,
ObjectAllocator
allocator
,
RubyModule
parent
,
boolean
setParent
,
CallSite
[]
extraCallSites
) {
RubyClass
clazz
=
newClass
(
runtime
,
superClass
,
extraCallSites
);
clazz
.
setBaseName
(
name
);
clazz
.
setAllocator
(
allocator
);
clazz
.
makeMetaClass
(
superClass
.
getMetaClass
());
if
(
setParent
)
clazz
.
setParent
(
parent
);
parent
.
setConstant
(
name
,
clazz
);
clazz
.
inherit
(
superClass
);
return
clazz
;
}
/** rb_make_metaclass
*
*/
@
Override
public
RubyClass
makeMetaClass
(
RubyClass
superClass
) {
if
(
isSingleton
()) {
// could be pulled down to RubyClass in future
MetaClass
klass
=
new
MetaClass
(
runtime
,
superClass
,
this
);
// rb_class_boot
setMetaClass
(
klass
);
klass
.
setMetaClass
(
klass
);
klass
.
setSuperClass
(
getSuperClass
().
getRealClass
().
getMetaClass
());
return
klass
;
}
else
{
return
super
.
makeMetaClass
(
superClass
);
}
}
@
Deprecated
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
int
methodIndex
,
String
name
,
IRubyObject
[]
args
,
CallType
callType
,
Block
block
) {
return
invoke
(
context
,
self
,
name
,
args
,
callType
,
block
);
}
public
boolean
notVisibleAndNotMethodMissing
(
DynamicMethod
method
,
String
name
,
IRubyObject
caller
,
CallType
callType
) {
return
!
method
.
isCallableFrom
(
caller
,
callType
) && !
name
.
equals
(
"method_missing"
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
CallType
callType
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
block
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
block
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
[]
args
,
CallType
callType
,
Block
block
) {
assert
args
!=
null
;
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
args
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
args
,
block
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
[]
args
,
Block
block
) {
assert
args
!=
null
;
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
args
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
args
,
block
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg
,
CallType
callType
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
arg
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg
,
block
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
arg
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg
,
block
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
CallType
callType
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
arg0
,
arg1
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
,
block
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
arg0
,
arg1
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
,
block
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
IRubyObject
arg2
,
CallType
callType
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
arg0
,
arg1
,
arg2
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
,
arg2
,
block
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
IRubyObject
arg2
,
Block
block
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
arg0
,
arg1
,
arg2
,
block
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
,
arg2
,
block
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
CallType
callType
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
);
}
public
IRubyObject
finvokeChecked
(
ThreadContext
context
,
IRubyObject
self
,
String
name
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
method
.
isUndefined
()) {
DynamicMethod
methodMissing
=
searchMethod
(
"method_missing"
);
if
(
methodMissing
.
isUndefined
() ||
methodMissing
.
equals
(
context
.
runtime
.
getDefaultMethodMissing
())) {
return
null
;
}
try
{
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
Block
.
NULL_BLOCK
);
}
catch
(
RaiseException
e
) {
if
(
context
.
runtime
.
getNoMethodError
().
isInstance
(
e
.
getException
())) {
if
(
self
.
respondsTo
(
name
)) {
throw
e
;
}
else
{
// we swallow, so we also must clear $!
context
.
setErrorInfo
(
context
.
nil
);
return
null
;
}
}
else
{
throw
e
;
}
}
}
return
method
.
call
(
context
,
self
,
this
,
name
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
[]
args
,
CallType
callType
) {
assert
args
!=
null
;
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
args
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
args
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
[]
args
) {
assert
args
!=
null
;
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
args
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
args
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg
,
CallType
callType
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
arg
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
arg
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
CallType
callType
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
arg0
,
arg1
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
arg0
,
arg1
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
);
}
public
IRubyObject
invoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
IRubyObject
arg2
,
CallType
callType
) {
DynamicMethod
method
=
searchMethod
(
name
);
IRubyObject
caller
=
context
.
getFrameSelf
();
if
(
shouldCallMethodMissing
(
method
,
name
,
caller
,
callType
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
callType
,
arg0
,
arg1
,
arg2
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
,
arg2
);
}
public
IRubyObject
finvoke
(
ThreadContext
context
,
IRubyObject
self
,
String
name
,
IRubyObject
arg0
,
IRubyObject
arg1
,
IRubyObject
arg2
) {
DynamicMethod
method
=
searchMethod
(
name
);
if
(
shouldCallMethodMissing
(
method
)) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
name
,
CallType
.
FUNCTIONAL
,
arg0
,
arg1
,
arg2
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
this
,
name
,
arg0
,
arg1
,
arg2
);
}
private
void
dumpReifiedClass
(
String
dumpDir
,
String
javaPath
,
byte
[]
classBytes
) {
if
(
dumpDir
!=
null
) {
if
(
dumpDir
.
equals
(
""
)) {
dumpDir
=
"."
;
}
java
.
io
.
FileOutputStream
classStream
=
null
;
try
{
java
.
io
.
File
classFile
=
new
java
.
io
.
File
(
dumpDir
,
javaPath
+
".class"
);
classFile
.
getParentFile
().
mkdirs
();
classStream
=
new
java
.
io
.
FileOutputStream
(
classFile
);
classStream
.
write
(
classBytes
);
}
catch
(
IOException
io
) {
getRuntime
().
getWarnings
().
warn
(
"unable to dump class file: "
+
io
.
getMessage
());
}
finally
{
if
(
classStream
!=
null
) {
try
{
classStream
.
close
();
}
catch
(
IOException
ignored
) {
}
}
}
}
}
private
void
generateMethodAnnotations
(
Map
<
Class
,
Map
<
String
,
Object
>>
methodAnnos
,
SkinnyMethodAdapter
m
,
List
<
Map
<
Class
,
Map
<
String
,
Object
>>>
parameterAnnos
) {
if
(
methodAnnos
!=
null
&&
methodAnnos
.
size
() !=
0
) {
for
(
Map
.
Entry
<
Class
,
Map
<
String
,
Object
>>
entry
:
methodAnnos
.
entrySet
()) {
m
.
visitAnnotationWithFields
(
ci
(
entry
.
getKey
()),
true
,
entry
.
getValue
());
}
}
if
(
parameterAnnos
!=
null
&&
parameterAnnos
.
size
() !=
0
) {
for
(
int
i
=
0
;
i
<
parameterAnnos
.
size
();
i
++) {
Map
<
Class
,
Map
<
String
,
Object
>>
annos
=
parameterAnnos
.
get
(
i
);
if
(
annos
!=
null
&&
annos
.
size
() !=
0
) {
for
(
Iterator
<
Map
.
Entry
<
Class
,
Map
<
String
,
Object
>>>
it
=
annos
.
entrySet
().
iterator
();
it
.
hasNext
();) {
Map
.
Entry
<
Class
,
Map
<
String
,
Object
>>
entry
=
it
.
next
();
m
.
visitParameterAnnotationWithFields
(
i
,
ci
(
entry
.
getKey
()),
true
,
entry
.
getValue
());
}
}
}
}
}
private
boolean
shouldCallMethodMissing
(
DynamicMethod
method
) {
return
method
.
isUndefined
();
}
private
boolean
shouldCallMethodMissing
(
DynamicMethod
method
,
String
name
,
IRubyObject
caller
,
CallType
callType
) {
return
method
.
isUndefined
() ||
notVisibleAndNotMethodMissing
(
method
,
name
,
caller
,
callType
);
}
public
IRubyObject
invokeInherited
(
ThreadContext
context
,
IRubyObject
self
,
IRubyObject
subclass
) {
DynamicMethod
method
=
getMetaClass
().
searchMethod
(
"inherited"
);
if
(
method
.
isUndefined
()) {
return
Helpers
.
callMethodMissing
(
context
,
self
,
method
.
getVisibility
(),
"inherited"
,
CallType
.
FUNCTIONAL
,
Block
.
NULL_BLOCK
);
}
return
method
.
call
(
context
,
self
,
getMetaClass
(),
"inherited"
,
subclass
,
Block
.
NULL_BLOCK
);
}
/** rb_class_new_instance
*
*/
@
JRubyMethod
(
name
=
"new"
,
omit
=
true
)
public
IRubyObject
newInstance
(
ThreadContext
context
,
Block
block
) {
IRubyObject
obj
=
allocate
();
baseCallSites
[
CS_IDX_INITIALIZE
].
call
(
context
,
obj
,
obj
,
block
);
return
obj
;
}
@
JRubyMethod
(
name
=
"new"
,
omit
=
true
)
public
IRubyObject
newInstance
(
ThreadContext
context
,
IRubyObject
arg0
,
Block
block
) {
IRubyObject
obj
=
allocate
();
baseCallSites
[
CS_IDX_INITIALIZE
].
call
(
context
,
obj
,
obj
,
arg0
,
block
);
return
obj
;
}
@
JRubyMethod
(
name
=
"new"
,
omit
=
true
)
public
IRubyObject
newInstance
(
ThreadContext
context
,
IRubyObject
arg0
,
IRubyObject
arg1
,
Block
block
) {
IRubyObject
obj
=
allocate
();
baseCallSites
[
CS_IDX_INITIALIZE
].
call
(
context
,
obj
,
obj
,
arg0
,
arg1
,
block
);
return
obj
;
}
@
JRubyMethod
(
name
=
"new"
,
omit
=
true
)
public
IRubyObject
newInstance
(
ThreadContext
context
,
IRubyObject
arg0
,
IRubyObject
arg1
,
IRubyObject
arg2
,
Block
block
) {
IRubyObject
obj
=
allocate
();
baseCallSites
[
CS_IDX_INITIALIZE
].
call
(
context
,
obj
,
obj
,
arg0
,
arg1
,
arg2
,
block
);
return
obj
;
}
@
JRubyMethod
(
name
=
"new"
,
rest
=
true
,
omit
=
true
)
public
IRubyObject
newInstance
(
ThreadContext
context
,
IRubyObject
[]
args
,
Block
block
) {
IRubyObject
obj
=
allocate
();
baseCallSites
[
CS_IDX_INITIALIZE
].
call
(
context
,
obj
,
obj
,
args
,
block
);
return
obj
;
}
/** rb_class_initialize
*
*/
@
JRubyMethod
(
compat
=
RUBY1_8
,
visibility
=
PRIVATE
)
@
Override
public
IRubyObject
initialize
(
ThreadContext
context
,
Block
block
) {
checkNotInitialized
();
return
initializeCommon
(
context
,
runtime
.
getObject
(),
block
,
false
);
}
@
JRubyMethod
(
compat
=
RUBY1_8
,
visibility
=
PRIVATE
)
public
IRubyObject
initialize
(
ThreadContext
context
,
IRubyObject
superObject
,
Block
block
) {
checkNotInitialized
();
checkInheritable
(
superObject
);
return
initializeCommon
(
context
, (
RubyClass
)
superObject
,
block
,
false
);
}
@
JRubyMethod
(
name
=
"initialize"
,
compat
=
RUBY1_9
,
visibility
=
PRIVATE
)
public
IRubyObject
initialize19
(
ThreadContext
context
,
Block
block
) {
checkNotInitialized
();
return
initializeCommon
(
context
,
runtime
.
getObject
(),
block
,
true
);
}
@
JRubyMethod
(
name
=
"initialize"
,
compat
=
RUBY1_9
,
visibility
=
PRIVATE
)
public
IRubyObject
initialize19
(
ThreadContext
context
,
IRubyObject
superObject
,
Block
block
) {
checkNotInitialized
();
checkInheritable
(
superObject
);
return
initializeCommon
(
context
, (
RubyClass
)
superObject
,
block
,
true
);
}
private
IRubyObject
initializeCommon
(
ThreadContext
context
,
RubyClass
superClazz
,
Block
block
,
boolean
ruby1_9
/*callInheritBeforeSuper*/
) {
setSuperClass
(
superClazz
);
allocator
=
superClazz
.
allocator
;
makeMetaClass
(
superClazz
.
getMetaClass
());
marshal
=
superClazz
.
marshal
;
superClazz
.
addSubclass
(
this
);
if
(
ruby1_9
) {
inherit
(
superClazz
);
super
.
initialize
(
context
,
block
);
}
else
{
super
.
initialize
(
context
,
block
);
inherit
(
superClazz
);
}
return
this
;
}
/** rb_class_init_copy
*
*/
@
JRubyMethod
(
name
=
"initialize_copy"
,
required
=
1
,
visibility
=
PRIVATE
)
@
Override
public
IRubyObject
initialize_copy
(
IRubyObject
original
){
checkNotInitialized
();
if
(
original
instanceof
MetaClass
)
throw
runtime
.
newTypeError
(
"can't copy singleton class"
);
super
.
initialize_copy
(
original
);
allocator
= ((
RubyClass
)
original
).
allocator
;
return
this
;
}
protected
void
setModuleSuperClass
(
RubyClass
superClass
) {
// remove us from old superclass's child classes
if
(
this
.
superClass
!=
null
)
this
.
superClass
.
removeSubclass
(
this
);
// add us to new superclass's child classes
superClass
.
addSubclass
(
this
);
// update superclass reference
setSuperClass
(
superClass
);
}
public
Collection
<
RubyClass
>
subclasses
(
boolean
includeDescendants
) {
Set
<
RubyClass
>
mySubclasses
=
subclasses
;
if
(
mySubclasses
!=
null
) {
Collection
<
RubyClass
>
mine
=
new
ArrayList
<
RubyClass
>(
mySubclasses
);
if
(
includeDescendants
) {
for
(
RubyClass
i
:
mySubclasses
) {
mine
.
addAll
(
i
.
subclasses
(
includeDescendants
));
}
}
return
mine
;
}
else
{
return
Collections
.
EMPTY_LIST
;
}
}
/**
* Add a new subclass to the weak set of subclasses.
*
* This version always constructs a new set to avoid having to synchronize
* against the set when iterating it for invalidation in
* invalidateCacheDescendants.
*
* @param subclass The subclass to add
*/
public
synchronized
void
addSubclass
(
RubyClass
subclass
) {
synchronized
(
runtime
.
getHierarchyLock
()) {
Set
<
RubyClass
>
oldSubclasses
=
subclasses
;
if
(
oldSubclasses
==
null
)
subclasses
=
oldSubclasses
=
new
WeakHashSet
<
RubyClass
>(
4
);
oldSubclasses
.
add
(
subclass
);
}
}
/**
* Remove a subclass from the weak set of subclasses.
*
* @param subclass The subclass to remove
*/
public
synchronized
void
removeSubclass
(
RubyClass
subclass
) {
synchronized
(
runtime
.
getHierarchyLock
()) {
Set
<
RubyClass
>
oldSubclasses
=
subclasses
;
if
(
oldSubclasses
==
null
)
return
;
oldSubclasses
.
remove
(
subclass
);
}
}
/**
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL