src/JavaResolver.st
author hlopkmar
Mon, 30 May 2011 21:32:17 +0000
branchjk_new_structure
changeset 822 36cb538be3c2
parent 821 560f60ad3a2a
child 846 cec92244091c
permissions -rw-r--r--
there's nothing I fix on the first try :)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     1
"{ Package: 'stx:libjava' }"
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     2
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     3
Object subclass:#JavaResolver
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
     4
	instanceVariableNames:'exceptionThrower'
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     5
	classVariableNames:'uniqueInstance'
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     6
	poolDictionaries:''
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     7
	category:'Languages-Java-Reader-Support-new'
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     8
!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
     9
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    10
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    11
!JavaResolver class methodsFor:'initialization'!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    12
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    13
initialize
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    14
    uniqueInstance := JavaResolver new.
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    15
    uniqueInstance exceptionThrower: JavaVM.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    16
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    17
    "/has methods at: and at: put: 
759
66d28d2fa62e JavaResolver: fixed bug in JavaResolver class>>#initialize
vranyj1
parents: 758
diff changeset
    18
    "/uniqueInstance resolvedClasses: Java.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    19
759
66d28d2fa62e JavaResolver: fixed bug in JavaResolver class>>#initialize
vranyj1
parents: 758
diff changeset
    20
    "Modified: / 10-04-2011 / 10:23:43 / Jan Vrany <jan.vrany@fit.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    21
    "Modified: / 13-04-2011 / 14:07:35 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    22
! !
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    23
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    24
!JavaResolver class methodsFor:'instance creation'!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    25
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    26
uniqueInstance
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    27
    ^uniqueInstance.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    28
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    29
    "Created: / 08-04-2011 / 17:36:37 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    30
    "Modified: / 11-04-2011 / 19:06:49 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    31
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    32
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    33
!JavaResolver methodsFor:'accessing'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    34
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    35
exceptionThrower
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    36
    ^ exceptionThrower
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    37
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    38
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    39
exceptionThrower:something
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    40
    exceptionThrower := something.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    41
! !
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    42
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    43
!JavaResolver methodsFor:'class resolving'!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    44
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    45
checkIfPrimitiveArrayRef: aJavaClassRef andWrap: result 
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    46
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    47
    ^ (JavaDescriptor readFromString: aJavaClassRef name) javaClass.
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    48
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    49
    "Created: / 23-05-2011 / 21:12:04 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    50
!
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    51
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    52
resolveClassIndentifiedByRef: aJavaClassRef 
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    53
    | classLoader  result |
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    54
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    55
    self validateClassRef: aJavaClassRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    56
    result := self lookupClassIfAlreadyResolved: aJavaClassRef javaClassName.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    57
    result ifNotNil: 
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    58
            [ "/wrap result with array(s) if needed and return it
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    59
            self checkIfArrayRef: aJavaClassRef andWrap: result ].
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    60
     "
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    61
     To resolve an unresolved symbolic reference from D to a class or interface C denoted by N,
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    62
     the following steps are performed:
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    63
     The defining class loader of D is used to create a class or interface denoted by N.
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    64
     This class or interface is C. Any exception that can be thrown as a result of failure
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    65
     of class or interface creation can thus be thrown as a result of failure of class and
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    66
     interface resolution. The details of the process are given in Section 5.3.
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    67
    "
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    68
    classLoader := aJavaClassRef classLoader.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    69
    classLoader isNil 
814
68df82c46fb0 finally forced myself to refactor tests.. fieldRef tests are ok now.. methodRef to come..
hlopkmar
parents: 813
diff changeset
    70
        ifTrue: [ result := self loadUnresolvedClass: aJavaClassRef ]
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    71
        ifFalse: 
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    72
            [ result := self loadUnresolvedClass: aJavaClassRef
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    73
                        withJavaClassLoader: classLoader. ].
774
ac54730a2b74 cleaning.. removed JavaConstantPoolContent
hlopkmar
parents: 773
diff changeset
    74
    result ifNil: 
784
1f70ce9d0fee small fixes
hlopkmar
parents: 774
diff changeset
    75
            [ self halt.
814
68df82c46fb0 finally forced myself to refactor tests.. fieldRef tests are ok now.. methodRef to come..
hlopkmar
parents: 813
diff changeset
    76
             "tell mh, he will throw exception instead, for now, he wants to halt." ].
68df82c46fb0 finally forced myself to refactor tests.. fieldRef tests are ok now.. methodRef to come..
hlopkmar
parents: 813
diff changeset
    77
    result isJavaPrimitiveType 
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    78
        ifTrue: [ ^ self checkIfPrimitiveArrayRef: aJavaClassRef andWrap: result ].
812
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
    79
    result classInit.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    80
     "
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    81
     If C is an array class and its element type is a reference type, then the symbolic reference
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    82
     to the class or interface representing the element type is resolved by invoking the algorithm
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    83
     in Section 5.4.3.1 recursively."
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    84
    result := self checkIfArrayRef: aJavaClassRef andWrap: result.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    85
     "Finally, access permissions to C are checked:
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    86
     If C is not accessible (5.4.4) to D, class or interface resolution throws an IllegalAccessError.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    87
     This condition can occur, for example, if C is a class that was originally declared to be
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    88
     public but was changed to be non-public after D was compiled.
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    89
     
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    90
     If steps 1 and 2 succeed but step 3 fails, C is still valid and usable. Nevertheless, resolution
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    91
     fails, and D is prohibited from accessing C."
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    92
    (self checkPermissionsFrom: aJavaClassRef owner to: result) 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    93
        ifTrue: [ ^ result ]
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    94
        ifFalse: [ self throwIllegalAccessError ].
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    95
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
    96
    "Created: / 11-04-2011 / 19:07:19 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
812
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
    97
    "Modified: / 22-05-2011 / 17:59:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
    98
    "Modified: / 23-05-2011 / 21:11:32 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
    99
! !
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   100
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   101
!JavaResolver methodsFor:'class resolving helpers'!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   102
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   103
checkIfArrayRef: aJavaClassRef andWrap: result 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   104
 "/wrap result with array(s) if needed and return it
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   105
    ^ aJavaClassRef isJavaArrayClassRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   106
        ifFalse: [ result ]
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   107
        ifTrue: [ self wrapJavaClass: result withArrayAsSpecifiedIn: aJavaClassRef ]
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   108
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   109
    "Modified: / 11-04-2011 / 19:31:43 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   110
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   111
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   112
checkPermissionsFrom: refOwner to: resolvedClass 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   113
    "
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   114
     A class or interface C is accessible to a class or interface D if and only if either of the following conditions are true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   115
            C is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   116
            C and D are members of the same runtime package (§5.3).
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   117
     Finally, access permissions to C are checked:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   118
     If C is not accessible (§5.4.4) to D, class or interface resolution throws an IllegalAccessError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   119
     This condition can occur, for example, if C is a class that was originally declared to be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   120
     public but was changed to be non-public after D was compiled.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   121
     At run time, a class or interface is determined not by its name alone,
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   122
     but by a pair: its fully qualified name and its defining class loader.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   123
     Each such class or interface belongs to a single runtime package. The runtime
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   124
     package of a class or interface is determined by the package name and
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   125
     defining class loader of the class or interface."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   126
    
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   127
    resolvedClass isPublic ifTrue: [ ^ true ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   128
    resolvedClass classLoader = refOwner classLoader ifFalse: [ ^ false ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   129
    ^ refOwner javaPackage = resolvedClass javaPackage.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   130
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   131
    "Created: / 11-04-2011 / 19:35:21 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   132
    "Modified: / 13-04-2011 / 23:13:39 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   133
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   134
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   135
loadUnresolvedClass: aJavaClassRef 
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   136
    | nm |
812
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
   137
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
   138
    nm := aJavaClassRef javaClassName.
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   139
    nm size == 1 
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   140
        and: [ JavaDescriptor baseTypes at: nm first ifPresent: [:cls | ^ cls ] ].
805
357902dfedca fixed dissassembler, ltb changed class resolving
hlopkmar
parents: 798
diff changeset
   141
    ^ Java classForName: aJavaClassRef javaClassName.
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   142
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   143
    "Created: / 11-04-2011 / 19:27:10 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
812
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
   144
    "Modified: / 22-05-2011 / 17:58:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   145
    "Modified: / 23-05-2011 / 21:06:25 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   146
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   147
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   148
loadUnresolvedClass: aJavaClassRef withJavaClassLoader: classLoader 
798
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   149
    | jClass |
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   150
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   151
    jClass := classLoader 
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   152
                perform: #'loadClass(Ljava/lang/String;)Ljava/lang/Class;'
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   153
                with: (Java as_String: (aJavaClassRef name)).
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   154
    ^JavaVM reflection classForJavaClassObject: jClass.
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   155
b534e73eaf7e JavaClassReader2 now uses correct superclass loading
hlopkmar
parents: 796
diff changeset
   156
    "Modified: / 18-05-2011 / 14:52:39 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   157
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   158
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   159
lookupClassIfAlreadyResolved: javaClassName 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   160
    ^ nil
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   161
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   162
    "Modified: / 13-04-2011 / 14:05:25 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   163
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   164
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   165
validateClassRef: aJavaClassRef 
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   166
    self assert: aJavaClassRef isJavaRef.
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   167
    self assert: aJavaClassRef isJavaClassRef .
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   168
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   169
    "Modified: / 23-05-2011 / 21:04:00 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   170
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   171
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   172
wrapJavaClass: aJavaClass withArrayAsSpecifiedIn: aJavaClassRef 
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   173
    "wraps aJavaClass with as many array dimensions as needed (zero means no array)"
813
cb429d02faca fixed my really stupid bug in JavaResolver>>wrapJavaClas..
hlopkmar
parents: 812
diff changeset
   174
    
812
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
   175
    | arrayClass |
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   176
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   177
    aJavaClassRef isJavaArrayClassRef ifFalse: [ ^ aJavaClass ].
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   178
    aJavaClassRef arrayDimensions timesRepeat: 
813
cb429d02faca fixed my really stupid bug in JavaResolver>>wrapJavaClas..
hlopkmar
parents: 812
diff changeset
   179
            [ arrayClass := aJavaClass.
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   180
            arrayClass := arrayClass arrayClass. ].
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   181
    ^ arrayClass.
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   182
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   183
    "Created: / 08-04-2011 / 18:40:00 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
812
62e917825364 - JavaDescriptor, JavaResolver, JavaArray: fixes for primitive and array types
vranyj1
parents: 809
diff changeset
   184
    "Modified: / 22-05-2011 / 17:48:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
817
3f2405c6ef88 its nice to work after jv :) after writing tests I surprisedly realized, that he already implemented primitives and primitive arrays in JavaClassRef2 :)
hlopkmar
parents: 816
diff changeset
   185
    "Modified: / 23-05-2011 / 21:06:41 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   186
! !
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   187
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   188
!JavaResolver methodsFor:'common helpers'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   189
796
9b3e00dd3196 Small fix, so JavaFields have their javaClass always set.
hlopkmar
parents: 784
diff changeset
   190
checkPermissionsForMethodOrField: aJavaMethodOrField from: accessingJavaClass to: resolvedJavaClass 
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   191
    "A class or interface C is accessible to a class or interface D if 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   192
     and only if either of the following conditions are true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   193
     C is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   194
     C and D are members of the same runtime package (§5.3).
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   195
     A field or method R is accessible to a class or interface D if and only
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   196
     if any of the following conditions is true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   197
     R is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   198
     R is protected and is declared in a class C, and D is either a subclass
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   199
     of C or C itself.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   200
     R is either protected or package private (that is, neither public nor
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   201
     protected nor private), and is declared by a class in the same runtime
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   202
     package as D.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   203
     R is private and is declared in D.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   204
     This discussion of access control omits a related restriction on the target
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   205
     of a protected field access or method invocation (the target must be of class
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   206
     D or a subtype of D). That requirement is checked as part of the verification
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   207
     process (§5.4.1); it is not part of link-time access control."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   208
    
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   209
    (self checkPermissionsFrom: accessingJavaClass to: resolvedJavaClass) 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   210
        ifFalse: [ ^ false ].
796
9b3e00dd3196 Small fix, so JavaFields have their javaClass always set.
hlopkmar
parents: 784
diff changeset
   211
    aJavaMethodOrField isPublic ifTrue: [ ^ true ].
822
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   212
    ((aJavaMethodOrField isProtected and: 
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   213
            [ resolvedJavaClass javaComponentClass 
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   214
                equalsOrIsSubclassOf: aJavaMethodOrField javaClass ]) 
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   215
        and: 
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   216
            [ accessingJavaClass javaComponentClass 
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   217
                equalsOrIsSubclassOf: aJavaMethodOrField javaClass ]) 
821
560f60ad3a2a fixed (hopefully:) bug in permissions (new resolving)
hlopkmar
parents: 819
diff changeset
   218
            ifTrue: [ ^ true ].
796
9b3e00dd3196 Small fix, so JavaFields have their javaClass always set.
hlopkmar
parents: 784
diff changeset
   219
    ((aJavaMethodOrField isPrivate not 
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   220
        and: [ resolvedJavaClass javaPackage = accessingJavaClass javaPackage ]) 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   221
            and: [ resolvedJavaClass classLoader = accessingJavaClass classLoader ]) 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   222
            ifTrue: [ ^ true ].
796
9b3e00dd3196 Small fix, so JavaFields have their javaClass always set.
hlopkmar
parents: 784
diff changeset
   223
    (aJavaMethodOrField isPrivate 
821
560f60ad3a2a fixed (hopefully:) bug in permissions (new resolving)
hlopkmar
parents: 819
diff changeset
   224
        and: [ aJavaMethodOrField javaClass = accessingJavaClass ]) 
560f60ad3a2a fixed (hopefully:) bug in permissions (new resolving)
hlopkmar
parents: 819
diff changeset
   225
            ifTrue: [ ^ true ].
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   226
    ^ false.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   227
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   228
    "Created: / 14-04-2011 / 14:19:33 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
822
36cb538be3c2 there's nothing I fix on the first try :)
hlopkmar
parents: 821
diff changeset
   229
    "Modified: / 30-05-2011 / 23:32:55 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   230
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   231
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   232
!JavaResolver methodsFor:'exceptions'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   233
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   234
throwAbstractMethodError
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   235
    exceptionThrower throwAbstractMethodError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   236
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   237
    "Created: / 11-04-2011 / 20:19:42 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   238
    "Modified: / 13-04-2011 / 14:07:46 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   239
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   240
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   241
throwIllegalAccessError
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   242
    exceptionThrower throwIllegalAccessError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   243
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   244
    "Created: / 11-04-2011 / 19:39:16 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   245
    "Modified: / 13-04-2011 / 23:06:58 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   246
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   247
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   248
throwIncompatibleClassChangeError
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   249
    exceptionThrower throwIncompatibleClassChangeError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   250
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   251
    "Created: / 11-04-2011 / 20:02:01 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   252
    "Modified: / 13-04-2011 / 14:07:54 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   253
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   254
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   255
throwNoSuchFieldException
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   256
    exceptionThrower throwNoSuchFieldException.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   257
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   258
    "Created: / 11-04-2011 / 21:35:02 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   259
    "Modified: / 13-04-2011 / 14:07:57 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   260
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   261
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   262
throwNoSuchMethodError
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   263
    exceptionThrower throwNoSuchMethodError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   264
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   265
    "Created: / 11-04-2011 / 20:19:41 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   266
    "Modified: / 13-04-2011 / 14:08:01 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   267
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   268
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   269
!JavaResolver methodsFor:'field resolving'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   270
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   271
resolveFieldIndentifiedByRef: aJavaFieldRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   272
    | result  class |
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   273
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   274
    self validateFieldRef: aJavaFieldRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   275
    result := self lookupFieldIfAlreadyResolved: aJavaFieldRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   276
    result ifNotNil: [ ^ result ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   277
    class := aJavaFieldRef classRef resolve.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   278
    class ifNil: [ self halt: 'should not happen - tell mh' ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   279
    result := class lookupFieldByNameAndType: aJavaFieldRef nameAndType.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   280
    result ifNil: [ self throwNoSuchFieldException ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   281
    (self 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   282
        checkPermissionsForField: result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   283
        from: aJavaFieldRef classRef owner
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   284
        to: class) ifFalse: [ self throwIllegalAccessError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   285
    ^ result.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   286
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   287
    "
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   288
     To resolve an unresolved symbolic reference from D to a field in a class
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   289
     or interface C, the symbolic reference to C given by the field reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   290
     must first be resolved (§5.4.3.1). Therefore, any exception that can be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   291
     thrown as a result of failure of resolution of a class or interface reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   292
     can be thrown as a result of failure of field resolution. If the reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   293
     to C can be successfully resolved, an exception relating to the failure of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   294
     resolution of the field reference itself can be thrown.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   295
     When resolving a field reference, field resolution first attempts to look
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   296
     up the referenced field in C and its superclasses:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   297
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   298
     If C declares a field with the name and descriptor specified by the field
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   299
     reference, field lookup succeeds. The declared field is the result of the
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   300
     field lookup.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   301
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   302
     Otherwise, field lookup is applied recursively to the direct superinterfaces
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   303
     of the specified class or interface C.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   304
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   305
     Otherwise, if C has a superclass S, field lookup is applied recursively to S.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   306
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   307
     Otherwise, field lookup fails.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   308
     If field lookup fails, field resolution throws a NoSuchFieldError. Otherwise,
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   309
     if field lookup succeeds but the referenced field is not accessible (§5.4.4)
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   310
     to D, field resolution throws an IllegalAccessError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   311
     Otherwise, let <E, L1> be the class or interface in which the referenced
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   312
     field is actually declared and let L2 be the defining loader of D. Let T be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   313
     the name of the type of the referenced field. The Java virtual machine must
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   314
     impose the loading constraint that TL1=TL2(§5.3.4)."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   315
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   316
    "Created: / 11-04-2011 / 21:15:20 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   317
    "Modified: / 13-04-2011 / 11:57:24 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   318
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   319
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   320
resolveStaticFieldIndentifiedByRef: aJavaFieldRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   321
    | result  class |
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   322
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   323
    self validateFieldRef: aJavaFieldRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   324
    result := self lookupFieldIfAlreadyResolved: aJavaFieldRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   325
    result ifNotNil: [ ^ result ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   326
    class := aJavaFieldRef classRef resolve.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   327
    class ifNil: [ self halt: 'should not happen - tell mh' ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   328
    result := class lookupStaticFieldByNameAndType: aJavaFieldRef nameAndType.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   329
    result ifNil: [ self throwNoSuchFieldException ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   330
    (self 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   331
        checkPermissionsForField: result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   332
        from: aJavaFieldRef classRef owner
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   333
        to: class) ifFalse: [ self throwIllegalAccessError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   334
    ^ result.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   335
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   336
    "
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   337
     To resolve an unresolved symbolic reference from D to a field in a class
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   338
     or interface C, the symbolic reference to C given by the field reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   339
     must first be resolved (§5.4.3.1). Therefore, any exception that can be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   340
     thrown as a result of failure of resolution of a class or interface reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   341
     can be thrown as a result of failure of field resolution. If the reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   342
     to C can be successfully resolved, an exception relating to the failure of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   343
     resolution of the field reference itself can be thrown.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   344
     When resolving a field reference, field resolution first attempts to look
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   345
     up the referenced field in C and its superclasses:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   346
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   347
     If C declares a field with the name and descriptor specified by the field
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   348
     reference, field lookup succeeds. The declared field is the result of the
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   349
     field lookup.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   350
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   351
     Otherwise, field lookup is applied recursively to the direct superinterfaces
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   352
     of the specified class or interface C.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   353
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   354
     Otherwise, if C has a superclass S, field lookup is applied recursively to S.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   355
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   356
     Otherwise, field lookup fails.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   357
     If field lookup fails, field resolution throws a NoSuchFieldError. Otherwise,
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   358
     if field lookup succeeds but the referenced field is not accessible (§5.4.4)
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   359
     to D, field resolution throws an IllegalAccessError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   360
     Otherwise, let <E, L1> be the class or interface in which the referenced
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   361
     field is actually declared and let L2 be the defining loader of D. Let T be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   362
     the name of the type of the referenced field. The Java virtual machine must
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   363
     impose the loading constraint that TL1=TL2(§5.3.4)."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   364
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   365
    "Created: / 28-04-2011 / 22:31:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   366
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   367
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   368
!JavaResolver methodsFor:'field resolving helpers'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   369
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   370
checkPermissionsForField: aJavaField from: accessingJavaClass to: resolvedJavaClass 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   371
    "A class or interface C is accessible to a class or interface D if and only 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   372
     if either of the following conditions are true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   373
     C is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   374
     C and D are members of the same runtime package (5.3).
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   375
     A field or method R is accessible to a class or interface D if and only
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   376
     if any of the following conditions is true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   377
     R is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   378
     R is protected and is declared in a class C, and D is either a subclass of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   379
     C or C itself.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   380
     R is either protected or package private (that is, neither public nor protected
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   381
     nor private), and is declared by a class in the same runtime package as D.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   382
     R is private and is declared in D.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   383
     This discussion of access control omits a related restriction on the target of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   384
     a protected field access or method invocation (the target must be of class D or
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   385
     a subtype of D). That requirement is checked as part of the verification process
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   386
     (5.4.1); it is not part of link-time access control."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   387
    
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   388
    ^ self 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   389
        checkPermissionsForMethodOrField: aJavaField from: accessingJavaClass
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   390
        to: resolvedJavaClass.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   391
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   392
    "Created: / 11-04-2011 / 21:46:29 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   393
    "Modified: / 14-04-2011 / 14:21:05 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   394
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   395
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   396
lookupFieldIfAlreadyResolved: aJavaFieldRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   397
    ^ nil.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   398
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   399
    "Created: / 11-04-2011 / 21:16:45 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   400
    "Modified: / 13-04-2011 / 11:57:13 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   401
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   402
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   403
validateFieldRef: aJavaFieldRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   404
    aJavaFieldRef isJavaRef ifFalse:[self halt:'I expected Java Ref'].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   405
    aJavaFieldRef isJavaFieldRef ifFalse:[self halt:'I expected Java Field Ref'].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   406
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   407
    "Created: / 11-04-2011 / 21:16:44 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   408
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   409
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   410
!JavaResolver methodsFor:'interface method resolving'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   411
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   412
resolveInterfaceMethodIdentifiedByRef: aJavaInterfaceMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   413
    | result  class |
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   414
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   415
    self validateInterfaceMethodRef: aJavaInterfaceMethodRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   416
    result := self 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   417
                lookupInterfaceMethodIfAlreadyResolved: aJavaInterfaceMethodRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   418
    result ifNotNil: [ ^ result ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   419
    class := aJavaInterfaceMethodRef classRef resolve.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   420
    class ifNil: [ self halt: 'should not happen - tell mh' ].
816
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   421
    class isInterface ifFalse: [ self throwIncompatibleClassChangeError ].
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   422
    result := class 
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   423
                lookupMethodByNameAndType: aJavaInterfaceMethodRef nameAndType.
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   424
    result ifNil: [ self throwNoSuchMethodError ].
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   425
    (self 
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   426
        checkPermissionsForMethod: result
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   427
        from: aJavaInterfaceMethodRef classRef owner
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   428
        to: class) ifFalse: [ self throwIllegalAccessError ].
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   429
^ result.
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   430
     "
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   431
     To resolve an unresolved symbolic reference from D to an interface method in an
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   432
     interface C, the symbolic reference to C given by the interface method reference is
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   433
     first resolved (§5.4.3.1). Therefore, any exceptions that can be thrown as a result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   434
     of failure of resolution of an interface reference can be thrown as a result of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   435
     failure of interface method resolution. If the reference to C can be successfully
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   436
     resolved, exceptions relating to the resolution of the interface method reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   437
     itself can be thrown.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   438
     When resolving an interface method reference:
816
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   439
     
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   440
     If C is not an interface, interface method resolution throws an IncompatibleClassChangeError.""Otherwise, if the referenced method does not have the same name and descriptor as
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   441
     a method in C or in one of the superinterfaces of C, or in class Object, interface
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   442
     method resolution throws a NoSuchMethodError.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   443
     Otherwise, let <E, L1> be the interface in which the referenced interface method is
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   444
     actually declared and let L2 be the defining loader of D. Let T0 be the name of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   445
     the type returned by the referenced method, and let T1, ..., Tn be the names of the
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   446
     argument types of the referenced method. The Java virtual machine must impose the
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   447
     loading constraints TiL1 = TiL2 for i = 0 to n (§5.3.4)."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   448
816
4e3072021201 all tests fixed.. updated interfaceMethodRef to checkPermissions (which were not checked until now ehm)
hlopkmar
parents: 814
diff changeset
   449
    "Modified: / 23-05-2011 / 17:56:24 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   450
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   451
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   452
!JavaResolver methodsFor:'interface method resolving helpers'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   453
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   454
lookupInterfaceMethodIfAlreadyResolved: aJavaInterfaceMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   455
    ^  nil.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   456
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   457
    "Created: / 13-04-2011 / 11:53:36 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   458
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   459
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   460
validateInterfaceMethodRef: aJavaInterfaceMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   461
        aJavaInterfaceMethodRef isJavaRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   462
        ifFalse: [ self halt: 'I expected JavaRef instance as an argument' ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   463
    aJavaInterfaceMethodRef isJavaInterfaceMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   464
                ifFalse: [ self halt: 'I expected JavaMethodRef instance as an argument' ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   465
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   466
    "Created: / 13-04-2011 / 11:53:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   467
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   468
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   469
!JavaResolver methodsFor:'method resolving'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   470
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   471
resolveMethodIndentifiedByRef: aJavaMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   472
    | result  class |
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   473
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   474
    self validateMethodRef: aJavaMethodRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   475
    result := self lookupMethodIfAlreadyResolved: aJavaMethodRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   476
    result ifNotNil: [ ^ result ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   477
    class := aJavaMethodRef classRef resolve.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   478
    class ifNil: [ self halt: 'should not happen - tell mh' ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   479
     "
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   480
     To resolve an unresolved symbolic reference from D to a method in
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   481
     a class C, the symbolic reference to C given by the method reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   482
     is first resolved (§5.4.3.1). Therefore, any exceptions that can be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   483
     thrown due to resolution of a class reference can be thrown as a result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   484
     of method resolution. If the reference to C can be successfully resolved,
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   485
     exceptions relating to the resolution of the method reference itself
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   486
     can be thrown.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   487
     When resolving a method reference:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   488
     
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   489
     Method resolution checks whether C is a class or an interface.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   490
     If C is an interface, method resolution throws an IncompatibleClassChangeError."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   491
    class isInterface ifTrue: [ self throwIncompatibleClassChangeError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   492
     "Method resolution attempts to look up the referenced method in C and its
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   493
     superclasses:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   494
     If C declares a method with the name and descriptor specified by the method
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   495
     reference, method lookup succeeds.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   496
     Otherwise, if C has a superclass, step 2 of method lookup is recursively
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   497
     invoked on the direct superclass of C.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   498
     
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   499
     Otherwise, method lookup attempts to locate the referenced method in any of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   500
     the superinterfaces of the specified class C.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   501
     If any superinterface of C declares a method with the name and descriptor
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   502
     specified by the method reference, method lookup succeeds.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   503
     Otherwise, method lookup fails.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   504
     If method lookup fails, method resolution throws a NoSuchMethodError. If method
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   505
     lookup succeeds and the method is abstract, but C is not abstract, method resolution
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   506
     throws an AbstractMethodError. Otherwise, if the referenced method is not accessible
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   507
     (§5.4.4) to D, method resolution throws an IllegalAccessError."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   508
    result := class lookupMethodByNameAndType: aJavaMethodRef nameAndType.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   509
    result ifNil: [ self throwNoSuchMethodError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   510
    (result isAbstract and: [ class isAbstract not ]) 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   511
        ifTrue: [ self throwAbstractMethodError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   512
    (self 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   513
        checkPermissionsForMethod: result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   514
        from: aJavaMethodRef classRef owner
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   515
        to: class) ifFalse: [ self throwIllegalAccessError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   516
    ^ result.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   517
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   518
    "Otherwise, let <E, L1> be the class or interface in which the referenced method is
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   519
     actually declared and let L2 be the defining loader of D. Let T0 be the name of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   520
     the type returned by the referenced method, and let T1, ..., Tn be the names of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   521
     the argument types of the referenced method. The Java virtual machine must impose
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   522
     the loading constraints TiL1=TiL2 for i = 0 to n (§5.3.4)."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   523
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   524
    "Created: / 11-04-2011 / 19:45:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   525
    "Modified: / 14-04-2011 / 00:01:34 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   526
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   527
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   528
resolveStaticMethodIndentifiedByRef: aJavaMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   529
    | result  class |
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   530
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   531
    self validateMethodRef: aJavaMethodRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   532
    result := self lookupMethodIfAlreadyResolved: aJavaMethodRef.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   533
    result ifNotNil: [ ^ result ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   534
    class := aJavaMethodRef classRef resolve.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   535
    class ifNil: [ self halt: 'should not happen - tell mh' ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   536
     "
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   537
     To resolve an unresolved symbolic reference from D to a method in
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   538
     a class C, the symbolic reference to C given by the method reference
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   539
     is first resolved (§5.4.3.1). Therefore, any exceptions that can be
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   540
     thrown due to resolution of a class reference can be thrown as a result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   541
     of method resolution. If the reference to C can be successfully resolved,
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   542
     exceptions relating to the resolution of the method reference itself
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   543
     can be thrown.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   544
     When resolving a method reference:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   545
     
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   546
     Method resolution checks whether C is a class or an interface.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   547
     If C is an interface, method resolution throws an IncompatibleClassChangeError."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   548
    class isInterface ifTrue: [ self throwIncompatibleClassChangeError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   549
     "Method resolution attempts to look up the referenced method in C and its
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   550
     superclasses:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   551
     If C declares a method with the name and descriptor specified by the method
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   552
     reference, method lookup succeeds.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   553
     Otherwise, if C has a superclass, step 2 of method lookup is recursively
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   554
     invoked on the direct superclass of C.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   555
     
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   556
     Otherwise, method lookup attempts to locate the referenced method in any of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   557
     the superinterfaces of the specified class C.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   558
     If any superinterface of C declares a method with the name and descriptor
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   559
     specified by the method reference, method lookup succeeds.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   560
     Otherwise, method lookup fails.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   561
     If method lookup fails, method resolution throws a NoSuchMethodError. If method
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   562
     lookup succeeds and the method is abstract, but C is not abstract, method resolution
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   563
     throws an AbstractMethodError. Otherwise, if the referenced method is not accessible
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   564
     (§5.4.4) to D, method resolution throws an IllegalAccessError."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   565
    result := class lookupStaticMethodByNameAndType: aJavaMethodRef nameAndType.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   566
    result ifNil: [ self throwNoSuchMethodError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   567
    (result isAbstract and: [ class isAbstract not ]) 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   568
        ifTrue: [ self throwAbstractMethodError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   569
    (self 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   570
        checkPermissionsForMethod: result
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   571
        from: aJavaMethodRef classRef owner
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   572
        to: class) ifFalse: [ self throwIllegalAccessError ].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   573
    ^ result.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   574
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   575
    "Otherwise, let <E, L1> be the class or interface in which the referenced method is
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   576
     actually declared and let L2 be the defining loader of D. Let T0 be the name of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   577
     the type returned by the referenced method, and let T1, ..., Tn be the names of
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   578
     the argument types of the referenced method. The Java virtual machine must impose
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   579
     the loading constraints TiL1=TiL2 for i = 0 to n (§5.3.4)."
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   580
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   581
    "Created: / 28-04-2011 / 22:50:04 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   582
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   583
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   584
!JavaResolver methodsFor:'method resolving helpers'!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   585
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   586
checkPermissionsForMethod: aJavaMethod from: accessingJavaClass to: resolvedJavaClass 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   587
    "A class or interface C is accessible to a class or interface D if 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   588
     and only if either of the following conditions are true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   589
     C is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   590
     C and D are members of the same runtime package (§5.3).
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   591
     A field or method R is accessible to a class or interface D if and only
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   592
     if any of the following conditions is true:
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   593
     R is public.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   594
     R is protected and is declared in a class C, and D is either a subclass
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   595
     of C or C itself.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   596
     R is either protected or package private (that is, neither public nor
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   597
     protected nor private), and is declared by a class in the same runtime
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   598
     package as D.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   599
     R is private and is declared in D.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   600
     This discussion of access control omits a related restriction on the target
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   601
     of a protected field access or method invocation (the target must be of class
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   602
     D or a subtype of D). That requirement is checked as part of the verification
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   603
     process (§5.4.1); it is not part of link-time access control."
819
d95b67600835 Static field resolving fixed
vranyj1
parents: 817
diff changeset
   604
d95b67600835 Static field resolving fixed
vranyj1
parents: 817
diff changeset
   605
    "JV@2011-05-24: Temporary hack, since access checking
d95b67600835 Static field resolving fixed
vranyj1
parents: 817
diff changeset
   606
     is somewhat broken. Marcle should fix it :-)"
d95b67600835 Static field resolving fixed
vranyj1
parents: 817
diff changeset
   607
    OperatingSystem getLoginName = 'jv' ifTrue:[^true].
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   608
    
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   609
  ^ self checkPermissionsForMethodOrField: aJavaMethod from: accessingJavaClass to: resolvedJavaClass.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   610
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   611
    "Created: / 11-04-2011 / 20:20:12 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   612
    "Modified: / 14-04-2011 / 14:20:27 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
819
d95b67600835 Static field resolving fixed
vranyj1
parents: 817
diff changeset
   613
    "Modified: / 24-05-2011 / 14:06:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
761
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   614
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   615
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   616
lookupMethodIfAlreadyResolved: aJavaMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   617
    ^ nil.
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   618
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   619
    "Created: / 11-04-2011 / 19:50:38 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   620
    "Modified: / 13-04-2011 / 11:57:00 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   621
!
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   622
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   623
validateMethodRef: aJavaMethodRef 
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   624
    aJavaMethodRef isJavaRef ifFalse:[self halt: 'I expected JavaRef instance as an argument'].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   625
    aJavaMethodRef isJavaMethodRef ifFalse: [self halt: 'I expected JavaMethodRef instance as an argument'].
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   626
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   627
    "Created: / 11-04-2011 / 19:47:25 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   628
! !
43e017ec7958 Merged with /branches/jk
vranyj1
parents: 759
diff changeset
   629
758
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   630
!JavaResolver class methodsFor:'documentation'!
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   631
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   632
version_SVN
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   633
    ^ '$Id$'
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   634
! !
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   635
be8e84381ce0 Merged with /branches/jk
vranyj1
parents:
diff changeset
   636
JavaResolver initialize!