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
|
# Flexible Java Types
## Goals
* Eliminate the need in external annotations for compilation
* Compilation results (errors) will never depend on availability of annotations
* Eliminate some problems in loading Java descriptors (propagation issues, raw types etc)
* Facilitate future development of dynamic types
## Flexible Types
This is a new kind of types. A flexible type consists of two inflexible ones: a lower bound and an upper bound, written
```
(Lower..Upper)
```
This syntax is not supported in Kotlin. Flexible types are non-denotable.
Invariants:
* `Lower <: Upper` (also, can't be the same)
* `Lower`, `Upper` are not flexible types themselves, but may contain flexible types (e.g. as type arguments)
* `Lower`, `Upper` are not error types
Subtyping rules:
Let `T`, `L`, `U`, `A`, `B` be inflexible types. Symbol `|-` (turnstile) means "entails".
* `L <: T |- (L..U) <: T`
* `T <: U |- T <: (L..U)`
* `A <: U |- (A..B) <: (L..U)`
Least Upper Bound (aka "common supertype"):
* `lub[(A..B), (C..D)] = (lub[A, C], lub[B, D])
Type equivalence (aka `JetTypeChecker.DEFAULT.equalTypes()`):
`T1 ~~ T2 <=> T1 <: T2 && T2 <: T1`
NOTE: This relation is NOT transitive: `T?` ~~ (T..T?)` and `(T..T?) ~~ T`, but `T? !~ T`
## Loading Java Types
For the sake of notation, we'll write `k(T)` for a Kotlin type loaded for a Java type `T`
A Java type `T` that legitimately has no type arguments (not a Raw type) is loaded as
```
k(T) = (T..T?) // T is not a generic type, notation: T!
k(G<T>) = (G<k(T)>..G<k(T)>?) // notation: G<T!>!
k(T[]) = (Array<k(T)>..Array<out k(T)>?) // notation: Array<(out) T!>!
k(java.util.Collection<T>) = (kotlin.MutableCollection<k(T)>..kotlin.Collection<k(T)>?)
// notation (Mutable)Collection<T!>!
```
Examples:
```
k(java.lang.String) = kotlin.String!
k(int) = kotlin.Int // No flexible types here
k(java.lang.Integer) = kotlin.Int!
k(Foo<Bar>) = Foo<Bar!>!
k(int[]) = IntArray
```
## Raw types
Raw Java types (see https://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.8 for clarification) are loaded as usual flexible types with special arguments projections.
```
Raw(G) = (G<ErasedUpperBound(T)>..G<out ErasedUpperBound(T)>?) // T is a generic parameter of G and it's invariant or has `out` variance.
// notation: G<(raw) ErasedUpperBound(T)>!
Raw(G) = (G<ErasedUpperBound(T1)>..G<Nothing>?) // T is a generic parameter of G and it has `in` variance.
Raw(java.util.Collection) = (MutableCollection<ErasedUpperBound(T)>..Collection<out ErasedUpperBound(T)?>)
// notation: (Mutable)Collection<(raw) ErasedUpperBound(T)>!
Raw(A) = (A..A?) // A has no generic parameter
// notation: A(raw)!
```
`ErasedUpperBound` defined as follows:
```
ErasedUpperBound(T : G<t>) = G<*> // UB(T) is a type G<t> with arguments
ErasedUpperBound(T : A) = A // UB(T) is a type A without arguments
ErasedUpperBound(T : F) = ErasedUpperBound(F) // UB(T) is another type parameter F
```
and `UB(T)` means first upper bound with notation `T : UB(T)`.
NOTE: On Java code with errors later definition may recursively depend on the same type parameter,
that should be handled properly, e.g. by loading such ErasedUpperBound as Error type
Examples:
```
Raw(java.util.concurrent.Future) = (Future<Any!>..Future<out Any!>?) // notation: Future<(raw) Any!>!
class A<T extends CharSequence> {}
Raw(A) = (A<CharSequence!>..A<out CharSequence>?) // notation: A<(raw) CharSequence!>!
Raw(java.lang.Enum) = (Enum<Enum<*>!>..Enum<out Enum<*>!>?) // notation: Enum<(raw) Enum<*>!>!
```
Also raw types have special types of contained members, each of them is replaced with it's JVM erasure representation:
```
Erase(T) = Erase(UpperBound(T)) // T is a type variable
Erase(Array<T>) = Array<Erase(T)>
Erase(G<T>) = Raw(G)
Erase(A) = Raw(A) // `A` is a type constructor without parameters
// NOTE: The latter rule needed for proper erasure inside member scope of A
// E.g. if A has property with type `Foo<String>``
// then it becomes `Foo<(raw) Any!>` inside Erase(A)
```
## Unsafe covariant conversions
In case of platform collections their upper bound contains covariant parameter, which means they may behave covariantly even it doesn't meant to do so.
Example:
```java
class JavaClass {
void addObject(List<Object> x) {
x.add(new Object());
}
}
```
```kotlin
val x: MutableList<String> = arrayListOf()
JavaClass.addObject(x) // Ok
x[0].length() // ClassCastException
```
This happens because `MutableList<String>` <: `List<String>` <: `List<Any>` and by subtyping rule for flexible types `MutableList<String>` <: `(Mutable)Collection<Any!>!` follows.
While it's legal from point of view of type system, in most cases such conversion is unintended and must be prohibited when being made implicitly.
So implicit covariant conversion by i-th argument from type `source` to `target` is prohibited when:
- `target` is flexible type with invariant i-th *parameter* of lower bound (when same parameter in upper bound may be covariant)
- i-th *argument* of `target`'s lower bound is invariant (which means it declared as invariant in Java)
- type of i-th argument of `source` is not *equal* to same argument in `target`'s lower bound.
NOTE: Such conversion still may be done explicitly, with covariant upcast. E.g. for upper case:
```
JavaClass.addObject(x as List<Any>) // No unchecked cast warning
```
## Overriding
When overriding a method from a Java class, one can not use flexible type, only replace them with denotable Kotlin types:
```java
class Foo {
List<String> list(String s);
}
```
```kotlin
class Bar : Foo() {
override fun list(s: String): List<String>
// or
override fun list(s: String?): List<String?>?
// or
override fun list(s: String?): List<String>?
// or
override fun list(s: String): MutableList<String?>
// or
// any other combination of nullability and mutability
}
```
## Translation to Java byte codes
Goal: blow early when a null is assigned to a non-null holder.
* Assignment/method call
If there's an expected type and the upper bound is not its subtype, an assertion should be emitted.
Examples:
```kotlin
val x: String = javaStringMethod() // assert that value is not null
val y: MutableList<Foo> = javaListMethod() // assert that value "is MutableList" returns true
val arr: Array<Bar> = javaArrayMethod() // assert value "is Bar[]"
```
* Increment, assignment operations (+= etc)
`a++` stands for `a = a.inc()`, so
- check a to satisfy the `a.inc()` conditions for receiver
- check `a.inc()` result for assignability to `a`
## Assertion Generation
Constructs in question: anything that provides an expected type, i.e.
- assignments
- parameter default values
- delegation by: supertypes and properties
- dereferencing: x.foo
- all kinds of calls (foo, foo(), x[], x foo y, x + y, x++, x += 3, for loop, multi-declarations, invoke-convention, ...)
- explicit expected type (foo: Bar)
- for booleans: if (foo), foo || bar, foo && bar (!foo is a call)
- argument of throw
## Warnings on nullability misuse
A type loaded from Java is said to *bear* a `@Nullable`/`@NotNull` annotation when
- it's a return type a method so annotated;
- it's a type of a field or a parameter so annotated;
- it's a so annotated type (Java 8 and later).
A value is `@Nullable`/`@NotNull` when its type bears such an annotation.
Inside this section, a value is *nullable*/*not-null* when
- it's `@Nullable`/`@NotNull`, or
- it's type in Kotlin when refined with data flow info is nullable/not-null.
The compiler issues warnings specific to `@Nullable`/`@NotNull` in the following situations:
- a `@Nullable` value is assigned to a not-null location (including passing parameters and receivers to functions/properties);
- a nullable value is assigned to a `@NotNull` location;
- a `@NotNull` value is dereferenced with a safe call (`?.`), used in `!!` or on the left-hand side of an elvis operator `?:`;
- a `@NotNull` value is compared with `null` through `==`, `!=`, `===` or `!==`
## More precise type information from annotations
Goals:
- Catch more errors related to nullability in case of Java interop
- Keep all class hierarchies consistent at all times (no hierarchy errors related to incorrect annotations)
- (!) If the code compiled with annotations, it should always compile without annotations (because external annotations may disappear)
This process never results in errors. On any mismatch, a bare platform signature is used (and a warning issued).
### Annotations recognized by the compiler
- `org.jetbrains.annotations.Nullable` - value may be null/accepts nulls
- `org.jetbrains.annotations.NotNull` - value can not be null/passing null leads to an exception
- `org.jetbrains.annotations.ReadOnly` - only non-mutating methods can be used on this collection/iterable/iterator
- `org.jetbrains.annotations.Mutable` - mutating methods can be used on this collection/iterable/iterator
See [appendix](#appendix) for more details
### Enhancing signatures with annotated declarations
NOTE: the intention is that if the enhanced signature is not compatible with the overridden signatures from superclasses,
it is discarded, and a warning is issued. We also would like to discard only the mismatching parts of the signature, and thus keep as
much information as possible.
Example:
``` java
class Super {
void foo(@NotNull String p) {...}
}
class Sub extends Super {
@Override
void foo(@Nullable String p) {...} // Warning: Signature does not match the one in the superclass, discarded
}
```
#### @Nullable, @NotNull, @ReadOnly, @Mutable
What can be annotated:
- field: annotation applies to its type
- method: annotation applies to its return type
- parameter: annotation applies to its type
- type (in Java 8): annotation applies to this type
Consider a type `(L..U?)`. Nullability annotations enhance it in the following way:
- `@Nullable`: `(L?..U?)`
- `@NotNull`: `(L..U)`
Note that if upper and lower bound of a flexible type are the same, it is replaced by the bounds (e.g. `(T?..T?) => T?`)
Consider a collection type `(MC<T>..C<T>?)` (upper bound may be nullable or not). Mutability annotations enhance it in the following way:
- `@ReadOnly`: `(C<T>..C<T>?)`
- `@Mutable`: `(MC<T>..MC<T>?)`
Nullability annotations are applied after mutability annotations.
Examples:
| Java | Kotlin|
|------|-------|
| `Foo` | `Foo!` |
| `@Nullable Foo` | `Foo?` |
| `@NotNull Foo` | `Foo` |
| `List<T>` | `(Mutable)List<T!>!` |
| `@ReadOnly List<T>` | `List<T!>!` |
| `@Mutable List<T>` | `MutableList<T!>!` |
| `@NotNull @Mutable List<T>` | `MutableList<T!>` |
| `@Nullable @ReadOnly List<T>` | `List<T!>?` |
*NOTE*: array types are never flattened: `@NotNull Object[]` becomes `(Array<Any!>..Array<out Any!>)`.
### Propagating type information from superclasses
A signature is represented as a list of its parts:
- upper bounds of type parameters
- value parameter types
- return type
Enhancement rules (the result of their application is called a *propagated signature*) for each part:
- collect annotations from all supertypes and the override in the subclass
- for parts other than return type (which may be covariantly overridden) if there are conflicts (`@Nullable` together with `@NotNull` or
`@ReadOnly` together with `@Mutable`), discard the respective annotations and issue appropriate warnings
- for return types (full if the type from override is `~~`-equivalent to all from supertypes, and only 0-index (see below) otherwise)):
- fist, take annotations from supertypes, and among them: if there's `@NotNull`, discard `@Nullable`, if there's `@Mutable` discard `@ReadOnly`
- then if in the subtype there's `@Nullable` and in the supertype there's `@NotNull`, discard the nullability annotations (analogously,
for mutability annotations)
- apply the annotations and check compatibility with all parts from supertypes, if there's any incompatibility, issue a warning and take
a platform type
> NOTE: Only flexible types are enhanced, because we want to avoid cases like this
``` java
void foo(@Nullable int x) {...}
```
this code is incorrect, but Java does not reject it, so if we see this as a Kotlin declaration
``` kotlin
fun foo(x: Int?)
```
we can't even call it properly (this, in theory, can be worked around by storing pure Java signatures alongside Kotlin ones).
Detecting annotations on parts from supertypes:
- consider all types have the form of `(L..U)`, where an inflexible type `T` is written `(T..T)`
- if `L` is nullable, say that `@Nullable` annotation is present
- if `U` is not-null, say that `@NotNull` is present
- if `L` is a read-only collection/iterable/iterator type, say that `@ReadOnly` is present
- if `U` is a mutable collection/iterable/iterator type, say that `@Mutable` is present
Examples:
``` java
interface A {
@NotNull
String foo(@NotNull String p);
}
interface B {
@Nullable
String foo(@Nullable String p);
}
interface C extends A, B {
// this is an override in Java, but would not be an override in Kotlin because of a conflict in parameter types: String vs String?
// Thus, the resulting descriptor is
// fun foo(p: String!): String
// return type is covariantly enhanced to not-null,
// a warning issued about the parameter
@Override
String foo(String p);
}
```
Other cases:
```
R foo(@NotNull P p) // super A
R foo(P p) // super B
R foo(P p) // subclass C
// Result:
fun foo(p: P): R! // parameter type propagated from A
```
```
R foo(@NotNull P p) // super A
R foo(P p) // super B
R foo(@Nullable P p) // subclass C
// Result:
fun foo(p: P!): R! // conflict on parameter between A and C
```
```
R foo(P p) // super A
R foo(P p) // super B
R foo(@NotNull P p) // subclass C
// Result:
fun foo(p: P): R! // parameter type specified in C, no conflict with superclasses
```
```
@NotNull
R foo(P p) // super A
R foo(P p) // super B
@Nullable
R foo(P p) // subclass C
// Result:
fun foo(p: P!): R! // conflict on return type: subtype wants a nullable, but not-null already promised
```
```
R foo(@NotNull @ReadOnly List<T> p) // super A
R foo(@Nullable @ReadOnly List<T> p) // subclass B
// Result:
fun foo(p: List<T>!): R! // conflict on nullability, no conflict on mutability
```
```
fun foo(MutableList<T> p): R // super A, written in Kotlin
@Nullable
R foo(List<T> p) // subclass B
// Result:
fun foo(MutableList<T> p): R! // parameter propagated from superclass (@Mutable, @NotNull), conflict on return type
```
*NOTE*: nullability warnings should still be reported in the Kotlin code in case of discarding the enhancing information due to conflicts.
**Propagation into generic arguments**. Since annotations have to be propagated to type arguments as well as the head type constructor,
the following procedure is used. First, every sub-tree of the type is assigned an index which is its zero-based position in the textual
representation of the type (`0` is root). Example: for `A<B, C<D, E>>`, indices go as follows: `0 - A<...>, 1 - B, 2 - C<D, E>, 3 - D, 4 - E`,
which corresponds to the left-to-right breadth-first walk of the tree representation of the type. For flexible types, both bounds are indexed
in the same way: `(A<B>..C<D>)` gives `0 - (A<B>..C<D>), 1 - B and D`.
Now, in the aforementioned procedure, annotations are collected and considered *at each index* for types other than return types. Return types
are co-variant, thus the overriding type may not match the overridden ones in its shape (e.g. we can have `Foo<Bar>` from super,
and `Baz<One, Two<Three>>` in the override, where `Baz` extends `Foo<Bar>`). This makes it impossible sometimes to propagate data into
covariant overrides, and in such cases we resort to only looking at the head constructor (index == 0). The safe cases are detected by checking
that the overriding type is `~~`-equivalent to all the overridden ones, which guarantees that their shapes match. For example, the overriding
type may be `(Mutable)List<Foo!>!` while the overridden ones may be `List<Foo>` and `List<Foo?>`, the equivalence holds and we can safely
assume the enhanced return type to be `List<Foo>` (subtype of both overridden ones).
Example:
- `Mutable(List)<A!>!`
- `Mutable(List)<A?>!`
- 0: `Mutable(List)<A>!`, `Mutable(List)<A?>!`
- 1: `A!`, `A!`, `A?`, `A?`
NOTE: if the set of descriptors overridden by the resulting enhanced signature differs from the set overridden by the platform signature,
the enhanced signature must be discarded and a warning issued.
Checklist:
- any platform signature should override any enhanced/propagated signature created for the same member or one of its overridden.
### Problematic cases of Java inheritance
**Case 1**. Fake override for conflicting signatures with the same erasure:
```
// Kotlin
trait A {
fun foo(x: String)
}
trait B {
fun foo(x: String?)
}
// Java
interface JC extends A, B {}
// Kotlin
class D : JC {
// how to override both foo(String) and foo(String?) in this class?
}
```
Possible solution: make fake overrides generated for Java class have platform signatures and perform normal enhancement for them
**Case 2**. Inheriting a property through a Java class
It may be overridden by a Java function, for example
**Case 3**. Inheriting an extension function/property through a Java class
Explicit override(s) may also interfere.
**Case 4**. Raw types interfering with override-compatibility of Java signatures with Kotlin ones
**Case 5**. Order of type parameters in Java methods matters only partly
The first parameter matters, others may come in any order.
See also: [KT-7496](https://youtrack.jetbrains.com/issue/KT-7496)
### Appendix
We can also support the following annotations out-of-the-box:
* [`android.support.annotation`](https://developer.android.com/reference/android/support/annotation/package-summary.html)
* [`android.support.annotation.Nullable`](https://developer.android.com/reference/android/support/annotation/Nullable.html)
* [`android.support.annotation.NonNull`](https://developer.android.com/reference/android/support/annotation/NonNull.html)
* From [FindBugs](http://findbugs.sourceforge.net/manual/annotations.html) and [`javax.annotation`](https://code.google.com/p/jsr-305/source/browse/trunk/ri/src/main/java/javax/annotation/)
* `*.annotations.CheckForNull`
* `*.NonNull`
* `*.Nullable`
* [`javax.validation.constraints`](http://docs.oracle.com/javaee/6/api/javax/validation/constraints/package-summary.html)
* `NotNull` and `NotNull.List`
* [Project Lombok](http://projectlombok.org/features/NonNull.html)
* [`org.eclipse.jdt.annotation`](https://wiki.eclipse.org/JDT_Core/Null_Analysis)
* [`org.checkerframework.checker.nullness`](https://checkerframework.org/manual/#nullness-checker)
* [`*.qual.Nullable`](https://checkerframework.org/api/org/checkerframework/checker/nullness/qual/Nullable.html)
* [`*.qual.NonNull`](https://checkerframework.org/api/org/checkerframework/checker/nullness/qual/NonNull.html)
* [`*.compatqual.NullableDecl`](https://checkerframework.org/api/org/checkerframework/checker/nullness/compatqual/NullableDecl.html)
* [`*.compatqual.NonNullDecl`](https://checkerframework.org/api/org/checkerframework/checker/nullness/compatqual/NonNullDecl.html)
|