2020-08-08 11:51:04 +03:00
|
|
|
# Abstract Syntax Tree Expression Representation and Operations (`kmath-ast`)
|
2020-06-15 11:02:13 +03:00
|
|
|
|
2020-06-21 16:23:50 +03:00
|
|
|
This subproject implements the following features:
|
|
|
|
|
|
|
|
- Expression Language and its parser.
|
2020-06-27 17:56:58 +03:00
|
|
|
- MST (Mathematical Syntax Tree) as expression language's syntax intermediate representation.
|
|
|
|
- Type-safe builder for MST.
|
2020-06-21 16:23:50 +03:00
|
|
|
- Evaluating expressions by traversing MST.
|
|
|
|
|
2020-06-27 18:18:58 +03:00
|
|
|
> #### Artifact:
|
2020-09-20 22:39:27 +03:00
|
|
|
> This module is distributed in the artifact `kscience.kmath:kmath-ast:0.1.4-dev-8`.
|
2020-06-27 18:18:58 +03:00
|
|
|
>
|
|
|
|
> **Gradle:**
|
|
|
|
>
|
|
|
|
> ```gradle
|
|
|
|
> repositories {
|
2020-09-20 22:39:27 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/mipt-npm/kscience' }
|
2020-06-27 18:18:58 +03:00
|
|
|
> maven { url 'https://dl.bintray.com/mipt-npm/dev' }
|
2020-07-03 16:21:41 +03:00
|
|
|
> maven { url https://dl.bintray.com/hotkeytlt/maven' }
|
2020-06-27 18:18:58 +03:00
|
|
|
> }
|
|
|
|
>
|
|
|
|
> dependencies {
|
2020-09-20 22:39:27 +03:00
|
|
|
> implementation 'kscience.kmath:kmath-ast:0.1.4-dev-8'
|
2020-06-27 18:18:58 +03:00
|
|
|
> }
|
|
|
|
> ```
|
|
|
|
> **Gradle Kotlin DSL:**
|
|
|
|
>
|
|
|
|
> ```kotlin
|
|
|
|
> repositories {
|
2020-09-20 22:39:27 +03:00
|
|
|
> maven("https://dl.bintray.com/mipt-npm/kscience")
|
2020-06-27 18:18:58 +03:00
|
|
|
> maven("https://dl.bintray.com/mipt-npm/dev")
|
2020-07-03 16:21:41 +03:00
|
|
|
> maven("https://dl.bintray.com/hotkeytlt/maven")
|
2020-06-27 18:18:58 +03:00
|
|
|
> }
|
|
|
|
>
|
|
|
|
> dependencies {
|
2020-09-20 22:39:27 +03:00
|
|
|
> implementation("kscience.kmath:kmath-ast:0.1.4-dev-8")
|
2020-06-27 18:18:58 +03:00
|
|
|
> }
|
|
|
|
> ```
|
|
|
|
>
|
|
|
|
|
2020-08-08 11:51:04 +03:00
|
|
|
## Dynamic Expression Code Generation with ObjectWeb ASM
|
2020-06-21 16:23:50 +03:00
|
|
|
|
|
|
|
`kmath-ast` JVM module supports runtime code generation to eliminate overhead of tree traversal. Code generator builds
|
|
|
|
a special implementation of `Expression<T>` with implemented `invoke` function.
|
|
|
|
|
|
|
|
For example, the following builder:
|
|
|
|
|
|
|
|
```kotlin
|
2020-08-08 11:51:04 +03:00
|
|
|
RealField.mstInField { symbol("x") + 2 }.compile()
|
2020-06-21 16:23:50 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
… leads to generation of bytecode, which can be decompiled to the following Java class:
|
|
|
|
|
|
|
|
```java
|
2020-09-20 22:39:27 +03:00
|
|
|
package kscience.kmath.asm.generated;
|
2020-06-21 16:23:50 +03:00
|
|
|
|
|
|
|
import java.util.Map;
|
2020-09-20 22:39:27 +03:00
|
|
|
import kscience.kmath.asm.internal.MapIntrinsics;
|
|
|
|
import kscience.kmath.expressions.Expression;
|
|
|
|
import kscience.kmath.operations.RealField;
|
2020-06-21 16:23:50 +03:00
|
|
|
|
2020-06-25 06:07:36 +03:00
|
|
|
public final class AsmCompiledExpression_1073786867_0 implements Expression<Double> {
|
|
|
|
private final RealField algebra;
|
|
|
|
|
2020-06-27 22:08:26 +03:00
|
|
|
public final Double invoke(Map<String, ? extends Double> arguments) {
|
|
|
|
return (Double)this.algebra.add(((Double)MapIntrinsics.getOrFail(arguments, "x")).doubleValue(), 2.0D);
|
2020-06-21 16:23:50 +03:00
|
|
|
}
|
|
|
|
|
2020-06-27 22:08:26 +03:00
|
|
|
public AsmCompiledExpression_1073786867_0(RealField algebra) {
|
|
|
|
this.algebra = algebra;
|
2020-06-21 16:23:50 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-26 12:05:13 +03:00
|
|
|
|
2020-06-21 16:23:50 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Example Usage
|
|
|
|
|
2020-08-08 11:51:04 +03:00
|
|
|
This API extends MST and MstExpression, so you may optimize as both of them:
|
2020-06-21 16:23:50 +03:00
|
|
|
|
|
|
|
```kotlin
|
|
|
|
RealField.mstInField { symbol("x") + 2 }.compile()
|
2020-06-25 15:29:31 +03:00
|
|
|
RealField.expression("x+2".parseMath())
|
2020-06-21 16:23:50 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
### Known issues
|
|
|
|
|
|
|
|
- The same classes may be generated and loaded twice, so it is recommended to cache compiled expressions to avoid
|
|
|
|
class loading overhead.
|
|
|
|
- This API is not supported by non-dynamic JVM implementations (like TeaVM and GraalVM) because of using class loaders.
|
|
|
|
|
|
|
|
Contributed by [Iaroslav Postovalov](https://github.com/CommanderTvis).
|