forked from i21017/JavaCompilerCore
Compare commits
68 Commits
feat/unify
...
133ca1fe41
Author | SHA1 | Date | |
---|---|---|---|
|
133ca1fe41 | ||
|
f9cf6fe722 | ||
|
c0d8dc4692 | ||
|
84f5f05672 | ||
|
588036ea46 | ||
|
70b28bbfb0 | ||
|
701962b0e7 | ||
|
e91a9370df | ||
|
d71e67cfdd | ||
|
c2c2d6f445 | ||
|
7296e3de44 | ||
|
c1aebaf1f5 | ||
|
2871586c71 | ||
|
fa1f3a0507 | ||
|
f66edd4c4b | ||
|
598fe8ebe9 | ||
|
41d97dfa80 | ||
|
0f18cedf90 | ||
f43d1f4f4f | |||
2a44773403 | |||
|
a6ca31d509 | ||
|
b13f2b357b | ||
|
45fa0ff0b9 | ||
|
c292ff2d9e | ||
|
c14dd6e97c | ||
|
8f8ee9a385 | ||
|
3863968a6e | ||
|
03c432455d | ||
|
441e50a70d | ||
|
0807885465 | ||
|
8abe7f6c28 | ||
|
2a92a0e48e | ||
|
b3639a3d08 | ||
|
28969e7931 | ||
|
b806fa88ff | ||
|
301e9143ec | ||
|
bb4eaaccc5 | ||
|
4dbae46765 | ||
|
c64071f235 | ||
|
94dbf1f7ad | ||
|
890f64c813 | ||
|
5aadb7545e | ||
|
0c0ac61a02 | ||
|
46192e3fd3 | ||
|
61653c5d88 | ||
|
3cd608a4ac | ||
|
deec0ae706 | ||
|
d6a79ea3a1 | ||
|
1f909f13ee | ||
|
be6f4bd578 | ||
|
478efd5649 | ||
|
c73e57cf2b | ||
|
ce29f4bcf1 | ||
|
42821f3215 | ||
|
f68afc88a6 | ||
|
82061474b2 | ||
|
d849bc127f | ||
|
6815d8fc0a | ||
|
317f8b1aad | ||
|
79335449d0 | ||
|
14606a846e | ||
2b67230a15 | |||
|
29b05b56cc | ||
|
08b9fc0ea3 | ||
|
070dd16999 | ||
|
9d7e46925d | ||
|
d780d322f0 | ||
|
867f3d39e8 |
@@ -15,7 +15,7 @@ jobs:
|
|||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: '24'
|
java-version: '22'
|
||||||
cache: 'maven'
|
cache: 'maven'
|
||||||
- name: Compile project
|
- name: Compile project
|
||||||
run: |
|
run: |
|
||||||
|
3
Makefile
Normal file
3
Makefile
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
NoOptParallel:
|
||||||
|
mvn -DskipTests package
|
||||||
|
cp target/JavaTXcompiler-0.1-jar-with-dependencies.jar target/JavaTXcompiler-0.1-jar-with-dependencies_NoOptParallel.jar
|
@@ -1,40 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
|
|
||||||
REPO="https://gitea.hb.dhbw-stuttgart.de/f.holzwarth/JavaCompilerCore.git"
|
|
||||||
TDIR="./testBuild"
|
|
||||||
|
|
||||||
rm -rf "$TDIR" 2>/dev/null
|
|
||||||
mkdir $TDIR
|
|
||||||
|
|
||||||
cd $TDIR
|
|
||||||
git clone $REPO .
|
|
||||||
git checkout feat/unify-server
|
|
||||||
# git checkout 93e1a8787cd94c73f4538f6a348f58613893a584
|
|
||||||
# git checkout dad468368b86bdd5a3d3b2754b17617cee0a9107 # 1:55
|
|
||||||
# git checkout a0c11b60e8c9d7addcbe0d3a09c9ce2924e9d5c0 # 2:25
|
|
||||||
# git checkout 4cddf73e6d6c9116d3e1705c4b27a8e7f18d80c3 # 2:27
|
|
||||||
# git checkout 6c2d97b7703d954e4a42eef3ec374bcf313af75c # 2:13
|
|
||||||
# git checkout f722a00fbb6e69423d48a890e4a6283471763e64 # 1:35
|
|
||||||
# git checkout f0a4a51ce65639ce9a9470ff0fdb538fdf9c02cc # 2:19
|
|
||||||
# git checkout 1391206dfe59263cdb22f93371cfd1dd5465d97f # 1:29
|
|
||||||
|
|
||||||
date "+%Y.%m.%d %H:%M:%S"
|
|
||||||
# sed -i -e 's/source>21/source>23/g' pom.xml
|
|
||||||
# sed -i -e 's/target>21/target>23/g' pom.xml
|
|
||||||
|
|
||||||
|
|
||||||
mvn clean compile -DskipTests package
|
|
||||||
time java -jar target/JavaTXcompiler-0.1-jar-with-dependencies.jar resources/bytecode/javFiles/Matrix.jav;
|
|
||||||
|
|
||||||
# mvn clean compile test
|
|
||||||
|
|
||||||
|
|
||||||
echo -e "\nCleanup... "
|
|
||||||
cd -
|
|
||||||
rm -rf "$TDIR" 2>/dev/null
|
|
||||||
|
|
||||||
echo -e "\nFinished "
|
|
||||||
date "+%Y.%m.%d %H:%M:%S"
|
|
||||||
echo -e "\n "
|
|
||||||
|
|
35
pom.xml
35
pom.xml
@@ -12,38 +12,39 @@ http://maven.apache.org/maven-v4_0_0.xsd">
|
|||||||
<url>http://maven.apache.org</url>
|
<url>http://maven.apache.org</url>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.junit.jupiter</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit-jupiter-api</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>5.13.2</version>
|
<version>4.13.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- https://mvnrepository.com/artifact/org.antlr/antlr4 -->
|
<!-- https://mvnrepository.com/artifact/org.antlr/antlr4 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.antlr</groupId>
|
<groupId>org.antlr</groupId>
|
||||||
<artifactId>antlr4</artifactId>
|
<artifactId>antlr4</artifactId>
|
||||||
<version>4.13.2</version>
|
<version>4.11.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-io</groupId>
|
<groupId>commons-io</groupId>
|
||||||
<artifactId>commons-io</artifactId>
|
<artifactId>commons-io</artifactId>
|
||||||
<version>2.19.0</version>
|
<version>2.16.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.github.classgraph</groupId>
|
<groupId>io.github.classgraph</groupId>
|
||||||
<artifactId>classgraph</artifactId>
|
<artifactId>classgraph</artifactId>
|
||||||
<version>4.8.180</version>
|
<version>4.8.172</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.guava</groupId>
|
<groupId>com.google.guava</groupId>
|
||||||
<artifactId>guava</artifactId>
|
<artifactId>guava</artifactId>
|
||||||
<version>33.4.8-jre</version>
|
<version>33.2.0-jre</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
|
<!-- https://mvnrepository.com/artifact/org.ow2.asm/asm -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.ow2.asm</groupId>
|
<groupId>org.ow2.asm</groupId>
|
||||||
<artifactId>asm</artifactId>
|
<artifactId>asm</artifactId>
|
||||||
<version>9.8</version>
|
<version>9.5</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.java-websocket</groupId>
|
<groupId>org.java-websocket</groupId>
|
||||||
<artifactId>Java-WebSocket</artifactId>
|
<artifactId>Java-WebSocket</artifactId>
|
||||||
@@ -59,11 +60,7 @@ http://maven.apache.org/maven-v4_0_0.xsd">
|
|||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>2.17.2</version>
|
<version>2.17.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.diogonunes</groupId>
|
|
||||||
<artifactId>JColor</artifactId>
|
|
||||||
<version>5.5.1</version>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@@ -71,17 +68,17 @@ http://maven.apache.org/maven-v4_0_0.xsd">
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.14.0</version>
|
<version>3.11.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<compilerArgs>--enable-preview</compilerArgs>
|
<compilerArgs>--enable-preview</compilerArgs>
|
||||||
<source>24</source>
|
<source>23</source>
|
||||||
<target>24</target>
|
<target>23</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>3.5.3</version>
|
<version>3.1.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||||
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
|
<reportsDirectory>${project.build.directory}/test-reports</reportsDirectory>
|
||||||
@@ -97,7 +94,7 @@ http://maven.apache.org/maven-v4_0_0.xsd">
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.antlr</groupId>
|
<groupId>org.antlr</groupId>
|
||||||
<artifactId>antlr4-maven-plugin</artifactId>
|
<artifactId>antlr4-maven-plugin</artifactId>
|
||||||
<version>4.13.2</version>
|
<version>4.11.1</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>antlr</id>
|
<id>antlr</id>
|
||||||
@@ -110,7 +107,7 @@ http://maven.apache.org/maven-v4_0_0.xsd">
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<version>3.4.2</version>
|
<version>3.3.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<archive>
|
<archive>
|
||||||
<manifest>
|
<manifest>
|
||||||
|
@@ -6,7 +6,7 @@ import java.util.stream.Stream;
|
|||||||
|
|
||||||
public class Bug325 {
|
public class Bug325 {
|
||||||
public main() {
|
public main() {
|
||||||
var list = new ArrayList<>(List.of(1,2,3,4,5));
|
List<Integer> list = new ArrayList<>(List.of(1,2,3,4,5));
|
||||||
var func = x -> x*2;
|
var func = x -> x*2;
|
||||||
return list.stream().map(func).toList();
|
return list.stream().map(func).toList();
|
||||||
}
|
}
|
||||||
|
@@ -1,22 +0,0 @@
|
|||||||
import java.lang.String;
|
|
||||||
|
|
||||||
|
|
||||||
public class Bug363 {
|
|
||||||
uncurry (f){
|
|
||||||
return x -> f.apply(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
uncurry (f){
|
|
||||||
return (x, y) -> f.apply(x).apply(y);
|
|
||||||
}
|
|
||||||
|
|
||||||
uncurry (f){
|
|
||||||
return (x, y, z) -> f.apply(x).apply(y).apply(z);
|
|
||||||
}
|
|
||||||
|
|
||||||
public test(){
|
|
||||||
var f = x -> y -> z -> x + y + z;
|
|
||||||
var g = uncurry(f);
|
|
||||||
return g.apply("A", "B", "C"); // Outputs: 6
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,8 +0,0 @@
|
|||||||
import java.lang.String;
|
|
||||||
|
|
||||||
public class Bug364{
|
|
||||||
public main(){
|
|
||||||
var f = x -> y -> z -> x + y + z;
|
|
||||||
return f.apply("A").apply("B").apply("C");
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,21 +0,0 @@
|
|||||||
import java.lang.String;
|
|
||||||
import java.lang.Object;
|
|
||||||
|
|
||||||
public class Bug365{
|
|
||||||
swap(f){
|
|
||||||
return x -> y -> f.apply(y).apply(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
swap(Fun1$$<String, Fun1$$<String, Fun1$$<String, Object>>> f){
|
|
||||||
return x -> y -> z -> f.apply(z).apply(y).apply(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ex1() {
|
|
||||||
var func = x -> y -> z -> x + y + z;
|
|
||||||
return func.apply("A").apply("B").apply("C");
|
|
||||||
}
|
|
||||||
public ex2() {
|
|
||||||
var func = x -> y -> z -> x + y + z;
|
|
||||||
return swap(func).apply("A").apply("B").apply("C");
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,12 +0,0 @@
|
|||||||
import java.lang.Integer;
|
|
||||||
|
|
||||||
public class Bug366 {
|
|
||||||
public static lambda() {
|
|
||||||
return (a, b) -> a + b;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static test() {
|
|
||||||
var l = lambda();
|
|
||||||
return l.apply(10, 20);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,10 +0,0 @@
|
|||||||
import java.lang.Boolean;
|
|
||||||
|
|
||||||
public class Bug371 {
|
|
||||||
static m1(x, y) { return x || y; }
|
|
||||||
static m2(x, y) { return x && y; }
|
|
||||||
|
|
||||||
public static test() {
|
|
||||||
return m2(m1(true, false), true);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,17 +0,0 @@
|
|||||||
import java.lang.Boolean;
|
|
||||||
import java.lang.Integer;
|
|
||||||
import java.lang.System;
|
|
||||||
import java.io.PrintStream;
|
|
||||||
import java.lang.Character;
|
|
||||||
|
|
||||||
public class Bug373 {
|
|
||||||
public static main() {
|
|
||||||
System.out.println(true);
|
|
||||||
System.out.println(false);
|
|
||||||
System.out.println(1);
|
|
||||||
System.out.println(1l);
|
|
||||||
System.out.println(1.0);
|
|
||||||
System.out.println(1.0f);
|
|
||||||
System.out.println('a');
|
|
||||||
}
|
|
||||||
}
|
|
16
resources/bytecode/javFiles/BugXXX.jav
Normal file
16
resources/bytecode/javFiles/BugXXX.jav
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.lang.String;
|
||||||
|
import java.util.stream.Stream;
|
||||||
|
import java.util.function.Function;
|
||||||
|
import java.util.function.Predicate;
|
||||||
|
import java.lang.Integer;
|
||||||
|
|
||||||
|
class BugXXX {
|
||||||
|
public main() {
|
||||||
|
List<Integer> i = new ArrayList<>(List.of(1,2,3,4,5,6,7,8,9,10));
|
||||||
|
Optional<Integer> tmp = i.stream().filter(x -> x == 5).map(x -> x*2).findFirst();
|
||||||
|
return tmp;
|
||||||
|
}
|
||||||
|
}
|
@@ -1,14 +0,0 @@
|
|||||||
import java.lang.Object;
|
|
||||||
import java.lang.System;
|
|
||||||
import java.lang.Iterable;
|
|
||||||
import java.io.PrintStream;
|
|
||||||
import java.util.List;
|
|
||||||
import java.lang.String;
|
|
||||||
|
|
||||||
class Main {
|
|
||||||
static main(args) {
|
|
||||||
for (var arg : args) {
|
|
||||||
System.out.println(arg);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,4 +1,4 @@
|
|||||||
import java.util.Vector;
|
//import java.util.Vector;
|
||||||
import java.lang.Integer;
|
import java.lang.Integer;
|
||||||
import java.lang.Float;
|
import java.lang.Float;
|
||||||
//import java.lang.Byte;
|
//import java.lang.Byte;
|
||||||
@@ -20,7 +20,6 @@ public class Scalar extends Vector<Integer> {
|
|||||||
var i = 0;
|
var i = 0;
|
||||||
while(i < size()) {
|
while(i < size()) {
|
||||||
ret = ret + this.elementAt(i) * v.elementAt(i);
|
ret = ret + this.elementAt(i) * v.elementAt(i);
|
||||||
i = i+1;
|
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
2
server-tests/.gitignore
vendored
Normal file
2
server-tests/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
out
|
||||||
|
outputs
|
13
server-tests/Lambda.jav
Normal file
13
server-tests/Lambda.jav
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
|
||||||
|
class Apply { }
|
||||||
|
|
||||||
|
public class Lambda {
|
||||||
|
|
||||||
|
m () {
|
||||||
|
var lam1 = (x) -> {
|
||||||
|
return x;
|
||||||
|
};
|
||||||
|
return lam1.apply(new Apply());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
28
server-tests/Matrix.jav
Normal file
28
server-tests/Matrix.jav
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import java.util.Vector;
|
||||||
|
import java.lang.Integer;
|
||||||
|
|
||||||
|
class Matrix extends Vector<Vector<Integer>> {
|
||||||
|
Integer mul1(Integer x, Integer y) { return x;}
|
||||||
|
Integer add1(Integer x, Integer y) { return x;}
|
||||||
|
mul(m) {
|
||||||
|
var ret = new Matrix();
|
||||||
|
var i = 0;
|
||||||
|
while(i < size()) {
|
||||||
|
var v1 = this.elementAt(i);
|
||||||
|
var v2 = new Vector<Integer>();
|
||||||
|
var j = 0;
|
||||||
|
while(j < v1.size()) {
|
||||||
|
var erg = 0;
|
||||||
|
var k = 0;
|
||||||
|
while(k < v1.size()) {
|
||||||
|
erg = erg + v1.elementAt(k) * m.elementAt(k).elementAt(j);
|
||||||
|
//erg = add1(erg, mul1(v1.elementAt(k),
|
||||||
|
// m.elementAt(k).elementAt(j)));
|
||||||
|
k++; }
|
||||||
|
v2.addElement(new Integer(erg));
|
||||||
|
j++; }
|
||||||
|
ret.addElement(v2);
|
||||||
|
i++; }
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
25
server-tests/SomeList.jav
Normal file
25
server-tests/SomeList.jav
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import java.util.Vector;
|
||||||
|
import java.lang.Integer;
|
||||||
|
|
||||||
|
class SomeEvenMoreAbstractList<A, B> extends Vector<A> {
|
||||||
|
}
|
||||||
|
|
||||||
|
class SomeAbstractList<A, B> extends SomeEvenMoreAbstractList<A, B> {
|
||||||
|
}
|
||||||
|
|
||||||
|
class SomeList extends SomeAbstractList<Integer, Integer> {
|
||||||
|
|
||||||
|
mul(otherList) {
|
||||||
|
var result = new SomeList();
|
||||||
|
|
||||||
|
var i = 0;
|
||||||
|
while (i < 4) {
|
||||||
|
i++;
|
||||||
|
var a = this.elementAt(i);
|
||||||
|
var b = otherList.elementAt(i);
|
||||||
|
result.addElement(a * b);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
21
server-tests/_runClient.sh
Executable file
21
server-tests/_runClient.sh
Executable file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# build the compiler if -c is set
|
||||||
|
if [[ "${@,,}" == *"-c"* ]]; then
|
||||||
|
(cd .. && make || exit)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# a very small and short running example
|
||||||
|
# JAV_FILE="Lambda.jav"
|
||||||
|
|
||||||
|
# a medium and average running example
|
||||||
|
JAV_FILE="SomeList.jav"
|
||||||
|
|
||||||
|
# a very large and long running example
|
||||||
|
# JAV_FILE="Matrix.jav"
|
||||||
|
|
||||||
|
|
||||||
|
# remove old generated files and run the compiler
|
||||||
|
rm -rf ./out/client
|
||||||
|
mkdir -p ./out/client \
|
||||||
|
&& java -jar ../target/JavaTXcompiler-0.1-jar-with-dependencies.jar -d ./out/client $JAV_FILE
|
12
server-tests/_runServer.sh
Executable file
12
server-tests/_runServer.sh
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# build the compiler if -c is set
|
||||||
|
if [[ "${@,,}" == *"-c"* ]]; then
|
||||||
|
(cd .. && make || exit)
|
||||||
|
fi
|
||||||
|
|
||||||
|
# remove old generated files
|
||||||
|
rm -rf ./out/server
|
||||||
|
|
||||||
|
# run the server
|
||||||
|
mkdir -p ./out/server && java -jar ../target/JavaTXcompiler-0.1-jar-with-dependencies.jar -d ./out/server -server 5000
|
@@ -8,21 +8,17 @@ import de.dhbwstuttgart.target.generate.ASTToTargetAST;
|
|||||||
import de.dhbwstuttgart.target.tree.*;
|
import de.dhbwstuttgart.target.tree.*;
|
||||||
import de.dhbwstuttgart.target.tree.expression.*;
|
import de.dhbwstuttgart.target.tree.expression.*;
|
||||||
import de.dhbwstuttgart.target.tree.type.*;
|
import de.dhbwstuttgart.target.tree.type.*;
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import org.objectweb.asm.*;
|
import org.objectweb.asm.*;
|
||||||
|
|
||||||
import java.lang.invoke.*;
|
import java.lang.invoke.*;
|
||||||
import java.lang.reflect.Modifier;
|
import java.lang.reflect.Modifier;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
import static org.objectweb.asm.Opcodes.*;
|
|
||||||
import static de.dhbwstuttgart.target.tree.expression.TargetBinaryOp.*;
|
import static de.dhbwstuttgart.target.tree.expression.TargetBinaryOp.*;
|
||||||
import static de.dhbwstuttgart.target.tree.expression.TargetLiteral.*;
|
import static de.dhbwstuttgart.target.tree.expression.TargetLiteral.*;
|
||||||
|
import static org.objectweb.asm.Opcodes.*;
|
||||||
|
|
||||||
public class Codegen {
|
public class Codegen {
|
||||||
public static Logger logger = new Logger("codegen");
|
|
||||||
|
|
||||||
private final TargetStructure clazz;
|
private final TargetStructure clazz;
|
||||||
private final ClassWriter cw;
|
private final ClassWriter cw;
|
||||||
public final String className;
|
public final String className;
|
||||||
@@ -88,16 +84,14 @@ public class Codegen {
|
|||||||
int localCounter;
|
int localCounter;
|
||||||
MethodVisitor mv;
|
MethodVisitor mv;
|
||||||
TargetType returnType;
|
TargetType returnType;
|
||||||
boolean isStatic = false;
|
|
||||||
|
|
||||||
Stack<BreakEnv> breakStack = new Stack<>();
|
Stack<BreakEnv> breakStack = new Stack<>();
|
||||||
Stack<Integer> switchResultValue = new Stack<>();
|
Stack<Integer> switchResultValue = new Stack<>();
|
||||||
|
|
||||||
State(TargetType returnType, MethodVisitor mv, int localCounter, boolean isStatic) {
|
State(TargetType returnType, MethodVisitor mv, int localCounter) {
|
||||||
this.returnType = returnType;
|
this.returnType = returnType;
|
||||||
this.mv = mv;
|
this.mv = mv;
|
||||||
this.localCounter = localCounter;
|
this.localCounter = localCounter;
|
||||||
this.isStatic = isStatic;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void enterScope() {
|
void enterScope() {
|
||||||
@@ -235,9 +229,9 @@ public class Codegen {
|
|||||||
if (source.equals(dest))
|
if (source.equals(dest))
|
||||||
return;
|
return;
|
||||||
if (source.equals(TargetType.Long)) {
|
if (source.equals(TargetType.Long)) {
|
||||||
if (dest.equals(TargetType.Integer))
|
if (dest.equals(TargetType.Integer)) {
|
||||||
mv.visitInsn(L2I);
|
mv.visitInsn(L2I);
|
||||||
else if (dest.equals(TargetType.Float))
|
} else if (dest.equals(TargetType.Float))
|
||||||
mv.visitInsn(L2F);
|
mv.visitInsn(L2F);
|
||||||
else if (dest.equals(TargetType.Double))
|
else if (dest.equals(TargetType.Double))
|
||||||
mv.visitInsn(L2D);
|
mv.visitInsn(L2D);
|
||||||
@@ -280,8 +274,6 @@ public class Codegen {
|
|||||||
mv.visitInsn(I2F);
|
mv.visitInsn(I2F);
|
||||||
else if (dest.equals(TargetType.Double))
|
else if (dest.equals(TargetType.Double))
|
||||||
mv.visitInsn(I2D);
|
mv.visitInsn(I2D);
|
||||||
} else if (source.equals(TargetType.Boolean)) {
|
|
||||||
unboxPrimitive(state, dest);
|
|
||||||
} else if (isFunctionalInterface(source) && isFunctionalInterface(dest) &&
|
} else if (isFunctionalInterface(source) && isFunctionalInterface(dest) &&
|
||||||
!(source instanceof TargetFunNType && dest instanceof TargetFunNType)) {
|
!(source instanceof TargetFunNType && dest instanceof TargetFunNType)) {
|
||||||
boxFunctionalInterface(state, source, dest);
|
boxFunctionalInterface(state, source, dest);
|
||||||
@@ -765,16 +757,6 @@ public class Codegen {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static TargetType removeGenerics(TargetType param) {
|
|
||||||
return switch (param) {
|
|
||||||
case null -> null;
|
|
||||||
case TargetFunNType funNType -> new TargetFunNType(funNType.name(), funNType.funNParams(), List.of(), funNType.returnArguments());
|
|
||||||
case TargetRefType refType -> new TargetRefType(refType.name());
|
|
||||||
case TargetGenericType targetGenericType -> TargetType.Object;
|
|
||||||
default -> param;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
private void generateLambdaExpression(State state, TargetLambdaExpression lambda) {
|
private void generateLambdaExpression(State state, TargetLambdaExpression lambda) {
|
||||||
var mv = state.mv;
|
var mv = state.mv;
|
||||||
|
|
||||||
@@ -786,8 +768,7 @@ public class Codegen {
|
|||||||
|
|
||||||
var parameters = new ArrayList<>(lambda.captures());
|
var parameters = new ArrayList<>(lambda.captures());
|
||||||
parameters.addAll(signature.parameters());
|
parameters.addAll(signature.parameters());
|
||||||
parameters = parameters.stream().map(param -> param.withType(removeGenerics(param.pattern().type()))).collect(Collectors.toCollection(ArrayList::new));
|
var implSignature = new TargetMethod.Signature(Set.of(), parameters, lambda.signature().returnType());
|
||||||
var implSignature = new TargetMethod.Signature(Set.of(), parameters, removeGenerics(lambda.signature().returnType()));
|
|
||||||
|
|
||||||
TargetMethod impl;
|
TargetMethod impl;
|
||||||
if (lambdas.containsKey(lambda)) {
|
if (lambdas.containsKey(lambda)) {
|
||||||
@@ -795,22 +776,21 @@ public class Codegen {
|
|||||||
} else {
|
} else {
|
||||||
var name = "lambda$" + lambdaCounter++;
|
var name = "lambda$" + lambdaCounter++;
|
||||||
|
|
||||||
impl = new TargetMethod(state.isStatic ? ACC_STATIC : 0, name, lambda.block(), implSignature, null);
|
impl = new TargetMethod(0, name, lambda.block(), implSignature, null);
|
||||||
generateMethod(impl, state);
|
generateMethod(impl);
|
||||||
lambdas.put(lambda, impl);
|
lambdas.put(lambda, impl);
|
||||||
}
|
}
|
||||||
|
|
||||||
var mt = MethodType.methodType(CallSite.class, MethodHandles.Lookup.class, String.class, MethodType.class, MethodType.class, MethodHandle.class, MethodType.class);
|
var mt = MethodType.methodType(CallSite.class, MethodHandles.Lookup.class, String.class, MethodType.class, MethodType.class, MethodHandle.class, MethodType.class);
|
||||||
|
|
||||||
var bootstrap = new Handle(H_INVOKESTATIC, "java/lang/invoke/LambdaMetafactory", "metafactory", mt.toMethodDescriptorString(), false);
|
var bootstrap = new Handle(H_INVOKESTATIC, "java/lang/invoke/LambdaMetafactory", "metafactory", mt.toMethodDescriptorString(), false);
|
||||||
var handle = new Handle(state.isStatic ? H_INVOKESTATIC : H_INVOKEVIRTUAL, clazz.getName(), impl.name(), implSignature.getDescriptor(), false);
|
var handle = new Handle(H_INVOKEVIRTUAL, clazz.getName(), impl.name(), implSignature.getDescriptor(), false);
|
||||||
|
|
||||||
var params = new ArrayList<TargetType>();
|
var params = new ArrayList<TargetType>();
|
||||||
if(!state.isStatic) params.add(new TargetRefType(clazz.qualifiedName().getClassName()));
|
params.add(new TargetRefType(clazz.qualifiedName().getClassName()));
|
||||||
params.addAll(lambda.captures().stream().map(mp -> mp.pattern().type()).toList());
|
params.addAll(lambda.captures().stream().map(mp -> mp.pattern().type()).toList());
|
||||||
|
|
||||||
if (!state.isStatic)
|
mv.visitVarInsn(ALOAD, 0);
|
||||||
mv.visitVarInsn(ALOAD, 0);
|
|
||||||
for (var index = 0; index < lambda.captures().size(); index++) {
|
for (var index = 0; index < lambda.captures().size(); index++) {
|
||||||
var capture = lambda.captures().get(index);
|
var capture = lambda.captures().get(index);
|
||||||
var pattern = (TargetTypePattern) capture.pattern();
|
var pattern = (TargetTypePattern) capture.pattern();
|
||||||
@@ -1337,7 +1317,7 @@ public class Codegen {
|
|||||||
types.add(Type.getObjectType(guard.inner().type().getInternalName()));
|
types.add(Type.getObjectType(guard.inner().type().getInternalName()));
|
||||||
// TODO Same here we need to evaluate constant;
|
// TODO Same here we need to evaluate constant;
|
||||||
} else {
|
} else {
|
||||||
logger.info(label);
|
System.out.println(label);
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1538,7 +1518,7 @@ public class Codegen {
|
|||||||
MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_STATIC, "<clinit>", "()V", null, null);
|
MethodVisitor mv = cw.visitMethod(ACC_PUBLIC | ACC_STATIC, "<clinit>", "()V", null, null);
|
||||||
mv.visitCode();
|
mv.visitCode();
|
||||||
|
|
||||||
var state = new State(null, mv, 0, true);
|
var state = new State(null, mv, 0);
|
||||||
generate(state, constructor.block());
|
generate(state, constructor.block());
|
||||||
|
|
||||||
mv.visitInsn(RETURN);
|
mv.visitInsn(RETURN);
|
||||||
@@ -1552,7 +1532,7 @@ public class Codegen {
|
|||||||
mv.visitAttribute(new JavaTXSignatureAttribute(constructor.getTXSignature()));
|
mv.visitAttribute(new JavaTXSignatureAttribute(constructor.getTXSignature()));
|
||||||
|
|
||||||
mv.visitCode();
|
mv.visitCode();
|
||||||
var state = new State(null, mv, 1, false);
|
var state = new State(null, mv, 1);
|
||||||
for (var param : constructor.parameters()) {
|
for (var param : constructor.parameters()) {
|
||||||
var pattern = param.pattern();
|
var pattern = param.pattern();
|
||||||
if (pattern instanceof TargetTypePattern tp)
|
if (pattern instanceof TargetTypePattern tp)
|
||||||
@@ -1598,31 +1578,9 @@ public class Codegen {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void generateMethod(TargetMethod method) {
|
private void generateMethod(TargetMethod method) {
|
||||||
generateMethod(method, null);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void generateMainMethod() {
|
|
||||||
var mv = cw.visitMethod(ACC_PUBLIC | ACC_STATIC, "main", "([Ljava/lang/String;)V", null, null);
|
|
||||||
mv.visitCode();
|
|
||||||
mv.visitVarInsn(ALOAD, 0);
|
|
||||||
mv.visitMethodInsn(INVOKESTATIC, "java/util/List", "of", "([Ljava/lang/Object;)Ljava/util/List;", true);
|
|
||||||
mv.visitMethodInsn(INVOKESTATIC, className, "main", "(Ljava/util/List;)V", false);
|
|
||||||
mv.visitInsn(RETURN);
|
|
||||||
mv.visitMaxs(0, 0);
|
|
||||||
mv.visitEnd();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void generateMethod(TargetMethod method, State parent) {
|
|
||||||
var access = method.access();
|
var access = method.access();
|
||||||
|
|
||||||
var params = method.signature().parameters();
|
|
||||||
if (method.name().equals("main") && method.isStatic() && params.size() == 1 &&
|
|
||||||
params.getFirst().pattern().type().equals(new TargetRefType("java.util.List", List.of(new TargetRefType("java.lang.String"))))) {
|
|
||||||
|
|
||||||
generateMainMethod();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (method.block() == null)
|
if (method.block() == null)
|
||||||
access |= ACC_ABSTRACT;
|
access |= ACC_ABSTRACT;
|
||||||
if (clazz instanceof TargetInterface)
|
if (clazz instanceof TargetInterface)
|
||||||
@@ -1636,10 +1594,7 @@ public class Codegen {
|
|||||||
|
|
||||||
if (method.block() != null) {
|
if (method.block() != null) {
|
||||||
mv.visitCode();
|
mv.visitCode();
|
||||||
var state = new State(method.signature().returnType(), mv, method.isStatic() ? 0 : 1, method.isStatic());
|
var state = new State(method.signature().returnType(), mv, method.isStatic() ? 0 : 1);
|
||||||
if (parent != null) {
|
|
||||||
state.scope.parent = parent.scope;
|
|
||||||
}
|
|
||||||
var offset = 1;
|
var offset = 1;
|
||||||
for (var param : method.signature().parameters()) {
|
for (var param : method.signature().parameters()) {
|
||||||
state.createVariable(param.pattern().name(), param.pattern().type());
|
state.createVariable(param.pattern().name(), param.pattern().type());
|
||||||
@@ -1649,8 +1604,6 @@ public class Codegen {
|
|||||||
bindLocalVariables(state, cp, offset);
|
bindLocalVariables(state, cp, offset);
|
||||||
offset++;
|
offset++;
|
||||||
}
|
}
|
||||||
//if (parent != null) System.out.println("parent: " + parent.scope.locals.keySet());
|
|
||||||
//System.out.println(state.scope.locals.keySet());
|
|
||||||
generate(state, method.block());
|
generate(state, method.block());
|
||||||
if (method.signature().returnType() == null)
|
if (method.signature().returnType() == null)
|
||||||
mv.visitInsn(RETURN);
|
mv.visitInsn(RETURN);
|
||||||
@@ -1757,7 +1710,7 @@ public class Codegen {
|
|||||||
|
|
||||||
// Generate wrapper method
|
// Generate wrapper method
|
||||||
var mv = cw2.visitMethod(ACC_PUBLIC, toMethod.name, toDescriptor, null, null);
|
var mv = cw2.visitMethod(ACC_PUBLIC, toMethod.name, toDescriptor, null, null);
|
||||||
var state = new State(null, mv, 0, false);
|
var state = new State(null, mv, 0);
|
||||||
|
|
||||||
mv.visitVarInsn(ALOAD, 0);
|
mv.visitVarInsn(ALOAD, 0);
|
||||||
mv.visitFieldInsn(GETFIELD, className, "wrapped", pair.from.toDescriptor());
|
mv.visitFieldInsn(GETFIELD, className, "wrapped", pair.from.toDescriptor());
|
||||||
@@ -1789,7 +1742,7 @@ public class Codegen {
|
|||||||
converter.classLoader.findClass(className);
|
converter.classLoader.findClass(className);
|
||||||
} catch (ClassNotFoundException e) {
|
} catch (ClassNotFoundException e) {
|
||||||
try {
|
try {
|
||||||
converter.classLoader.loadClass(className, bytes);
|
converter.classLoader.loadClass(bytes);
|
||||||
} catch (LinkageError ignored) {}
|
} catch (LinkageError ignored) {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -39,10 +39,6 @@ public class FunNGenerator {
|
|||||||
public final List<TargetType> inParams;
|
public final List<TargetType> inParams;
|
||||||
public final List<TargetType> realParams;
|
public final List<TargetType> realParams;
|
||||||
|
|
||||||
public GenericParameters(TargetFunNType funNType) {
|
|
||||||
this(funNType.funNParams(), funNType.returnArguments());
|
|
||||||
}
|
|
||||||
|
|
||||||
public GenericParameters(List<TargetType> params, int numReturns) {
|
public GenericParameters(List<TargetType> params, int numReturns) {
|
||||||
this.realParams = params;
|
this.realParams = params;
|
||||||
this.inParams = flattenTypeParams(params);
|
this.inParams = flattenTypeParams(params);
|
||||||
@@ -124,7 +120,7 @@ public class FunNGenerator {
|
|||||||
superFunNMethodDescriptor.append(")V");
|
superFunNMethodDescriptor.append(")V");
|
||||||
}
|
}
|
||||||
|
|
||||||
Codegen.logger.info(superFunNMethodSignature);
|
System.out.println(superFunNMethodSignature);
|
||||||
|
|
||||||
ClassWriter classWriter = new ClassWriter(0);
|
ClassWriter classWriter = new ClassWriter(0);
|
||||||
MethodVisitor methodVisitor;
|
MethodVisitor methodVisitor;
|
||||||
|
@@ -1,81 +1,77 @@
|
|||||||
package de.dhbwstuttgart.core;
|
package de.dhbwstuttgart.core;
|
||||||
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.io.PrintStream;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public class ConsoleInterface {
|
public class ConsoleInterface {
|
||||||
|
private static final String directory = System.getProperty("user.dir");
|
||||||
|
|
||||||
/**
|
public static void main(String[] args) throws IOException, ClassNotFoundException {
|
||||||
* Leave the argument configurations here for the rest of the code to read
|
List<File> input = new ArrayList<>();
|
||||||
*/
|
List<File> classpath = new ArrayList<>();
|
||||||
public static Logger.LogLevel logLevel = Logger.LogLevel.ERROR;
|
String outputPath = null;
|
||||||
public static boolean writeLogFiles = false;
|
int runAsServerWithPort = -1;
|
||||||
public static Optional<String> unifyServerUrl = Optional.empty();
|
String unificationServer = null;
|
||||||
|
|
||||||
public static void main(String[] args) throws IOException, ClassNotFoundException {
|
Iterator<String> it = Arrays.asList(args).iterator();
|
||||||
List<File> input = new ArrayList<>();
|
if (args.length == 0) {
|
||||||
List<File> classpath = new ArrayList<>();
|
System.out.println("No input files given. Get help with --help");
|
||||||
String outputPath = null;
|
System.exit(1);
|
||||||
Iterator<String> it = Arrays.asList(args).iterator();
|
} else if (args.length == 1 && args[0].equals("--help")) {
|
||||||
Optional<Integer> serverPort = Optional.empty();
|
System.out.println("Usage: javatx [OPTION]... [FILE]...\n" +
|
||||||
|
"\t-cp\tSet Classpath\n" +
|
||||||
if (args.length == 0) {
|
"\t-d\tSet destination directory\n" +
|
||||||
System.out.println("No input files given. Get help with --help");
|
"\t-s\tRun the compiler in server mode and listen for incoming requests on the given port\n" +
|
||||||
System.exit(1);
|
"\t-us\tSet the address of a remote server for the unification process"
|
||||||
} else if (args.length == 1 && args[0].equals("--help")) {
|
);
|
||||||
System.out.println("Usage: javatx [OPTION]... [FILE]...\n" +
|
System.exit(1);
|
||||||
"\t-cp\tSet Classpath\n" +
|
}
|
||||||
"\t-d\tSet destination directory\n" +
|
while (it.hasNext()) {
|
||||||
"\t[--server-mode <port>]\n" +
|
String arg = it.next();
|
||||||
"\t[--unify-server <url>]\n" +
|
if (arg.equals("-d")) {
|
||||||
"\t[--write-logs]\n" +
|
outputPath = it.next();
|
||||||
"\t[-v|-vv-|-vvv]");
|
}
|
||||||
System.exit(1);
|
else if (arg.startsWith("-d")) {
|
||||||
}
|
outputPath = arg.substring(2);
|
||||||
while (it.hasNext()) {
|
}
|
||||||
String arg = it.next();
|
else if (arg.equals("-cp") || arg.equals("-classpath")) {
|
||||||
if (arg.equals("-d")) {
|
String[] cps = it.next().split(":");
|
||||||
outputPath = it.next();
|
for (String cp : cps) {
|
||||||
} else if (arg.startsWith("-d")) {
|
classpath.add(new File(cp));
|
||||||
outputPath = arg.substring(2);
|
}
|
||||||
} else if (arg.equals("-cp") || arg.equals("-classpath")) {
|
}
|
||||||
String[] cps = it.next().split(":");
|
else if (arg.equals("-s") || arg.equals("-server")) {
|
||||||
for (String cp : cps) {
|
if (unificationServer != null) {
|
||||||
classpath.add(new File(cp));
|
throw new IllegalArgumentException("Cannot run in server-Mode and use unification server at the same time");
|
||||||
|
}
|
||||||
|
runAsServerWithPort = Integer.parseInt(it.next());
|
||||||
|
}
|
||||||
|
else if (arg.equals("-us") || arg.equals("-unification-server")) {
|
||||||
|
if (runAsServerWithPort != -1) {
|
||||||
|
throw new IllegalArgumentException("Cannot run in server-Mode and use unification server at the same time");
|
||||||
|
}
|
||||||
|
unificationServer = it.next();
|
||||||
|
} else {
|
||||||
|
input.add(new File(arg));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (arg.equals("--server-mode")) {
|
|
||||||
serverPort = Optional.of(Integer.parseInt(it.next()));
|
|
||||||
} else if (arg.equals("--unify-server")) {
|
|
||||||
unifyServerUrl = Optional.of(it.next());
|
|
||||||
} else if (arg.equals("--write-logs")) {
|
|
||||||
ConsoleInterface.writeLogFiles = true;
|
|
||||||
} else if (arg.startsWith("-v")) {
|
|
||||||
logLevel = switch (arg) {
|
|
||||||
case "-v" -> Logger.LogLevel.WARNING;
|
|
||||||
case "-vv" -> Logger.LogLevel.INFO;
|
|
||||||
case "-vvv" -> Logger.LogLevel.DEBUG;
|
|
||||||
default -> throw new IllegalArgumentException("Argument " + arg + " is not a valid verbosity level");
|
|
||||||
};
|
|
||||||
} else {
|
|
||||||
input.add(new File(arg));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (serverPort.isPresent()) {
|
if (runAsServerWithPort != -1) {
|
||||||
if (unifyServerUrl.isPresent()) throw new RuntimeException("Cannot use unifyServer when in server mode!");
|
JavaTXServer server = new JavaTXServer(runAsServerWithPort);
|
||||||
JavaTXServer server = new JavaTXServer(serverPort.get());
|
}
|
||||||
server.listen();
|
else {
|
||||||
}
|
JavaTXCompiler compiler = new JavaTXCompiler(input, classpath, outputPath != null ? new File(outputPath) : null);
|
||||||
else {
|
//compiler.typeInference();
|
||||||
JavaTXCompiler compiler = new JavaTXCompiler(input, classpath, outputPath != null ? new File(outputPath) : null);
|
compiler.generateBytecode();
|
||||||
//compiler.typeInference();
|
}
|
||||||
compiler.generateBytecode();
|
}
|
||||||
SocketClient.closeIfOpen();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -13,10 +13,6 @@ import de.dhbwstuttgart.parser.antlr.Java17Parser.SourceFileContext;
|
|||||||
import de.dhbwstuttgart.parser.scope.JavaClassName;
|
import de.dhbwstuttgart.parser.scope.JavaClassName;
|
||||||
import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
import de.dhbwstuttgart.server.SocketClient;
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.packet.SetAutoclosePacket;
|
|
||||||
import de.dhbwstuttgart.server.packet.UnifyRequestPacket;
|
|
||||||
import de.dhbwstuttgart.server.packet.UnifyResultPacket;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.ClassOrInterface;
|
import de.dhbwstuttgart.syntaxtree.ClassOrInterface;
|
||||||
import de.dhbwstuttgart.syntaxtree.GenericTypeVar;
|
import de.dhbwstuttgart.syntaxtree.GenericTypeVar;
|
||||||
import de.dhbwstuttgart.syntaxtree.Method;
|
import de.dhbwstuttgart.syntaxtree.Method;
|
||||||
@@ -35,29 +31,20 @@ import de.dhbwstuttgart.syntaxtree.type.TypeVisitor;
|
|||||||
import de.dhbwstuttgart.syntaxtree.visual.ASTTypePrinter;
|
import de.dhbwstuttgart.syntaxtree.visual.ASTTypePrinter;
|
||||||
import de.dhbwstuttgart.target.generate.ASTToTargetAST;
|
import de.dhbwstuttgart.target.generate.ASTToTargetAST;
|
||||||
import de.dhbwstuttgart.target.generate.GenericsResult;
|
import de.dhbwstuttgart.target.generate.GenericsResult;
|
||||||
|
import de.dhbwstuttgart.typeinference.TypeInference;
|
||||||
|
import de.dhbwstuttgart.typeinference.TypeInferenceHelper;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.Constraint;
|
import de.dhbwstuttgart.typeinference.constraints.Constraint;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
||||||
import de.dhbwstuttgart.typeinference.typeAlgo.TYPE;
|
import de.dhbwstuttgart.typeinference.typeAlgo.TYPE;
|
||||||
import de.dhbwstuttgart.typeinference.unify.PlaceholderRegistry;
|
import de.dhbwstuttgart.typeinference.unify.*;
|
||||||
import de.dhbwstuttgart.typeinference.unify.RuleSet;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.TypeUnify;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyContext;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.distributeVariance;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.interfaces.IFiniteClosure;
|
import de.dhbwstuttgart.typeinference.unify.interfaces.IFiniteClosure;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.FiniteClosure;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.PairOperator;
|
import de.dhbwstuttgart.typeinference.unify.model.PairOperator;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.PlaceholderType;
|
import de.dhbwstuttgart.typeinference.unify.model.PlaceholderType;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.UnifyType;
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyType;
|
||||||
import de.dhbwstuttgart.typeinference.unify.TypeUnifyTask;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyResultListener;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyResultListenerImpl;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyResultModel;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyTaskModel;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.lang.reflect.Modifier;
|
import java.lang.reflect.Modifier;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
@@ -66,20 +53,19 @@ import java.util.Map.Entry;
|
|||||||
import java.util.function.Function;
|
import java.util.function.Function;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.util.Logger;
|
||||||
import org.apache.commons.io.output.NullOutputStream;
|
import org.apache.commons.io.output.NullOutputStream;
|
||||||
|
|
||||||
public class JavaTXCompiler {
|
public class JavaTXCompiler {
|
||||||
|
|
||||||
// do not use this in any code, that can be executed serverside!
|
|
||||||
public static PlaceholderRegistry defaultClientPlaceholderRegistry = new PlaceholderRegistry();
|
|
||||||
public static Logger defaultLogger = new Logger();
|
|
||||||
|
|
||||||
// public static JavaTXCompiler INSTANCE;
|
// public static JavaTXCompiler INSTANCE;
|
||||||
final CompilationEnvironment environment;
|
final CompilationEnvironment environment;
|
||||||
Boolean resultmodel = true;
|
Boolean resultmodel = true;
|
||||||
public final Map<File, SourceFile> sourceFiles = new HashMap<>();
|
Optional<String> unificationServer = Optional.empty();
|
||||||
|
public final Map<File, SourceFile> sourceFiles = new HashMap<>();
|
||||||
|
|
||||||
public volatile UnifyTaskModel usedTasks = new UnifyTaskModel();
|
Boolean log = false; //gibt an ob ein Log-File nach System.getProperty("user.dir")+""/logFiles/"" geschrieben werden soll?
|
||||||
|
public UnifyTaskModelParallel usedTasks = new UnifyTaskModelParallel();
|
||||||
public final DirectoryClassLoader classLoader;
|
public final DirectoryClassLoader classLoader;
|
||||||
|
|
||||||
public final List<File> classPath;
|
public final List<File> classPath;
|
||||||
@@ -90,7 +76,12 @@ public class JavaTXCompiler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public JavaTXCompiler(File sourceFile) throws IOException, ClassNotFoundException {
|
public JavaTXCompiler(File sourceFile) throws IOException, ClassNotFoundException {
|
||||||
this(Collections.singletonList(sourceFile), List.of(), new File("."));
|
this(Arrays.asList(sourceFile), List.of(), new File("."));
|
||||||
|
}
|
||||||
|
|
||||||
|
public JavaTXCompiler(File sourceFile, Boolean log) throws IOException, ClassNotFoundException {
|
||||||
|
this(sourceFile);
|
||||||
|
this.log = log;
|
||||||
}
|
}
|
||||||
|
|
||||||
public JavaTXCompiler(List<File> sourceFiles) throws IOException, ClassNotFoundException {
|
public JavaTXCompiler(List<File> sourceFiles) throws IOException, ClassNotFoundException {
|
||||||
@@ -98,9 +89,6 @@ public class JavaTXCompiler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public JavaTXCompiler(List<File> sources, List<File> contextPath, File outputPath) throws IOException, ClassNotFoundException {
|
public JavaTXCompiler(List<File> sources, List<File> contextPath, File outputPath) throws IOException, ClassNotFoundException {
|
||||||
// ensure new default placeholder registry for tests
|
|
||||||
defaultClientPlaceholderRegistry = new PlaceholderRegistry();
|
|
||||||
|
|
||||||
var path = new ArrayList<>(contextPath);
|
var path = new ArrayList<>(contextPath);
|
||||||
if (contextPath.isEmpty()) {
|
if (contextPath.isEmpty()) {
|
||||||
// When no contextPaths are given, the working directory is the sources root
|
// When no contextPaths are given, the working directory is the sources root
|
||||||
@@ -292,7 +280,7 @@ public class JavaTXCompiler {
|
|||||||
* x.getRhsType().accept(new distributeVariance(), a.getVariance());}); eq1 = new HashSet<>(eq); eq1.removeIf(x -> !(x.getRhsType() instanceof PlaceholderType && ((PlaceholderType)x.getRhsType()).equals(a))); eq1.stream().forEach(x -> { x.getLhsType().accept(new distributeVariance(), a.getVariance());}); phSetVariance = new ArrayList<>(phSet); phSetVariance.removeIf(x -> (x.getVariance() == 0 || usedTPH.contains(x))); } }
|
* x.getRhsType().accept(new distributeVariance(), a.getVariance());}); eq1 = new HashSet<>(eq); eq1.removeIf(x -> !(x.getRhsType() instanceof PlaceholderType && ((PlaceholderType)x.getRhsType()).equals(a))); eq1.stream().forEach(x -> { x.getLhsType().accept(new distributeVariance(), a.getVariance());}); phSetVariance = new ArrayList<>(phSet); phSetVariance.removeIf(x -> (x.getVariance() == 0 || usedTPH.contains(x))); } }
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public UnifyResultModel typeInferenceAsync(UnifyResultListener resultListener, Writer logFile) throws ClassNotFoundException, IOException {
|
public UnifyResultModelParallel typeInferenceAsync(UnifyResultListener resultListener, Writer logFile) throws ClassNotFoundException, IOException {
|
||||||
List<ClassOrInterface> allClasses = new ArrayList<>();// environment.getAllAvailableClasses();
|
List<ClassOrInterface> allClasses = new ArrayList<>();// environment.getAllAvailableClasses();
|
||||||
// Alle Importierten Klassen in allen geparsten Sourcefiles kommen ins FC
|
// Alle Importierten Klassen in allen geparsten Sourcefiles kommen ins FC
|
||||||
for (Entry<File, SourceFile> source : this.sourceFiles.entrySet()) {
|
for (Entry<File, SourceFile> source : this.sourceFiles.entrySet()) {
|
||||||
@@ -308,57 +296,68 @@ public class JavaTXCompiler {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Set<Set<UnifyPair>> results = new HashSet<>();
|
Set<Set<UnifyPair>> results = new HashSet<>();
|
||||||
UnifyResultModel urm = null;
|
UnifyResultModelParallel urm = null;
|
||||||
// urm.addUnifyResultListener(resultListener);
|
// urm.addUnifyResultListener(resultListener);
|
||||||
logFile = logFile == null ? new FileWriter("log_" + sourceFiles.keySet().iterator().next().getName()) : logFile;
|
try {
|
||||||
Logger logger = new Logger(logFile, "TypeInferenceAsync");
|
Logger logger = new Logger(true, "log_" + sourceFiles.keySet().iterator().next().getName());
|
||||||
UnifyContext context = new UnifyContext(logger, true, urm, usedTasks, defaultClientPlaceholderRegistry);
|
if (logFile == null) {
|
||||||
|
logFile = logger.getLogFileWriter();
|
||||||
IFiniteClosure finiteClosure = UnifyTypeFactory.generateFC(allClasses, logger, getClassLoader(), this, context.placeholderRegistry());
|
|
||||||
logger.info(finiteClosure.toString());
|
|
||||||
urm = new UnifyResultModel(cons, finiteClosure);
|
|
||||||
urm.addUnifyResultListener(resultListener);
|
|
||||||
ConstraintSet<UnifyPair> unifyCons = UnifyTypeFactory.convert(this, cons, context.placeholderRegistry());
|
|
||||||
|
|
||||||
Function<UnifyPair, UnifyPair> distributeInnerVars = x -> {
|
|
||||||
UnifyType lhs, rhs;
|
|
||||||
if (((lhs = x.getLhsType()) instanceof PlaceholderType) && ((rhs = x.getRhsType()) instanceof PlaceholderType) && (((PlaceholderType) lhs).isInnerType() || ((PlaceholderType) rhs).isInnerType())) {
|
|
||||||
((PlaceholderType) lhs).setInnerType(true);
|
|
||||||
((PlaceholderType) rhs).setInnerType(true);
|
|
||||||
}
|
}
|
||||||
return x;
|
|
||||||
|
|
||||||
};
|
IFiniteClosure finiteClosure = UnifyTypeFactory.generateFC(allClasses, logger, getClassLoader(), this);
|
||||||
logger.debug(unifyCons.toString());
|
System.out.println(finiteClosure);
|
||||||
unifyCons = unifyCons.map(distributeInnerVars);
|
urm = new UnifyResultModelParallel(cons, finiteClosure);
|
||||||
logger.debug(unifyCons.toString());
|
urm.addUnifyResultListener(resultListener);
|
||||||
// Set<Set<UnifyPair>> results = new HashSet<>(); Nach vorne gezogen
|
ConstraintSet<UnifyPair> unifyCons = UnifyTypeFactory.convert(this, cons);
|
||||||
logger.debug("FC:\\" + finiteClosure.toString() + "\n");
|
|
||||||
for (SourceFile f : this.sourceFiles.values()) {
|
Function<UnifyPair, UnifyPair> distributeInnerVars = x -> {
|
||||||
logger.debug(ASTTypePrinter.print(f));
|
UnifyType lhs, rhs;
|
||||||
|
if (((lhs = x.getLhsType()) instanceof PlaceholderType) && ((rhs = x.getRhsType()) instanceof PlaceholderType) && (((PlaceholderType) lhs).isInnerType() || ((PlaceholderType) rhs).isInnerType())) {
|
||||||
|
((PlaceholderType) lhs).setInnerType(true);
|
||||||
|
((PlaceholderType) rhs).setInnerType(true);
|
||||||
|
}
|
||||||
|
return x;
|
||||||
|
|
||||||
|
};
|
||||||
|
logFile.write(unifyCons.toString());
|
||||||
|
unifyCons = unifyCons.map(distributeInnerVars);
|
||||||
|
logFile.write(unifyCons.toString());
|
||||||
|
TypeUnify unify = new TypeUnify();
|
||||||
|
// Set<Set<UnifyPair>> results = new HashSet<>(); Nach vorne gezogen
|
||||||
|
logFile.write("FC:\\" + finiteClosure.toString() + "\n");
|
||||||
|
for (SourceFile f : this.sourceFiles.values()) {
|
||||||
|
logFile.write(ASTTypePrinter.print(f));
|
||||||
|
}
|
||||||
|
logFile.flush();
|
||||||
|
Set<PlaceholderType> varianceTPHold;
|
||||||
|
Set<PlaceholderType> varianceTPH = new HashSet<>();
|
||||||
|
varianceTPH = varianceInheritanceConstraintSet(unifyCons);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PL 2018-11-07 wird in varianceInheritanceConstraintSet erledigt do { //PL 2018-11-05 Huellenbildung Variance auf alle TPHs der Terme auf der jeweiligen //anderen Seite übertragen varianceTPHold = new HashSet<>(varianceTPH); varianceTPH = varianceInheritanceConstraintSet(unifyCons); unifyCons.map( y -> { if ((y.getLhsType() instanceof PlaceholderType) && (y.getRhsType() instanceof PlaceholderType)) { if (((PlaceholderType)y.getLhsType()).getVariance() != 0 &&
|
||||||
|
* ((PlaceholderType)y.getRhsType()).getVariance() == 0) { ((PlaceholderType)y.getRhsType()).setVariance(((PlaceholderType)y.getLhsType( )).getVariance()); } if (((PlaceholderType)y.getLhsType()).getVariance() == 0 && ((PlaceholderType)y.getRhsType()).getVariance() != 0) { ((PlaceholderType)y.getLhsType()).setVariance(((PlaceholderType)y.getRhsType( )).getVariance()); } } return y; } ); } while (!varianceTPHold.equals(varianceTPH));
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Set<Set<UnifyPair>> result = unify.unifySequential(xConsSet, finiteClosure,
|
||||||
|
// logFile, log);
|
||||||
|
// Set<Set<UnifyPair>> result = unify.unify(xConsSet, finiteClosure);
|
||||||
|
List<Set<Constraint<UnifyPair>>> oderConstraints = unifyCons.getOderConstraints()/*
|
||||||
|
* .stream().map(x -> { Set<Set<UnifyPair>> ret = new HashSet<>(); for (Constraint<UnifyPair> y : x) { ret.add(new HashSet<>(y)); } return ret; }).collect(Collectors. toCollection(ArrayList::new))
|
||||||
|
*/;
|
||||||
|
unify.unifyAsync(unifyCons.getUndConstraints(), oderConstraints, finiteClosure, logFile, log, urm, usedTasks);
|
||||||
|
} catch (IOException e) {
|
||||||
|
System.err.println("kein LogFile");
|
||||||
}
|
}
|
||||||
// logFile.flush();
|
|
||||||
Set<PlaceholderType> varianceTPHold;
|
|
||||||
Set<PlaceholderType> varianceTPH = new HashSet<>();
|
|
||||||
varianceTPH = varianceInheritanceConstraintSet(unifyCons);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* PL 2018-11-07 wird in varianceInheritanceConstraintSet erledigt do { //PL 2018-11-05 Huellenbildung Variance auf alle TPHs der Terme auf der jeweiligen //anderen Seite übertragen varianceTPHold = new HashSet<>(varianceTPH); varianceTPH = varianceInheritanceConstraintSet(unifyCons); unifyCons.map( y -> { if ((y.getLhsType() instanceof PlaceholderType) && (y.getRhsType() instanceof PlaceholderType)) { if (((PlaceholderType)y.getLhsType()).getVariance() != 0 &&
|
|
||||||
* ((PlaceholderType)y.getRhsType()).getVariance() == 0) { ((PlaceholderType)y.getRhsType()).setVariance(((PlaceholderType)y.getLhsType( )).getVariance()); } if (((PlaceholderType)y.getLhsType()).getVariance() == 0 && ((PlaceholderType)y.getRhsType()).getVariance() != 0) { ((PlaceholderType)y.getLhsType()).setVariance(((PlaceholderType)y.getRhsType( )).getVariance()); } } return y; } ); } while (!varianceTPHold.equals(varianceTPH));
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Set<Set<UnifyPair>> result = unify.unifySequential(xConsSet, finiteClosure,
|
|
||||||
// logFile, log);
|
|
||||||
// Set<Set<UnifyPair>> result = unify.unify(xConsSet, finiteClosure);
|
|
||||||
List<Set<Constraint<UnifyPair>>> oderConstraints = unifyCons.getOderConstraints()/*
|
|
||||||
* .stream().map(x -> { Set<Set<UnifyPair>> ret = new HashSet<>(); for (Constraint<UnifyPair> y : x) { ret.add(new HashSet<>(y)); } return ret; }).collect(Collectors. toCollection(ArrayList::new))
|
|
||||||
*/;
|
|
||||||
TypeUnify.unifyAsync(unifyCons.getUndConstraints(), oderConstraints, finiteClosure, context);
|
|
||||||
|
|
||||||
return urm;
|
return urm;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<ResultSet> typeInference(File file) throws ClassNotFoundException, IOException {
|
public List<ResultSet> typeInference(File file) throws ClassNotFoundException, IOException {
|
||||||
|
|
||||||
|
// START create logger
|
||||||
|
Logger logger = new Logger(log, "log_" + sourceFiles.keySet().iterator().next().getName());
|
||||||
|
// END create logger
|
||||||
|
|
||||||
|
// START gather classes and interfaces
|
||||||
var sf = sourceFiles.get(file);
|
var sf = sourceFiles.get(file);
|
||||||
Set<ClassOrInterface> allClasses = new HashSet<>();// environment.getAllAvailableClasses();
|
Set<ClassOrInterface> allClasses = new HashSet<>();// environment.getAllAvailableClasses();
|
||||||
allClasses.addAll(getAvailableClasses(sf));
|
allClasses.addAll(getAvailableClasses(sf));
|
||||||
@@ -371,116 +370,51 @@ public class JavaTXCompiler {
|
|||||||
if (allClasses.stream().noneMatch(old -> old.getClassName().equals(clazz.getClassName())))
|
if (allClasses.stream().noneMatch(old -> old.getClassName().equals(clazz.getClassName())))
|
||||||
allClasses.add(clazz);
|
allClasses.add(clazz);
|
||||||
}
|
}
|
||||||
|
logger.write(ASTTypePrinter.print(sf));
|
||||||
|
// END gather classes and interfaces
|
||||||
|
|
||||||
final ConstraintSet<Pair> cons = getConstraints(file);
|
// START create finite closure
|
||||||
Set<Set<UnifyPair>> results = new HashSet<>();
|
IFiniteClosure finiteClosure = UnifyTypeFactory.generateFC(allClasses.stream().toList(), logger, classLoader, this);
|
||||||
PlaceholderRegistry placeholderRegistry = new PlaceholderRegistry();
|
logger.write("FC:\\" + finiteClosure.toString() + "\n");
|
||||||
|
// END create finite closure
|
||||||
|
|
||||||
var logFolder = new File(System.getProperty("user.dir") + "/logFiles/");
|
// START create unify constraints
|
||||||
if (ConsoleInterface.writeLogFiles && !logFolder.mkdirs()) throw new RuntimeException("Could not creat directoy for log files: " + logFolder);
|
ConstraintSet<Pair> cons = getConstraints(file);
|
||||||
Writer logFile = ConsoleInterface.writeLogFiles ? new FileWriter(new File(logFolder, "log_" + sourceFiles.keySet().iterator().next().getName())) : new OutputStreamWriter(new NullOutputStream());
|
ConstraintSet<UnifyPair> unifyCons = UnifyTypeFactory.convert(this, cons);
|
||||||
Logger logger = new Logger(logFile, "TypeInference");
|
logger.write("Unify:" + unifyCons.toString());
|
||||||
|
unifyCons = unifyCons.map(TypeInferenceHelper::distributeInnerVars);
|
||||||
FiniteClosure finiteClosure = UnifyTypeFactory.generateFC(allClasses.stream().toList(), logger, classLoader, this, placeholderRegistry);
|
logger.write("\nUnify_distributeInnerVars: " + unifyCons.toString());
|
||||||
logger.info(finiteClosure.toString());
|
System.out.println("xxx1");
|
||||||
ConstraintSet<UnifyPair> unifyCons = UnifyTypeFactory.convert(this, cons, placeholderRegistry);
|
// END create unify constraints
|
||||||
logger.info("xxx1");
|
|
||||||
Function<UnifyPair, UnifyPair> distributeInnerVars = x -> {
|
|
||||||
UnifyType lhs, rhs;
|
|
||||||
if (((lhs = x.getLhsType()) instanceof PlaceholderType) && ((rhs = x.getRhsType()) instanceof PlaceholderType) && (((PlaceholderType) lhs).isInnerType() || ((PlaceholderType) rhs).isInnerType())) {
|
|
||||||
((PlaceholderType) lhs).setInnerType(true);
|
|
||||||
((PlaceholderType) rhs).setInnerType(true);
|
|
||||||
}
|
|
||||||
return x;
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
logger.debug("Unify:" + unifyCons.toString());
|
|
||||||
logger.info("Unify:" + unifyCons.toString());
|
|
||||||
unifyCons = unifyCons.map(distributeInnerVars);
|
|
||||||
logger.debug("\nUnify_distributeInnerVars: " + unifyCons.toString());
|
|
||||||
// Set<Set<UnifyPair>> results = new HashSet<>(); Nach vorne gezogen
|
|
||||||
logger.debug("FC:\\" + finiteClosure.toString() + "\n");
|
|
||||||
logger.info(ASTTypePrinter.print(sf));
|
|
||||||
// logFile.flush();
|
|
||||||
List<UnifyPair> andConstraintsSorted = unifyCons.getUndConstraints().stream()
|
|
||||||
.sorted(Comparator.comparing(UnifyPair::getPairOp).thenComparing(UnifyPair::getLhsType, Comparator.comparing(UnifyType::getName)))
|
|
||||||
.collect(Collectors.toList());
|
|
||||||
|
|
||||||
logger.info(andConstraintsSorted);
|
|
||||||
|
|
||||||
Set<PlaceholderType> varianceTPHold;
|
|
||||||
Set<PlaceholderType> varianceTPH = new HashSet<>();
|
|
||||||
varianceTPH = varianceInheritanceConstraintSet(unifyCons);
|
|
||||||
|
|
||||||
|
// START unused variance calculation
|
||||||
|
Set<PlaceholderType> varianceTPHold;
|
||||||
|
Set<PlaceholderType> varianceTPH = varianceInheritanceConstraintSet(unifyCons);
|
||||||
/*
|
/*
|
||||||
* PL 2018-11-07 wird in varianceInheritanceConstraintSet erledigt do { //PL 2018-11-05 Huellenbildung Variance auf alle TPHs der Terme auf der jeweiligen //anderen Seite übertragen varianceTPHold = new HashSet<>(varianceTPH); varianceTPH = varianceInheritanceConstraintSet(unifyCons); unifyCons.map( y -> { if ((y.getLhsType() instanceof PlaceholderType) && (y.getRhsType() instanceof PlaceholderType)) { if (((PlaceholderType)y.getLhsType()).getVariance() != 0 &&
|
* PL 2018-11-07 wird in varianceInheritanceConstraintSet erledigt do { //PL 2018-11-05 Huellenbildung Variance auf alle TPHs der Terme auf der jeweiligen //anderen Seite übertragen varianceTPHold = new HashSet<>(varianceTPH); varianceTPH = varianceInheritanceConstraintSet(unifyCons); unifyCons.map( y -> { if ((y.getLhsType() instanceof PlaceholderType) && (y.getRhsType() instanceof PlaceholderType)) { if (((PlaceholderType)y.getLhsType()).getVariance() != 0 &&
|
||||||
* ((PlaceholderType)y.getRhsType()).getVariance() == 0) { ((PlaceholderType)y.getRhsType()).setVariance(((PlaceholderType)y.getLhsType( )).getVariance()); } if (((PlaceholderType)y.getLhsType()).getVariance() == 0 && ((PlaceholderType)y.getRhsType()).getVariance() != 0) { ((PlaceholderType)y.getLhsType()).setVariance(((PlaceholderType)y.getRhsType( )).getVariance()); } } return y; } ); } while (!varianceTPHold.equals(varianceTPH));
|
* ((PlaceholderType)y.getRhsType()).getVariance() == 0) { ((PlaceholderType)y.getRhsType()).setVariance(((PlaceholderType)y.getLhsType( )).getVariance()); } if (((PlaceholderType)y.getLhsType()).getVariance() == 0 && ((PlaceholderType)y.getRhsType()).getVariance() != 0) { ((PlaceholderType)y.getLhsType()).setVariance(((PlaceholderType)y.getRhsType( )).getVariance()); } } return y; } ); } while (!varianceTPHold.equals(varianceTPH));
|
||||||
*/
|
*/
|
||||||
|
// END unused variance calculation
|
||||||
|
|
||||||
// Set<Set<UnifyPair>> result = unify.unifySequential(xConsSet, finiteClosure,
|
TypeInference typeInference = new TypeInference(
|
||||||
// logFile, log);
|
logger,
|
||||||
// Set<Set<UnifyPair>> result = unify.unify(xConsSet, finiteClosure);
|
classLoader,
|
||||||
List<Set<Constraint<UnifyPair>>> oderConstraints = unifyCons.getOderConstraints()// .stream().map(x -> {
|
usedTasks,
|
||||||
/*
|
file,
|
||||||
* Set<Set<UnifyPair>> ret = new HashSet<>(); for (Constraint<UnifyPair> y : x) { ret.add(new HashSet<>(y)); } return ret; }).collect(Collectors.toCollection(ArrayList::new))
|
cons,
|
||||||
*/;
|
allClasses,
|
||||||
if (ConsoleInterface.unifyServerUrl.isPresent()) {
|
finiteClosure,
|
||||||
UnifyResultModel urm = new UnifyResultModel(cons, finiteClosure);
|
unifyCons
|
||||||
UnifyContext context = new UnifyContext(logger, true, urm, usedTasks, placeholderRegistry);
|
);
|
||||||
SocketFuture<UnifyResultPacket> future = SocketClient.execute(
|
if (unificationServer.isPresent()) {
|
||||||
UnifyRequestPacket.create(finiteClosure, cons, unifyCons, context.placeholderRegistry())
|
return typeInference.executeOnRemoteServer(unificationServer.get());
|
||||||
);
|
}
|
||||||
SocketClient.execute(SetAutoclosePacket.create());
|
else if (resultmodel) {
|
||||||
return future.get().getResultSet(context);
|
return typeInference.executeResultModel();
|
||||||
}
|
}
|
||||||
else if (resultmodel) {
|
else {
|
||||||
/* UnifyResultModel Anfang */
|
return typeInference.executeNoResultModel();
|
||||||
UnifyResultModel urm = new UnifyResultModel(cons, finiteClosure);
|
|
||||||
UnifyResultListenerImpl li = new UnifyResultListenerImpl();
|
|
||||||
urm.addUnifyResultListener(li);
|
|
||||||
UnifyContext context = new UnifyContext(logger, true, urm, usedTasks, placeholderRegistry);
|
|
||||||
TypeUnify.unifyParallel(unifyCons.getUndConstraints(), oderConstraints, finiteClosure, context);
|
|
||||||
var finalResults = li.getResults().stream().sorted().toList();
|
|
||||||
int i = 0;
|
|
||||||
logger.info("RESULT Final: ");
|
|
||||||
for (var result : finalResults){
|
|
||||||
logger.info("Result: " + i++);
|
|
||||||
logger.info(result.getSortedResults());
|
|
||||||
}
|
|
||||||
logger.info("RES_FINAL: " + li.getResults().toString() + "\n");
|
|
||||||
return li.getResults();
|
|
||||||
}
|
|
||||||
/* UnifyResultModel End */
|
|
||||||
else {
|
|
||||||
// Set<Set<UnifyPair>> result = unify.unify(unifyCons.getUndConstraints(),
|
|
||||||
// oderConstraints, finiteClosure, logFile, log, new UnifyResultModel(cons,
|
|
||||||
// finiteClosure));
|
|
||||||
UnifyContext context = new UnifyContext(logger, false, new UnifyResultModel(cons, finiteClosure), usedTasks, placeholderRegistry);
|
|
||||||
Set<Set<UnifyPair>> result = TypeUnify.unifyOderConstraints(unifyCons.getUndConstraints(), oderConstraints, finiteClosure, context);
|
|
||||||
logger.info("RESULT: " + result);
|
|
||||||
results.addAll(result);
|
|
||||||
|
|
||||||
results = results.stream().map(x -> {
|
|
||||||
Optional<Set<UnifyPair>> res = new RuleSet(placeholderRegistry).subst(x.stream().map(y -> {
|
|
||||||
if (y.getPairOp() == PairOperator.SMALLERDOTWC)
|
|
||||||
y.setPairOp(PairOperator.EQUALSDOT);
|
|
||||||
return y; // alle Paare a <.? b erden durch a =. b ersetzt
|
|
||||||
}).collect(Collectors.toCollection(HashSet::new)));
|
|
||||||
if (res.isPresent()) {// wenn subst ein Erg liefert wurde was veraendert
|
|
||||||
return new TypeUnifyTask(context).applyTypeUnificationRules(res.get(), finiteClosure);
|
|
||||||
} else
|
|
||||||
return x; // wenn nichts veraendert wurde wird x zurueckgegeben
|
|
||||||
}).collect(Collectors.toCollection(HashSet::new));
|
|
||||||
logger.info("RESULT Final: " + results);
|
|
||||||
logger.info("Constraints for Generated Generics: " + " ???");
|
|
||||||
logger.debug("RES_FINAL: " + results.toString() + "\n");
|
|
||||||
// logFile.flush();
|
|
||||||
logger.debug("PLACEHOLDERS: " + placeholderRegistry);
|
|
||||||
// logFile.flush();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return results.stream().map((unifyPairs -> new ResultSet(UnifyTypeFactory.convert(unifyPairs, Pair.generateTPHMap(cons), placeholderRegistry)))).collect(Collectors.toList());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -612,6 +546,10 @@ public class JavaTXCompiler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param path - output-Directory can be null, then class file output is in the same directory as the parsed source files
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
public Map<JavaClassName, byte[]> generateBytecode(File sourceFile) throws ClassNotFoundException, IOException {
|
public Map<JavaClassName, byte[]> generateBytecode(File sourceFile) throws ClassNotFoundException, IOException {
|
||||||
var sf = sourceFiles.get(sourceFile);
|
var sf = sourceFiles.get(sourceFile);
|
||||||
if (sf.isGenerated()) return null;
|
if (sf.isGenerated()) return null;
|
||||||
@@ -653,12 +591,12 @@ public class JavaTXCompiler {
|
|||||||
var codegen = new Codegen(converter.convert(clazz), this, converter);
|
var codegen = new Codegen(converter.convert(clazz), this, converter);
|
||||||
var code = codegen.generate();
|
var code = codegen.generate();
|
||||||
generatedClasses.put(clazz.getClassName(), code);
|
generatedClasses.put(clazz.getClassName(), code);
|
||||||
|
converter.auxiliaries.forEach((name, source) -> {
|
||||||
|
generatedClasses.put(new JavaClassName(name), source);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
generatedGenerics.put(sf, converter.javaGenerics());
|
generatedGenerics.put(sf, converter.javaGenerics());
|
||||||
converter.generateFunNTypes();
|
converter.generateFunNTypes();
|
||||||
converter.auxiliaries.forEach((name, source) -> {
|
|
||||||
generatedClasses.put(new JavaClassName(name), source);
|
|
||||||
});
|
|
||||||
return generatedClasses;
|
return generatedClasses;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -666,15 +604,15 @@ public class JavaTXCompiler {
|
|||||||
FileOutputStream output;
|
FileOutputStream output;
|
||||||
for (JavaClassName name : classFiles.keySet()) {
|
for (JavaClassName name : classFiles.keySet()) {
|
||||||
byte[] bytecode = classFiles.get(name);
|
byte[] bytecode = classFiles.get(name);
|
||||||
defaultLogger.info("generating " + name + ".class file ...");
|
System.out.println("generating " + name + ".class file ...");
|
||||||
var subPath = preserveHierarchy ? path : Path.of(path.toString(), name.getPackageName().split("\\.")).toFile();
|
var subPath = preserveHierarchy ? path : Path.of(path.toString(), name.getPackageName().split("\\.")).toFile();
|
||||||
File outputFile = new File(subPath, name.getClassName() + ".class");
|
File outputFile = new File(subPath, name.getClassName() + ".class");
|
||||||
outputFile.getAbsoluteFile().getParentFile().mkdirs();
|
outputFile.getAbsoluteFile().getParentFile().mkdirs();
|
||||||
defaultLogger.info(outputFile.toString());
|
System.out.println(outputFile);
|
||||||
output = new FileOutputStream(outputFile);
|
output = new FileOutputStream(outputFile);
|
||||||
output.write(bytecode);
|
output.write(bytecode);
|
||||||
output.close();
|
output.close();
|
||||||
defaultLogger.success(name + ".class file generated");
|
System.out.println(name + ".class file generated");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -4,28 +4,12 @@ import de.dhbwstuttgart.server.SocketServer;
|
|||||||
|
|
||||||
public class JavaTXServer {
|
public class JavaTXServer {
|
||||||
|
|
||||||
public static boolean isRunning = false;
|
JavaTXServer(int port) {
|
||||||
|
|
||||||
final SocketServer socketServer;
|
|
||||||
|
|
||||||
public JavaTXServer(int port) {
|
|
||||||
this.socketServer = new SocketServer(port);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void listen() {
|
|
||||||
isRunning = true;
|
|
||||||
socketServer.start();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void forceStop() {
|
|
||||||
try {
|
try {
|
||||||
socketServer.stop();
|
SocketServer socketServer = new SocketServer(port);
|
||||||
|
socketServer.start();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
catch (InterruptedException exception) {
|
|
||||||
System.err.println("Interrupted socketServer: " + exception);
|
|
||||||
}
|
|
||||||
isRunning = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,13 @@
|
|||||||
|
package de.dhbwstuttgart.environment;
|
||||||
|
|
||||||
|
public class ByteArrayClassLoader extends ClassLoader implements IByteArrayClassLoader {
|
||||||
|
@Override
|
||||||
|
public Class _defineClass(String name, byte[] code, int i, int length) throws ClassFormatError {
|
||||||
|
return defineClass(name, code, i, length);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Class<?> findClass(String name) throws ClassNotFoundException {
|
||||||
|
return super.findClass(name);
|
||||||
|
}
|
||||||
|
}
|
@@ -1,11 +1,5 @@
|
|||||||
package de.dhbwstuttgart.environment;
|
package de.dhbwstuttgart.environment;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.net.MalformedURLException;
|
|
||||||
import java.net.URL;
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
import de.dhbwstuttgart.core.JavaTXCompiler;
|
import de.dhbwstuttgart.core.JavaTXCompiler;
|
||||||
import de.dhbwstuttgart.syntaxtree.ClassOrInterface;
|
import de.dhbwstuttgart.syntaxtree.ClassOrInterface;
|
||||||
@@ -18,6 +12,17 @@ import de.dhbwstuttgart.parser.antlr.Java17Parser.SourceFileContext;
|
|||||||
import de.dhbwstuttgart.parser.antlr.Java17Parser.SrcfileContext;
|
import de.dhbwstuttgart.parser.antlr.Java17Parser.SrcfileContext;
|
||||||
import de.dhbwstuttgart.parser.scope.GatherNames;
|
import de.dhbwstuttgart.parser.scope.GatherNames;
|
||||||
import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.ClassOrInterface;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.factory.ASTFactory;
|
||||||
|
import org.antlr.v4.runtime.tree.TerminalNode;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.MalformedURLException;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stellt die Java-Environment dar und speichert alle Binarys, Librarys und Sourcefiles im zu kompilierenden Projekt Sie erstellt anhand dieser Informationen die JavaClassNameRegistry
|
* Stellt die Java-Environment dar und speichert alle Binarys, Librarys und Sourcefiles im zu kompilierenden Projekt Sie erstellt anhand dieser Informationen die JavaClassNameRegistry
|
||||||
|
@@ -6,22 +6,18 @@ import java.nio.file.Path;
|
|||||||
|
|
||||||
public interface IByteArrayClassLoader {
|
public interface IByteArrayClassLoader {
|
||||||
|
|
||||||
Class<?> loadClass(String path) throws ClassNotFoundException;
|
Class loadClass(String path) throws ClassNotFoundException;
|
||||||
|
|
||||||
default Class<?> loadClass(byte[] code) {
|
default Class loadClass(byte[] code) {
|
||||||
return this.loadClass(null, code);
|
return this._defineClass(null, code, 0, code.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
default Class<?> loadClass(String name, byte[] code) {
|
default Class loadClass(Path path) throws IOException {
|
||||||
return this._defineClass(name, code, 0, code.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
default Class<?> loadClass(Path path) throws IOException {
|
|
||||||
var code = Files.readAllBytes(path);
|
var code = Files.readAllBytes(path);
|
||||||
return this._defineClass(null, code, 0, code.length);
|
return this._defineClass(null, code, 0, code.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Class<?> findClass(String name) throws ClassNotFoundException;
|
public Class<?> findClass(String name) throws ClassNotFoundException;
|
||||||
|
|
||||||
Class<?> _defineClass(String name, byte[] code, int i, int length) throws ClassFormatError;
|
Class _defineClass(String name, byte[] code, int i, int length) throws ClassFormatError;
|
||||||
}
|
}
|
||||||
|
@@ -1,11 +0,0 @@
|
|||||||
package de.dhbwstuttgart.exceptions;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Eine Runtime Exception, die für den Fall genutzt wird, dass eine Unifikation abgebrochen wird.
|
|
||||||
* Durch das Werfen einer Exception können Abbrüche auch aus Methodenaufrufen heraus
|
|
||||||
* geprüft werden, da zuvor nur ein return X; stattfinden würde.
|
|
||||||
*/
|
|
||||||
public class UnifyCancelException extends RuntimeException {
|
|
||||||
|
|
||||||
}
|
|
@@ -7,20 +7,16 @@ import de.dhbwstuttgart.parser.antlr.Java17Parser;
|
|||||||
import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
||||||
import de.dhbwstuttgart.syntaxtree.SourceFile;
|
import de.dhbwstuttgart.syntaxtree.SourceFile;
|
||||||
|
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import org.antlr.v4.runtime.CharStream;
|
import org.antlr.v4.runtime.CharStream;
|
||||||
import org.antlr.v4.runtime.CharStreams;
|
import org.antlr.v4.runtime.CharStreams;
|
||||||
import org.antlr.v4.runtime.CommonTokenStream;
|
import org.antlr.v4.runtime.CommonTokenStream;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.File;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.io.FileInputStream;
|
||||||
import java.util.ArrayList;
|
import java.io.IOException;
|
||||||
import java.util.List;
|
import java.io.InputStream;
|
||||||
|
|
||||||
public class JavaTXParser {
|
public class JavaTXParser {
|
||||||
|
|
||||||
public static Logger logger = new Logger("Parser");
|
|
||||||
|
|
||||||
public static Java17Parser.SourceFileContext parse(File source) throws IOException, java.lang.ClassNotFoundException {
|
public static Java17Parser.SourceFileContext parse(File source) throws IOException, java.lang.ClassNotFoundException {
|
||||||
InputStream stream = new FileInputStream(source);
|
InputStream stream = new FileInputStream(source);
|
||||||
// DEPRECATED: ANTLRInputStream input = new ANTLRInputStream(stream);
|
// DEPRECATED: ANTLRInputStream input = new ANTLRInputStream(stream);
|
||||||
|
@@ -1,25 +1,4 @@
|
|||||||
package de.dhbwstuttgart.parser;
|
package de.dhbwstuttgart.parser;
|
||||||
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.ISerializableData;
|
public record SourceLoc(String file, int line) {
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.KeyStorage;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialMap;
|
|
||||||
|
|
||||||
public record SourceLoc(String file, int line) implements ISerializableData {
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SerialMap toSerial(KeyStorage keyStorage) {
|
|
||||||
var serialized = new SerialMap();
|
|
||||||
serialized.put("file", file);
|
|
||||||
serialized.put("line", line);
|
|
||||||
return serialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static SourceLoc fromSerial(SerialMap data) {
|
|
||||||
return new SourceLoc(
|
|
||||||
data.getValue("file").getOf(String.class),
|
|
||||||
data.getValue("line").getOf(Integer.class)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,6 @@ package de.dhbwstuttgart.parser.SyntaxTreeGenerator;
|
|||||||
|
|
||||||
import de.dhbwstuttgart.syntaxtree.StatementVisitor;
|
import de.dhbwstuttgart.syntaxtree.StatementVisitor;
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.AssignLeftSide;
|
import de.dhbwstuttgart.syntaxtree.statement.AssignLeftSide;
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.Expression;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.LocalVar;
|
import de.dhbwstuttgart.syntaxtree.statement.LocalVar;
|
||||||
|
|
||||||
public class AssignToLocal extends AssignLeftSide {
|
public class AssignToLocal extends AssignLeftSide {
|
||||||
|
@@ -12,14 +12,12 @@ import de.dhbwstuttgart.syntaxtree.factory.ASTFactory;
|
|||||||
import de.dhbwstuttgart.syntaxtree.factory.UnifyTypeFactory;
|
import de.dhbwstuttgart.syntaxtree.factory.UnifyTypeFactory;
|
||||||
import de.dhbwstuttgart.syntaxtree.type.*;
|
import de.dhbwstuttgart.syntaxtree.type.*;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
import de.dhbwstuttgart.typeinference.unify.PlaceholderRegistry;
|
import de.dhbwstuttgart.typeinference.unify.model.PairOperator;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.*;
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import org.antlr.v4.runtime.Token;
|
|
||||||
|
|
||||||
public class FCGenerator {
|
public class FCGenerator {
|
||||||
/**
|
/**
|
||||||
* Baut die FiniteClosure aus availableClasses.
|
* Baut die FiniteClosure aus availableClasses.
|
||||||
@@ -27,21 +25,16 @@ public class FCGenerator {
|
|||||||
*
|
*
|
||||||
* @param availableClasses - Alle geparsten Klassen
|
* @param availableClasses - Alle geparsten Klassen
|
||||||
*/
|
*/
|
||||||
public static Set<UnifyPair> toUnifyFC(JavaTXCompiler compiler, Collection<ClassOrInterface> availableClasses, ClassLoader classLoader, PlaceholderRegistry placeholderRegistry) throws ClassNotFoundException {
|
public static Set<UnifyPair> toUnifyFC(JavaTXCompiler compiler, Collection<ClassOrInterface> availableClasses, ClassLoader classLoader) throws ClassNotFoundException {
|
||||||
return toFC(
|
return toFC(availableClasses, classLoader).stream().map(t -> UnifyTypeFactory.convert(compiler, t)).collect(Collectors.toSet());
|
||||||
availableClasses,
|
|
||||||
classLoader,
|
|
||||||
placeholderRegistry
|
|
||||||
).stream().map(t -> UnifyTypeFactory.convert(compiler, t, placeholderRegistry))
|
|
||||||
.collect(Collectors.toSet());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Set<Pair> toFC(Collection<ClassOrInterface> availableClasses, ClassLoader classLoader, PlaceholderRegistry placeholderRegistry) throws ClassNotFoundException {
|
public static Set<Pair> toFC(Collection<ClassOrInterface> availableClasses, ClassLoader classLoader) throws ClassNotFoundException {
|
||||||
HashSet<Pair> pairs = new HashSet<>();
|
HashSet<Pair> pairs = new HashSet<>();
|
||||||
//PL 2018-09-18: gtvs vor die for-Schleife gezogen, damit immer die gleichen Typeplaceholder eingesetzt werden.
|
//PL 2018-09-18: gtvs vor die for-Schleife gezogen, damit immer die gleichen Typeplaceholder eingesetzt werden.
|
||||||
HashMap<String, RefTypeOrTPHOrWildcardOrGeneric> gtvs = new HashMap<>();
|
HashMap<String, RefTypeOrTPHOrWildcardOrGeneric> gtvs = new HashMap<>();
|
||||||
for(ClassOrInterface cly : availableClasses){
|
for(ClassOrInterface cly : availableClasses){
|
||||||
List<Pair> newPairs = getSuperTypes(cly, availableClasses, gtvs, classLoader, placeholderRegistry);
|
List<Pair> newPairs = getSuperTypes(cly, availableClasses, gtvs, classLoader);
|
||||||
pairs.addAll(newPairs);
|
pairs.addAll(newPairs);
|
||||||
|
|
||||||
//For all Functional Interfaces FI: FunN$$<... args auf dem Functional Interface ...> <. FI is added to FC
|
//For all Functional Interfaces FI: FunN$$<... args auf dem Functional Interface ...> <. FI is added to FC
|
||||||
@@ -81,13 +74,8 @@ public class FCGenerator {
|
|||||||
* @param forType
|
* @param forType
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
private static List<Pair> getSuperTypes(
|
private static List<Pair> getSuperTypes(ClassOrInterface forType, Collection<ClassOrInterface> availableClasses, ClassLoader classLoader) throws ClassNotFoundException {
|
||||||
ClassOrInterface forType,
|
return getSuperTypes(forType, availableClasses, new HashMap<>(), classLoader);
|
||||||
Collection<ClassOrInterface> availableClasses,
|
|
||||||
ClassLoader classLoader,
|
|
||||||
PlaceholderRegistry placeholderRegistry
|
|
||||||
) throws ClassNotFoundException {
|
|
||||||
return getSuperTypes(forType, availableClasses, new HashMap<>(), classLoader, placeholderRegistry);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -98,13 +86,8 @@ public class FCGenerator {
|
|||||||
* @return
|
* @return
|
||||||
* @throws ClassNotFoundException
|
* @throws ClassNotFoundException
|
||||||
*/
|
*/
|
||||||
private static List<Pair> getSuperTypes(
|
private static List<Pair> getSuperTypes(ClassOrInterface forType, Collection<ClassOrInterface> availableClasses,
|
||||||
ClassOrInterface forType,
|
HashMap<String, RefTypeOrTPHOrWildcardOrGeneric> gtvs, ClassLoader classLoader) throws ClassNotFoundException {
|
||||||
Collection<ClassOrInterface> availableClasses,
|
|
||||||
HashMap<String, RefTypeOrTPHOrWildcardOrGeneric> gtvs,
|
|
||||||
ClassLoader classLoader,
|
|
||||||
PlaceholderRegistry placeholderRegistry
|
|
||||||
) throws ClassNotFoundException {
|
|
||||||
List<RefTypeOrTPHOrWildcardOrGeneric> params = new ArrayList<>();
|
List<RefTypeOrTPHOrWildcardOrGeneric> params = new ArrayList<>();
|
||||||
//Die GTVs, die in forType hinzukommen:
|
//Die GTVs, die in forType hinzukommen:
|
||||||
HashMap<String, RefTypeOrTPHOrWildcardOrGeneric> newGTVs = new HashMap<>();
|
HashMap<String, RefTypeOrTPHOrWildcardOrGeneric> newGTVs = new HashMap<>();
|
||||||
@@ -163,7 +146,7 @@ public class FCGenerator {
|
|||||||
if(superClass.getClassName().equals(ASTFactory.createObjectClass().getClassName())){
|
if(superClass.getClassName().equals(ASTFactory.createObjectClass().getClassName())){
|
||||||
superTypes = Arrays.asList(new Pair(ASTFactory.createObjectType(), ASTFactory.createObjectType(), PairOperator.SMALLER));
|
superTypes = Arrays.asList(new Pair(ASTFactory.createObjectType(), ASTFactory.createObjectType(), PairOperator.SMALLER));
|
||||||
}else{
|
}else{
|
||||||
superTypes = getSuperTypes(superClass, availableClasses, newGTVs, classLoader, placeholderRegistry);
|
superTypes = getSuperTypes(superClass, availableClasses, newGTVs, classLoader);
|
||||||
}
|
}
|
||||||
|
|
||||||
retList.add(ret);
|
retList.add(ret);
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
package de.dhbwstuttgart.parser.SyntaxTreeGenerator;
|
package de.dhbwstuttgart.parser.SyntaxTreeGenerator;
|
||||||
|
|
||||||
import de.dhbwstuttgart.parser.JavaTXParser;
|
|
||||||
import java.lang.reflect.Modifier;
|
import java.lang.reflect.Modifier;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
@@ -260,7 +259,7 @@ public class StatementGenerator {
|
|||||||
ret.setStatement();
|
ret.setStatement();
|
||||||
return ret;
|
return ret;
|
||||||
default:
|
default:
|
||||||
JavaTXParser.logger.info(stmt.getClass());
|
System.out.println(stmt.getClass());
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1100,9 +1099,9 @@ public class StatementGenerator {
|
|||||||
block = lambdaGenerator.convert(expression.lambdaBody().block(), true);
|
block = lambdaGenerator.convert(expression.lambdaBody().block(), true);
|
||||||
}
|
}
|
||||||
List<RefTypeOrTPHOrWildcardOrGeneric> funNParams = new ArrayList<>();
|
List<RefTypeOrTPHOrWildcardOrGeneric> funNParams = new ArrayList<>();
|
||||||
funNParams.add(TypePlaceholder.fresh(expression.getStart(), -1, false));// ret-Type
|
funNParams.add(TypePlaceholder.fresh(expression.getStart()));// ret-Type
|
||||||
params.getFormalparalist().forEach(formalParameter -> // Für jeden Parameter einen TPH anfügen:
|
params.getFormalparalist().forEach(formalParameter -> // Für jeden Parameter einen TPH anfügen:
|
||||||
funNParams.add(TypePlaceholder.fresh(expression.getStart(), 1, false)));
|
funNParams.add(TypePlaceholder.fresh(expression.getStart())));
|
||||||
RefTypeOrTPHOrWildcardOrGeneric lambdaType = TypePlaceholder.fresh(expression.getStart());
|
RefTypeOrTPHOrWildcardOrGeneric lambdaType = TypePlaceholder.fresh(expression.getStart());
|
||||||
// RefType lambdaType = new
|
// RefType lambdaType = new
|
||||||
// RefType(reg.getName("Fun"+params.getFormalparalist().size()),
|
// RefType(reg.getName("Fun"+params.getFormalparalist().size()),
|
||||||
|
@@ -1,9 +1,7 @@
|
|||||||
package de.dhbwstuttgart.parser.SyntaxTreeGenerator;
|
package de.dhbwstuttgart.parser.SyntaxTreeGenerator;
|
||||||
|
|
||||||
import de.dhbwstuttgart.exceptions.NotImplementedException;
|
|
||||||
import de.dhbwstuttgart.parser.NullToken;
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
import de.dhbwstuttgart.syntaxtree.AbstractASTWalker;
|
import de.dhbwstuttgart.syntaxtree.AbstractASTWalker;
|
||||||
import de.dhbwstuttgart.syntaxtree.Constructor;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.*;
|
import de.dhbwstuttgart.syntaxtree.statement.*;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@@ -14,12 +14,7 @@ import de.dhbwstuttgart.parser.scope.JavaClassRegistry;
|
|||||||
import de.dhbwstuttgart.syntaxtree.GenericDeclarationList;
|
import de.dhbwstuttgart.syntaxtree.GenericDeclarationList;
|
||||||
import de.dhbwstuttgart.syntaxtree.GenericTypeVar;
|
import de.dhbwstuttgart.syntaxtree.GenericTypeVar;
|
||||||
import de.dhbwstuttgart.syntaxtree.factory.ASTFactory;
|
import de.dhbwstuttgart.syntaxtree.factory.ASTFactory;
|
||||||
import de.dhbwstuttgart.syntaxtree.type.ExtendsWildcardType;
|
import de.dhbwstuttgart.syntaxtree.type.*;
|
||||||
import de.dhbwstuttgart.syntaxtree.type.GenericRefType;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefType;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.SuperWildcardType;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder;
|
|
||||||
import org.antlr.v4.runtime.Token;
|
import org.antlr.v4.runtime.Token;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -74,7 +69,7 @@ public class TypeGenerator {
|
|||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
} else if (!typeContext.LBRACK().isEmpty()) { // ArrayType über eckige Klammer prüfen
|
} else if (!typeContext.LBRACK().isEmpty()) { // ArrayType über eckige Klammer prüfen
|
||||||
// JavaTXParser.logger.info(unannTypeContext.getText());
|
// System.out.println(unannTypeContext.getText());
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
@@ -2,12 +2,15 @@ package de.dhbwstuttgart.parser.scope;
|
|||||||
|
|
||||||
import de.dhbwstuttgart.exceptions.NotImplementedException;
|
import de.dhbwstuttgart.exceptions.NotImplementedException;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Speichert die Klassen f<>r einen bestimmten Projektscope
|
* Speichert die Klassen f<>r einen bestimmten Projektscope
|
||||||
*/
|
*/
|
||||||
public class JavaClassRegistry{
|
public class JavaClassRegistry {
|
||||||
final Map<JavaClassName, Integer> existingClasses = new HashMap<>();
|
final Map<JavaClassName, Integer> existingClasses = new HashMap<>();
|
||||||
|
|
||||||
public JavaClassRegistry(Map<String, Integer> initialNames) {
|
public JavaClassRegistry(Map<String, Integer> initialNames) {
|
||||||
@@ -22,10 +25,6 @@ public class JavaClassRegistry{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public Set<JavaClassName> getAllClassNames(){
|
|
||||||
return existingClasses.keySet();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addName(String className, int numberOfGenerics) {
|
public void addName(String className, int numberOfGenerics) {
|
||||||
existingClasses.put(new JavaClassName(className), numberOfGenerics);
|
existingClasses.put(new JavaClassName(className), numberOfGenerics);
|
||||||
}
|
}
|
||||||
|
@@ -1,41 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import java.time.LocalDateTime;
|
|
||||||
import java.time.format.DateTimeFormatter;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
public class ServerTaskLogger extends Logger {
|
|
||||||
|
|
||||||
private final WebSocket webSocket;
|
|
||||||
private final SocketServer socketServer;
|
|
||||||
private final LogLevel customLogLevel;
|
|
||||||
|
|
||||||
public ServerTaskLogger(WebSocket webSocket, SocketServer socketServer, LogLevel customLogLevel) {
|
|
||||||
this.webSocket = webSocket;
|
|
||||||
this.socketServer = socketServer;
|
|
||||||
this.customLogLevel = customLogLevel;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isLogLevelActive(LogLevel logLevel) {
|
|
||||||
return logLevel.isHigherOrEqualTo(customLogLevel);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void print(String s, LogLevel logLevel) {
|
|
||||||
String coloredPrefix = this.getPrefix(logLevel);
|
|
||||||
if (logLevel.isHigherOrEqualTo(LogLevel.ERROR)) {
|
|
||||||
socketServer.sendError(webSocket, coloredPrefix + s, false);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
socketServer.sendMessage(webSocket, coloredPrefix + s);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void write(String s) {
|
|
||||||
// under no circumstances write anything to a file
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,25 +1,20 @@
|
|||||||
package de.dhbwstuttgart.server;
|
package de.dhbwstuttgart.server;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
import de.dhbwstuttgart.core.ConsoleInterface;
|
import de.dhbwstuttgart.server.packet.ErrorPacket;
|
||||||
import de.dhbwstuttgart.server.packet.IClientToServerPacket;
|
|
||||||
import de.dhbwstuttgart.server.packet.IPacket;
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
import de.dhbwstuttgart.server.packet.IServerToClientPacket;
|
import de.dhbwstuttgart.server.packet.InvalidPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.MessagePacket;
|
||||||
import de.dhbwstuttgart.server.packet.PacketContainer;
|
import de.dhbwstuttgart.server.packet.PacketContainer;
|
||||||
import de.dhbwstuttgart.server.packet.UnifyRequestPacket;
|
import de.dhbwstuttgart.server.packet.UnifyRequestPacket;
|
||||||
import de.dhbwstuttgart.server.packet.UnifyResultPacket;
|
import de.dhbwstuttgart.server.packet.UnifyResultPacket;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyContext;
|
import de.dhbwstuttgart.typeinference.unify.interfaces.IFiniteClosure;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.FiniteClosure;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
|
||||||
import java.util.concurrent.CompletableFuture;
|
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
import java.util.regex.Matcher;
|
import java.util.regex.Matcher;
|
||||||
import java.util.regex.Pattern;
|
import java.util.regex.Pattern;
|
||||||
@@ -33,34 +28,35 @@ import org.java_websocket.handshake.ServerHandshake;
|
|||||||
*/
|
*/
|
||||||
public class SocketClient extends WebSocketClient {
|
public class SocketClient extends WebSocketClient {
|
||||||
|
|
||||||
public static Logger logger = new Logger("SocketClient");
|
// use a latch to wait until the connection is closed by the remote host
|
||||||
|
private final CountDownLatch closeLatch = new CountDownLatch(1);
|
||||||
|
// temporarily: The received unify result packet
|
||||||
|
private UnifyResultPacket unifyResultPacket = null;
|
||||||
|
|
||||||
/**
|
public SocketClient(String url) {
|
||||||
* The singleton object
|
super(URI.create(url));
|
||||||
*/
|
// make sure, the url is in a valid format
|
||||||
private static SocketClient socketClient = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* List of futures that are still waiting to be fulfilled
|
|
||||||
*/
|
|
||||||
private final Map<String, SocketFuture<?>> responseFutures = new HashMap<>();
|
|
||||||
|
|
||||||
private SocketClient(String url) {
|
|
||||||
super(
|
|
||||||
URI.create(url), // target url
|
|
||||||
//SocketServer.perMessageDeflateDraft, // enable compression
|
|
||||||
Map.of( // headers
|
|
||||||
"packetProtocolVersion", SocketServer.packetProtocolVersion
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
// make sure the url is in a valid format
|
|
||||||
final String regex = "^wss?://(\\w+(\\.\\w+)?)*:(\\d+)$";
|
final String regex = "^wss?://(\\w+(\\.\\w+)?)*:(\\d+)$";
|
||||||
final Matcher matcher = Pattern.compile(regex).matcher(url);
|
final Matcher matcher = Pattern.compile(regex).matcher(url);
|
||||||
if (!matcher.find()) {
|
if (!matcher.find()) {
|
||||||
throw new RuntimeException("Provided string \"" + url + "\" is not a valid server URL! Use pattern ws(s?)://<host.name>:<port>");
|
throw new RuntimeException("Provided string \"" + url + "\" is not a valid server URL! Use pattern ws(s?)://<host.name>:<port>");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public SocketClient(String host, int port, boolean secure) {
|
||||||
|
super(URI.create(String.format("%s://%s:%d/", secure ? "wss" : "ws", host, port)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The main method for connecting, requesting and waiting for the server to unify.
|
||||||
|
* This is synchronized to prevent multiple webSockets connections at the moment, but it is not called from any
|
||||||
|
* thread except the main thread right now and is not necessary at all, probably. Maybe remove it later
|
||||||
|
*/
|
||||||
|
synchronized public List<ResultSet> execute(
|
||||||
|
IFiniteClosure finiteClosure,
|
||||||
|
ConstraintSet<Pair> constraints,
|
||||||
|
ConstraintSet<UnifyPair> unifyConstraints
|
||||||
|
) {
|
||||||
try {
|
try {
|
||||||
// wait for the connection to be set up
|
// wait for the connection to be set up
|
||||||
this.connectBlocking();
|
this.connectBlocking();
|
||||||
@@ -68,135 +64,80 @@ public class SocketClient extends WebSocketClient {
|
|||||||
if (this.getReadyState() != ReadyState.OPEN) {
|
if (this.getReadyState() != ReadyState.OPEN) {
|
||||||
throw new RuntimeException("WebSocket Client could not connect to remote host at " + this.uri);
|
throw new RuntimeException("WebSocket Client could not connect to remote host at " + this.uri);
|
||||||
}
|
}
|
||||||
} catch (InterruptedException exception) {
|
|
||||||
throw new RuntimeException(exception);
|
|
||||||
}
|
|
||||||
|
|
||||||
// add a shutdown hook to close the connection when the process ends or is stopped by a SIGINT signal
|
// send the unify task request
|
||||||
Runtime.getRuntime().addShutdownHook(new Thread(this::close));
|
UnifyRequestPacket packet = UnifyRequestPacket.create(finiteClosure, constraints, unifyConstraints);
|
||||||
}
|
|
||||||
|
|
||||||
private SocketClient(String host, int port, boolean secure) throws InterruptedException {
|
|
||||||
this(String.format("%s://%s:%d/", secure ? "wss" : "ws", host, port));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Singleton access method, creates one if none is available
|
|
||||||
*
|
|
||||||
* @return The one and only socketClient
|
|
||||||
*/
|
|
||||||
private static SocketClient initializeClient() {
|
|
||||||
if (socketClient == null) {
|
|
||||||
socketClient = new SocketClient(ConsoleInterface.unifyServerUrl.get());
|
|
||||||
}
|
|
||||||
return socketClient;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Send a packet to the server (connection will be created, if none is found) and return a future
|
|
||||||
* for the response packet
|
|
||||||
*/
|
|
||||||
synchronized public static <T extends IServerToClientPacket> SocketFuture<T> execute(IClientToServerPacket<T> packet) {
|
|
||||||
SocketClient client = initializeClient();
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Create a future that will be associated with the packet and eventually completed
|
|
||||||
*/
|
|
||||||
SocketFuture<T> future = packet.getFuture();
|
|
||||||
if (!future.isDone()) {
|
|
||||||
client.responseFutures.put(future.futureId, future);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Establish connection, if not already done.
|
|
||||||
* Serialize the packet and send it to the server.
|
|
||||||
* Return the future to be handled by the caller.
|
|
||||||
*/
|
|
||||||
try {
|
|
||||||
String json = PacketContainer.serialize(packet);
|
String json = PacketContainer.serialize(packet);
|
||||||
client.send(json);
|
this.send(json);
|
||||||
} catch (Exception exception) {
|
|
||||||
logger.exception(exception);
|
// block the thread, until the connection is closed by the remote host (usually after sending the results)
|
||||||
throw new RuntimeException("Exception occurred in server connection: ", exception);
|
this.waitUntilClosed();
|
||||||
|
// wait for the connection to fully close
|
||||||
|
this.closeBlocking();
|
||||||
|
} catch (InterruptedException exception) {
|
||||||
|
System.err.println("Interrupted: " + exception);
|
||||||
|
this.notifyAll();
|
||||||
|
throw new RuntimeException("Remote unification failed: " + exception);
|
||||||
|
} catch (JsonProcessingException exception) {
|
||||||
|
System.err.println("JSON processing exception: " + exception);
|
||||||
|
this.notifyAll();
|
||||||
|
throw new RuntimeException("Remote unification failed: " + exception);
|
||||||
}
|
}
|
||||||
|
|
||||||
return future;
|
// detect error cases, in which no error was thrown, but also no result was sent back from the server
|
||||||
|
if (this.unifyResultPacket == null) {
|
||||||
|
throw new RuntimeException("Did not receive server response but closed connection already");
|
||||||
|
}
|
||||||
|
|
||||||
|
return unifyResultPacket.getResultSet();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shortcut for waiting and retrieving the response immediately
|
* Specific client-side implementations to handle incomming packets
|
||||||
*
|
|
||||||
* @param packet The packet to send
|
|
||||||
* @param <T> The type of response packet to await
|
|
||||||
* @return The response packet, once it is received
|
|
||||||
*/
|
|
||||||
public static <T extends IServerToClientPacket> T executeAndGet(IClientToServerPacket<T> packet) {
|
|
||||||
return SocketClient.execute(packet).get();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Specific client-side implementations to handle incoming packets
|
|
||||||
*/
|
*/
|
||||||
protected void handleReceivedPacket(IPacket packet) {
|
protected void handleReceivedPacket(IPacket packet) {
|
||||||
if (!(packet instanceof IServerToClientPacket serverToClientPacket)) {
|
if (packet instanceof InvalidPacket) {
|
||||||
System.err.println("Received package of invalid type + " + packet.getClass().getName());
|
System.err.println("[socket] " + ((InvalidPacket) packet).error);
|
||||||
this.close();
|
} else if (packet instanceof MessagePacket) {
|
||||||
return;
|
System.out.println("[socket] " + ((MessagePacket) packet).message);
|
||||||
}
|
} else if (packet instanceof ErrorPacket) {
|
||||||
|
System.err.println("[socket] " + ((ErrorPacket) packet).error);
|
||||||
serverToClientPacket.onHandle(this.getConnection(), this);
|
} else if (packet instanceof UnifyResultPacket) {
|
||||||
}
|
System.out.println("[socket] Received unify result");
|
||||||
|
unifyResultPacket = (UnifyResultPacket) packet;
|
||||||
/**
|
|
||||||
* Complete a registered future, so it can be handled by whoever executed the creator task
|
|
||||||
*
|
|
||||||
* @param id The associated id for this future
|
|
||||||
* @param trigger The object triggering the completion
|
|
||||||
*/
|
|
||||||
public void completeResponseFuture(String id, IServerToClientPacket trigger) {
|
|
||||||
SocketFuture<?> future = this.responseFutures.remove(id);
|
|
||||||
if (future == null) return;
|
|
||||||
if (!future.accept(trigger)) {
|
|
||||||
throw new RuntimeException("Packet " + trigger.getClass().getName() + " tried to complete future, but was not allowed to");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void closeIfOpen() {
|
|
||||||
if (socketClient != null && socketClient.isOpen()) {
|
|
||||||
socketClient.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onOpen(ServerHandshake handshakedata) {
|
public void onOpen(ServerHandshake handshakedata) {
|
||||||
logger.success("Connected to server with status " + handshakedata.getHttpStatus());
|
System.out.println("Connected to server with status " + handshakedata.getHttpStatus());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onMessage(String message) {
|
public void onMessage(String message) {
|
||||||
// logger.info("received: " + message);
|
// System.out.println("received: " + message);
|
||||||
IPacket packet = PacketContainer.deserialize(message);
|
IPacket packet = PacketContainer.deserialize(message);
|
||||||
this.handleReceivedPacket(packet);
|
this.handleReceivedPacket(packet);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onClose(int code, String reason, boolean remote) {
|
public void onClose(int code, String reason, boolean remote) {
|
||||||
logger.info(
|
System.out.println(
|
||||||
"Disconnected from server " +
|
"Disconnected from server " +
|
||||||
"with code " + code + " " +
|
"with code " + code + " " +
|
||||||
(reason.isEmpty() ? "" : "and reason " + reason + " ") +
|
(reason.isEmpty() ? "" : "and reason " + reason + " ") +
|
||||||
"(closed by remote: " + remote + ")"
|
"(closed by remote: " + remote + ")"
|
||||||
);
|
);
|
||||||
|
this.closeLatch.countDown();
|
||||||
if (!this.responseFutures.isEmpty()) {
|
|
||||||
throw new RuntimeException("Server closed before all required tasks were answered");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onError(Exception e) {
|
public void onError(Exception e) {
|
||||||
logger.exception(e);
|
System.out.println("Error: " + e.getMessage());
|
||||||
throw new RuntimeException(e);
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void waitUntilClosed() throws InterruptedException {
|
||||||
|
closeLatch.await();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
17
src/main/java/de/dhbwstuttgart/server/SocketData.java
Normal file
17
src/main/java/de/dhbwstuttgart/server/SocketData.java
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
package de.dhbwstuttgart.server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The data that is associated server-side with any connected client.
|
||||||
|
* This makes it possible to store information that can be mapped to any existing connection.
|
||||||
|
*/
|
||||||
|
public class SocketData {
|
||||||
|
|
||||||
|
public final String id;
|
||||||
|
// used for the timeout of 10 seconds, until an unused open connection is automatically closed
|
||||||
|
public boolean hasSentTask = false;
|
||||||
|
|
||||||
|
public SocketData(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -1,48 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.server.packet.IServerToClientPacket;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.UUID;
|
|
||||||
import java.util.concurrent.CompletableFuture;
|
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
|
|
||||||
public class SocketFuture<T extends IServerToClientPacket> extends CompletableFuture<T> {
|
|
||||||
|
|
||||||
public final String futureId = UUID.randomUUID().toString();
|
|
||||||
|
|
||||||
public final List<Class<T>> allowedTriggers;
|
|
||||||
|
|
||||||
public SocketFuture(List<Class<T>> allowedTriggers) {
|
|
||||||
this.allowedTriggers = allowedTriggers;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean accept(IServerToClientPacket trigger) {
|
|
||||||
if (this.allowedTriggers.contains(trigger.getClass())) {
|
|
||||||
this.complete((T)trigger);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public T get() {
|
|
||||||
try {
|
|
||||||
return super.get();
|
|
||||||
}
|
|
||||||
catch (InterruptedException | ExecutionException exception) {
|
|
||||||
throw new RuntimeException(exception);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Special case where the future is immediately fulfilled without a response package similar to
|
|
||||||
* <code>CompletableFuture.completedFuture()</code> but without a value
|
|
||||||
*/
|
|
||||||
public static <R extends IServerToClientPacket> SocketFuture<R> completedFuture() {
|
|
||||||
SocketFuture<R> dummyFuture = new SocketFuture<>(new ArrayList<>(0));
|
|
||||||
dummyFuture.complete(null);
|
|
||||||
return dummyFuture;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,119 +1,65 @@
|
|||||||
package de.dhbwstuttgart.server;
|
package de.dhbwstuttgart.server;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
||||||
import de.dhbwstuttgart.server.packet.ErrorPacket;
|
|
||||||
import de.dhbwstuttgart.server.packet.IClientToServerPacket;
|
|
||||||
import de.dhbwstuttgart.server.packet.IPacket;
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
import de.dhbwstuttgart.server.packet.MessagePacket;
|
import de.dhbwstuttgart.server.packet.MessagePacket;
|
||||||
import de.dhbwstuttgart.server.packet.PacketContainer;
|
import de.dhbwstuttgart.server.packet.PacketContainer;
|
||||||
import de.dhbwstuttgart.util.Logger;
|
import de.dhbwstuttgart.server.packet.UnifyRequestPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.UnifyResultPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.TypeInference;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.PlaceholderType;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.util.Collections;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.concurrent.CompletableFuture;
|
|
||||||
import java.util.concurrent.Executor;
|
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
import java.util.concurrent.SynchronousQueue;
|
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
|
||||||
import org.java_websocket.WebSocket;
|
import org.java_websocket.WebSocket;
|
||||||
import org.java_websocket.drafts.Draft;
|
|
||||||
import org.java_websocket.drafts.Draft_6455;
|
|
||||||
import org.java_websocket.extensions.permessage_deflate.PerMessageDeflateExtension;
|
|
||||||
import org.java_websocket.handshake.ClientHandshake;
|
import org.java_websocket.handshake.ClientHandshake;
|
||||||
import org.java_websocket.server.WebSocketServer;
|
import org.java_websocket.server.WebSocketServer;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
public class SocketServer extends WebSocketServer {
|
public class SocketServer extends WebSocketServer {
|
||||||
|
|
||||||
public static Logger logger = new Logger("SocketServer");
|
private static final Logger log = LoggerFactory.getLogger(SocketServer.class);
|
||||||
public static final int maxTasksPerSession = 100;
|
|
||||||
private static boolean serverRunning = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Increase this every time a breaking change to the server communication is done.
|
|
||||||
* This will prevent errors when the server version and client version do not match.
|
|
||||||
*/
|
|
||||||
public static final String packetProtocolVersion = "1";
|
|
||||||
|
|
||||||
// create an executor for tasks that will always keep at least one task around
|
|
||||||
private final ThreadPoolExecutor taskExecutor = new ThreadPoolExecutor(1, Integer.MAX_VALUE,60L, TimeUnit.SECONDS, new SynchronousQueue<>());
|
|
||||||
// create an executor for scheduling timeouts
|
|
||||||
private final ScheduledExecutorService timeoutExecutor = Executors.newSingleThreadScheduledExecutor();
|
|
||||||
|
|
||||||
public SocketServer(int port) {
|
public SocketServer(int port) {
|
||||||
super(new InetSocketAddress(port));
|
super(new InetSocketAddress(port));
|
||||||
this.setConnectionLostTimeout(30);
|
|
||||||
|
|
||||||
serverRunning = true;
|
|
||||||
// add a shutdown hook to close all connections when the process ends or is stopped by a SIGINT signal
|
|
||||||
Runtime.getRuntime().addShutdownHook(new Thread(this::onShutdown));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean isServerRunning() {
|
|
||||||
return serverRunning;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onShutdown() {
|
|
||||||
serverRunning = false;
|
|
||||||
try {
|
|
||||||
for (var webSocket : this.getConnections()) {
|
|
||||||
this.sendError(webSocket, "Sorry, i am shutting down. You are now on your own, good Luck!", true);
|
|
||||||
webSocket.close();
|
|
||||||
}
|
|
||||||
this.stop();
|
|
||||||
taskExecutor.shutdown();
|
|
||||||
timeoutExecutor.shutdown();
|
|
||||||
} catch (InterruptedException exception) {
|
|
||||||
// we are shutting down anyway
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onOpen(WebSocket webSocket, ClientHandshake clientHandshake) {
|
public void onOpen(WebSocket webSocket, ClientHandshake clientHandshake) {
|
||||||
String ppv = clientHandshake.getFieldValue("packetProtocolVersion");
|
System.out.println("New connection: " + webSocket.getResourceDescriptor());
|
||||||
if (!ppv.equals(packetProtocolVersion)) {
|
webSocket.setAttachment(new SocketData(UUID.randomUUID().toString()));
|
||||||
this.sendError(webSocket,
|
|
||||||
"Mismatch in packet protocol version! Client (you): \"" + ppv + "\" and Server (me): \"" + packetProtocolVersion + "\"",
|
|
||||||
true
|
|
||||||
);
|
|
||||||
webSocket.close(1);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
SocketData socketData = new SocketData(webSocket);
|
|
||||||
logger.info("New connection: " + socketData.id + " (with ppv " + ppv + ")");
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
sendMessage(webSocket, "Welcome to the server!");
|
sendMessage(webSocket, "Welcome to the server!");
|
||||||
|
|
||||||
// wait 10 seconds for the client to send a task and close the connection if nothing has been received until then
|
// wait 10 seconds for the client to send a task and close the connection, if nothing has been received until then
|
||||||
final int secondsUntilTimeout = 10;
|
ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
|
||||||
timeoutExecutor.schedule(() -> {
|
Runnable task = () -> {
|
||||||
if (webSocket.<SocketData>getAttachment().totalTasks.get() > 0 || !webSocket.isOpen()) {
|
if (webSocket.<SocketData>getAttachment().hasSentTask || !webSocket.isOpen()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sendMessage(webSocket, "No task received after " + secondsUntilTimeout + " seconds. Closing connection...");
|
sendMessage(webSocket, "No task received after 10 seconds. Closing connection...");
|
||||||
webSocket.close();
|
webSocket.close();
|
||||||
},
|
};
|
||||||
secondsUntilTimeout,
|
executor.schedule(task, 10, TimeUnit.SECONDS);
|
||||||
TimeUnit.SECONDS
|
executor.shutdown();
|
||||||
);
|
|
||||||
|
|
||||||
// and finally, when your program wants to exit
|
// and finally, when your program wants to exit
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logger.exception(e);
|
log.error("e: ", e);
|
||||||
webSocket.close(1, e.getMessage());
|
webSocket.close(1, e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onClose(WebSocket webSocket, int code, String reason, boolean remote) {
|
public void onClose(WebSocket webSocket, int code, String reason, boolean remote) {
|
||||||
SocketData socketData = webSocket.getAttachment();
|
System.out.println("Connection closed: " + webSocket.getResourceDescriptor());
|
||||||
logger.info("Connection closed: " + socketData.id);
|
System.out.println(
|
||||||
logger.info(
|
"Disconnected client " + webSocket.getResourceDescriptor() + " " +
|
||||||
"Disconnected client " + socketData.id + " " +
|
|
||||||
"with code " + code + " " +
|
"with code " + code + " " +
|
||||||
(reason.isEmpty() ? "" : "and reason " + reason + " ") +
|
(reason.isEmpty() ? "" : "and reason " + reason + " ") +
|
||||||
"(closed by client: " + remote + ")"
|
"(closed by client: " + remote + ")"
|
||||||
@@ -123,28 +69,19 @@ public class SocketServer extends WebSocketServer {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onMessage(WebSocket webSocket, String s) {
|
public void onMessage(WebSocket webSocket, String s) {
|
||||||
// logger.info("Received: " + s.substring(0, 50));
|
// System.out.println("Received: " + s.substring(0, 50));
|
||||||
IPacket reconstructedPacket = PacketContainer.deserialize(s);
|
IPacket reconstructedPacket = PacketContainer.deserialize(s);
|
||||||
try {
|
this.onPacketReceived(webSocket, reconstructedPacket);
|
||||||
this.onPacketReceived(webSocket, reconstructedPacket);
|
|
||||||
} catch (JsonProcessingException e) {
|
|
||||||
logger.exception(e);
|
|
||||||
this.log(webSocket, "Error on processing incoming package: " + e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onError(WebSocket webSocket, Exception e) {
|
public void onError(WebSocket webSocket, Exception e) {
|
||||||
if (webSocket != null) {
|
webSocket.close();
|
||||||
log(webSocket, e.getMessage());
|
|
||||||
webSocket.close();
|
|
||||||
}
|
|
||||||
logger.exception(e);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onStart() {
|
public void onStart() {
|
||||||
logger.success("Websocket server started on port " + this.getPort());
|
System.out.println("Websocket server started");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -152,84 +89,50 @@ public class SocketServer extends WebSocketServer {
|
|||||||
*/
|
*/
|
||||||
public void sendMessage(WebSocket webSocket, String text) {
|
public void sendMessage(WebSocket webSocket, String text) {
|
||||||
try {
|
try {
|
||||||
MessagePacket message = MessagePacket.create(text);
|
MessagePacket message = new MessagePacket();
|
||||||
|
message.message = text;
|
||||||
webSocket.send(PacketContainer.serialize(message));
|
webSocket.send(PacketContainer.serialize(message));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
System.err.println("Failed to send message: " + text);
|
System.err.println("Failed to send message: " + text);
|
||||||
logger.exception(e);
|
System.err.println(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A shorthand method for sending error messages to the client
|
* The server-side implementation on how to handle certain packets when received
|
||||||
*/
|
*/
|
||||||
public void sendError(WebSocket webSocket, String text, boolean isFatal) {
|
private void onPacketReceived(WebSocket webSocket, IPacket packet) {
|
||||||
try {
|
if (packet instanceof UnifyRequestPacket unifyRequestPacket) {
|
||||||
ErrorPacket error = ErrorPacket.create(text, isFatal);
|
|
||||||
webSocket.send(PacketContainer.serialize(error));
|
|
||||||
} catch (Exception e) {
|
|
||||||
logger.exception(e);
|
|
||||||
log(webSocket, "Failed to send error: " + text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
// TODO: this static property will be a problem once we send more than one request per server and
|
||||||
* The server-side implementation on how to handle certain packets when received
|
// should be replaced by a dynamic object property
|
||||||
*/
|
PlaceholderType.EXISTING_PLACEHOLDERS.clear();
|
||||||
private void onPacketReceived(WebSocket webSocket, IPacket packet) throws JsonProcessingException {
|
sendMessage(webSocket, "You requested a unify! Please wait until I calculated everything...");
|
||||||
SocketData socketData = webSocket.getAttachment();
|
System.out.println("Client " + webSocket.<SocketData>getAttachment().id + " requested a unification. Starting now...");
|
||||||
|
webSocket.<SocketData>getAttachment().hasSentTask = true;
|
||||||
|
|
||||||
// limit the number of tasks per connection
|
try {
|
||||||
if (socketData.totalTasks.get() >= maxTasksPerSession) {
|
// start the unification algorithm from the received data
|
||||||
sendError(webSocket, "Exceeded the maximum amount of " + maxTasksPerSession + " tasks per session", true);
|
List<ResultSet> result = TypeInference.executeWithoutContext(
|
||||||
webSocket.close();
|
unifyRequestPacket.retrieveFiniteClosure(),
|
||||||
return;
|
unifyRequestPacket.retrieveConstraints(),
|
||||||
}
|
unifyRequestPacket.retrieveUnifyConstraints()
|
||||||
|
);
|
||||||
|
System.out.println("Finished unification for client " + webSocket.<SocketData>getAttachment().id);
|
||||||
|
sendMessage(webSocket, "Unification finished. Found " + result.size() + " result sets");
|
||||||
|
|
||||||
// only allow packets that are meant to be handled by the server
|
if (webSocket.isOpen()) {
|
||||||
if (!(packet instanceof IClientToServerPacket<?> clientToServerPacket)) {
|
UnifyResultPacket resultPacket = UnifyResultPacket.create(result);
|
||||||
sendMessage(webSocket, "The package of type " + packet.getClass().getName() + " is not handled by the server!");
|
webSocket.send(PacketContainer.serialize(resultPacket));
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// update the socket data
|
|
||||||
socketData.unhandledTasks.incrementAndGet();
|
|
||||||
socketData.totalTasks.incrementAndGet();
|
|
||||||
|
|
||||||
// add the packet to the queue so it can be started by the worker
|
|
||||||
CompletableFuture.runAsync(() -> {
|
|
||||||
clientToServerPacket.onHandle(webSocket, this);
|
|
||||||
int remainingUnhandledTasks = socketData.unhandledTasks.decrementAndGet();
|
|
||||||
|
|
||||||
if (socketData.closeIfNoTasksLeft) {
|
|
||||||
// if the websocket has 0 unhandled Tasks, close the connection
|
|
||||||
if (remainingUnhandledTasks <= 0) {
|
|
||||||
sendMessage(webSocket, "All requested tasks finished! Closing connection...");
|
|
||||||
webSocket.close();
|
|
||||||
}
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.err.println(e);
|
||||||
|
log.error("e: ", e);
|
||||||
}
|
}
|
||||||
}, taskExecutor);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void log(WebSocket webSocket, String msg) {
|
webSocket.close();
|
||||||
String socketId = (webSocket == null) ? "???" : webSocket.<SocketData>getAttachment().id;
|
} else {
|
||||||
logger.info("[" + socketId + "] " + msg);
|
sendMessage(webSocket, "The package of type " + packet.getClass().getName() + " is not handled by the server!");
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The data that is associated server-side with any connected client.
|
|
||||||
* This makes it possible to store information that can be mapped to any existing connection.
|
|
||||||
*/
|
|
||||||
public static class SocketData {
|
|
||||||
|
|
||||||
public final String id;
|
|
||||||
public final AtomicInteger unhandledTasks = new AtomicInteger(0);
|
|
||||||
public final AtomicInteger totalTasks = new AtomicInteger(0);
|
|
||||||
public boolean closeIfNoTasksLeft = false;
|
|
||||||
|
|
||||||
public SocketData(WebSocket webSocket) {
|
|
||||||
this.id = UUID.randomUUID().toString();
|
|
||||||
webSocket.setAttachment(this);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,35 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.ISerialNode;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialList;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialMap;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialUUID;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialValue;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
public class DebugPacket implements IClientToServerPacket.Void, IServerToClientPacket {
|
|
||||||
|
|
||||||
public SerialUUID a1;
|
|
||||||
public SerialUUID a2;
|
|
||||||
public SerialMap b1;
|
|
||||||
public SerialMap b2;
|
|
||||||
public SerialList<? extends ISerialNode> c1;
|
|
||||||
public SerialList<? extends ISerialNode> c2;
|
|
||||||
public SerialValue<?> d1;
|
|
||||||
public SerialValue<?> d2;
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketClient socketClient) {}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketServer socketServer) {}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SocketFuture<IServerToClientPacket> getFuture() {
|
|
||||||
return SocketFuture.completedFuture();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,36 +1,14 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
package de.dhbwstuttgart.server.packet;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet to send simple error messages between the client and the server
|
* A packet to send simple error messages between the client and the server
|
||||||
*/
|
*/
|
||||||
public class ErrorPacket implements IServerToClientPacket {
|
public class ErrorPacket implements IPacket {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The error endpoint for messages from the server that should be logged out as errors and possibly abort the process
|
* The error endpoint for messages from the server, that should be logged out outputted
|
||||||
*/
|
*/
|
||||||
public String error;
|
public String error;
|
||||||
public boolean isFatal;
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public static ErrorPacket create(String error, boolean isFatal) {
|
|
||||||
ErrorPacket packet = new ErrorPacket();
|
|
||||||
packet.error = error;
|
|
||||||
packet.isFatal = isFatal;
|
|
||||||
return packet;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketClient socketClient) {
|
|
||||||
SocketClient.logger.exception(new RuntimeException(this.error));
|
|
||||||
if (this.isFatal) {
|
|
||||||
socketClient.close(1, "Received fatal error from server");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,26 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A packet that will be sent to the server. Use <code>Void</code> Sub-Interface for packets without response
|
|
||||||
*
|
|
||||||
* @param <T> The response packet that will fulfill the future.
|
|
||||||
*/
|
|
||||||
public interface IClientToServerPacket<T extends IServerToClientPacket> extends IPacket {
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
void onHandle(WebSocket webSocket, SocketServer socketServer);
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
SocketFuture<T> getFuture();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Special case, where the packet will remain unanswered by the server
|
|
||||||
*/
|
|
||||||
interface Void extends IClientToServerPacket<IServerToClientPacket> {}
|
|
||||||
}
|
|
||||||
|
|
@@ -1,12 +1,18 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
package de.dhbwstuttgart.server.packet;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The shared interface for all packet of the client-server connection.
|
* The shared interface for all packet of the server connection.
|
||||||
* A packet must always:
|
* A packet must always:
|
||||||
* - Have a default / no-parameter constructor
|
* - Have a default / no-parameter constructor
|
||||||
* - Have only serializable public properties (or disable them via jackson annotations)
|
* - Have only serializable public properties (or disable them via jackson annotations)
|
||||||
|
* A packet should have, for easy usage and consisteny:
|
||||||
|
* - a static create() method
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public interface IPacket {
|
public interface IPacket {
|
||||||
|
|
||||||
|
interface IDataContainer<T> {
|
||||||
|
T toObject();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,12 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
public interface IServerToClientPacket extends IPacket {
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
void onHandle(WebSocket webSocket, SocketClient socketClient);
|
|
||||||
|
|
||||||
}
|
|
@@ -1,35 +1,13 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
package de.dhbwstuttgart.server.packet;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A fallback packet that is generated if the received JSON could not be mapped to an existing package
|
* A fallback packet that is generated, if the received json could not be mapped to an existing package
|
||||||
*/
|
*/
|
||||||
public class InvalidPacket implements IClientToServerPacket.Void, IServerToClientPacket {
|
public class InvalidPacket implements IPacket {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If available, the error that caused this package to appear
|
* If available, the error that caused this package to appear
|
||||||
*/
|
*/
|
||||||
public String error = "<unknown error>";
|
public String error = "<unknown error>";
|
||||||
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketClient socketClient) {
|
|
||||||
SocketClient.logger.error("InvalidPacket: " + this.error);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketServer socketServer) {
|
|
||||||
socketServer.log(webSocket, "InvalidPacket: " + this.error);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SocketFuture<IServerToClientPacket> getFuture() {
|
|
||||||
return SocketFuture.completedFuture();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,40 +1,13 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
package de.dhbwstuttgart.server.packet;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet to send simple informational messages between the client and the server
|
* A packet to send simple informational messages between the client and the server
|
||||||
*/
|
*/
|
||||||
public class MessagePacket implements IClientToServerPacket.Void, IServerToClientPacket {
|
public class MessagePacket implements IPacket {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The informational message from the server that should be logged out outputted
|
* The informational message from the server, that should be logged out outputted
|
||||||
*/
|
*/
|
||||||
public String message;
|
public String message;
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public static MessagePacket create(String message) {
|
|
||||||
MessagePacket packet = new MessagePacket();
|
|
||||||
packet.message = message;
|
|
||||||
return packet;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketClient socketClient) {
|
|
||||||
SocketClient.logger.info("SocketMessage: " + this.message);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketServer socketServer) {
|
|
||||||
socketServer.log(webSocket, this.message);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SocketFuture<IServerToClientPacket> getFuture() {
|
|
||||||
return SocketFuture.completedFuture();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -3,7 +3,6 @@ package de.dhbwstuttgart.server.packet;
|
|||||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A wrapper for the packet to ensure correct serialization/deserialization and make it possible to detect the matching
|
* A wrapper for the packet to ensure correct serialization/deserialization and make it possible to detect the matching
|
||||||
@@ -17,22 +16,20 @@ public class PacketContainer {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* The available packet types. The one type that is represented in the JSON should always be the ONLY non-null value.
|
* The available packet types. The one type that is represented in the JSON should always be the ONLY non-null value.
|
||||||
* They have to be public (for the moment) to let jackson fill them in while deserializing
|
* They have to be private (for the moment) to let jackson fill them in while deserializing
|
||||||
*/
|
*/
|
||||||
public ErrorPacket errorPacket = null;
|
public ErrorPacket errorPacket = null;
|
||||||
public MessagePacket messagePacket = null;
|
public MessagePacket messagePacket = null;
|
||||||
public InvalidPacket invalidPacket = null;
|
public InvalidPacket invalidPacket = null;
|
||||||
public UnifyRequestPacket unifyRequestPacket = null;
|
public UnifyRequestPacket unifyRequestPacket = null;
|
||||||
public UnifyResultPacket unifyResultPacket = null;
|
public UnifyResultPacket unifyResultPacket = null;
|
||||||
public DebugPacket debugPacket = null;
|
|
||||||
public SetAutoclosePacket setAutoclosePacket = null;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generate the JSON string for the given packet
|
* Generate the JSON string for the given packet
|
||||||
*
|
*
|
||||||
* @param packet The packet to serialize
|
* @param packet The packet to serialize
|
||||||
* @return The JSON representation of the packet
|
* @return The json representation of the packet
|
||||||
*/
|
*/
|
||||||
public static String serialize(IPacket packet) throws JsonProcessingException {
|
public static String serialize(IPacket packet) throws JsonProcessingException {
|
||||||
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
|
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
|
||||||
@@ -46,13 +43,7 @@ public class PacketContainer {
|
|||||||
container.unifyRequestPacket = (UnifyRequestPacket) packet;
|
container.unifyRequestPacket = (UnifyRequestPacket) packet;
|
||||||
else if (packet instanceof UnifyResultPacket)
|
else if (packet instanceof UnifyResultPacket)
|
||||||
container.unifyResultPacket = (UnifyResultPacket) packet;
|
container.unifyResultPacket = (UnifyResultPacket) packet;
|
||||||
else if (packet instanceof DebugPacket)
|
|
||||||
container.debugPacket = (DebugPacket) packet;
|
|
||||||
else if (packet instanceof SetAutoclosePacket)
|
|
||||||
container.setAutoclosePacket = (SetAutoclosePacket) packet;
|
|
||||||
// Add new packets here and in the deserialize method
|
// Add new packets here and in the deserialize method
|
||||||
else
|
|
||||||
throw new RuntimeException("Cannot map packet to any known packet class");
|
|
||||||
|
|
||||||
return objectMapper.writeValueAsString(container);
|
return objectMapper.writeValueAsString(container);
|
||||||
}
|
}
|
||||||
@@ -79,15 +70,10 @@ public class PacketContainer {
|
|||||||
return container.unifyRequestPacket;
|
return container.unifyRequestPacket;
|
||||||
if (container.unifyResultPacket != null)
|
if (container.unifyResultPacket != null)
|
||||||
return container.unifyResultPacket;
|
return container.unifyResultPacket;
|
||||||
if (container.debugPacket != null)
|
|
||||||
return container.debugPacket;
|
|
||||||
if (container.setAutoclosePacket != null)
|
|
||||||
return container.setAutoclosePacket;
|
|
||||||
// Add new packets here and in the serialize method
|
// Add new packets here and in the serialize method
|
||||||
|
|
||||||
throw new RuntimeException("Cannot map received json to any known packet class");
|
throw new RuntimeException("Cannot map received json to any known packet class");
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
(new Logger()).exception(e);
|
|
||||||
InvalidPacket packet = new InvalidPacket();
|
InvalidPacket packet = new InvalidPacket();
|
||||||
packet.error = e.getMessage();
|
packet.error = e.getMessage();
|
||||||
return packet;
|
return packet;
|
||||||
|
@@ -1,32 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Normally, a connection stays open until either the client or the server process ends.
|
|
||||||
* Send this packet to inform the server that the connection can be closed once all tasks are done
|
|
||||||
*/
|
|
||||||
public class SetAutoclosePacket implements IClientToServerPacket.Void {
|
|
||||||
|
|
||||||
public int dummyProperty = 1;
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public static SetAutoclosePacket create() {
|
|
||||||
return new SetAutoclosePacket();
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketServer socketServer) {
|
|
||||||
webSocket.<SocketServer.SocketData>getAttachment().closeIfNoTasksLeft = true;
|
|
||||||
socketServer.log(webSocket, "Marked connection as autoclose");
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SocketFuture<IServerToClientPacket> getFuture() {
|
|
||||||
return SocketFuture.completedFuture();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,164 +1,48 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
package de.dhbwstuttgart.server.packet;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import de.dhbwstuttgart.core.ConsoleInterface;
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedFiniteClosure;
|
||||||
import de.dhbwstuttgart.server.ServerTaskLogger;
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedPairConstraintSet;
|
||||||
import de.dhbwstuttgart.server.SocketFuture;
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedUnifyConstraintSet;
|
||||||
import de.dhbwstuttgart.server.SocketServer;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.KeyStorage;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialList;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialMap;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialValue;
|
|
||||||
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
import de.dhbwstuttgart.typeinference.unify.PlaceholderRegistry;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.TypeUnify;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyContext;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyResultListenerImpl;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyResultModel;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyTaskModel;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.interfaces.IFiniteClosure;
|
import de.dhbwstuttgart.typeinference.unify.interfaces.IFiniteClosure;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.FiniteClosure;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.PlaceholderType;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
import de.dhbwstuttgart.typeinference.unify.model.UnifyType;
|
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.concurrent.ForkJoinPool;
|
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet to send all required data for the unification algorithm to the server and request the unification
|
* A packet to send all required data for the unification algorithm to the server and request the unification
|
||||||
*/
|
*/
|
||||||
public class UnifyRequestPacket implements IClientToServerPacket<UnifyResultPacket> {
|
public class UnifyRequestPacket implements IPacket {
|
||||||
|
|
||||||
public SerialMap finiteClosure;
|
public SerializedFiniteClosure finiteClosure;
|
||||||
public SerialMap constraintSet;
|
public SerializedPairConstraintSet constraints;
|
||||||
public SerialMap unifyConstraintSet;
|
public SerializedUnifyConstraintSet unifyConstraints;
|
||||||
public SerialMap serialKeyStorage;
|
|
||||||
public SerialValue<?> placeholders;
|
|
||||||
public SerialList<SerialMap> factoryplaceholders;
|
|
||||||
public String futureId;
|
|
||||||
public int logLevel;
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
private KeyStorage keyStorage = new KeyStorage();
|
|
||||||
@JsonIgnore
|
|
||||||
private boolean keyStorageLoaded = false;
|
|
||||||
|
|
||||||
public static UnifyRequestPacket create(
|
public static UnifyRequestPacket create(
|
||||||
FiniteClosure finiteClosure,
|
IFiniteClosure finiteClosure,
|
||||||
ConstraintSet<Pair> constraintSet,
|
ConstraintSet<Pair> constraints,
|
||||||
ConstraintSet<UnifyPair> unifyConstraintSet,
|
ConstraintSet<UnifyPair> unifyConstraints
|
||||||
PlaceholderRegistry placeholderRegistry
|
|
||||||
) {
|
) {
|
||||||
UnifyRequestPacket packet = new UnifyRequestPacket();
|
UnifyRequestPacket packet = new UnifyRequestPacket();
|
||||||
// store constraint and finite closure
|
packet.finiteClosure = SerializedFiniteClosure.create(finiteClosure);
|
||||||
packet.finiteClosure = finiteClosure.toSerial(packet.keyStorage);
|
packet.constraints = SerializedPairConstraintSet.create(constraints);
|
||||||
packet.constraintSet = constraintSet.toSerial(packet.keyStorage);
|
packet.unifyConstraints = SerializedUnifyConstraintSet.create(unifyConstraints);
|
||||||
packet.unifyConstraintSet = unifyConstraintSet.toSerial(packet.keyStorage);
|
|
||||||
// store placeholder registry
|
|
||||||
var serialRegistry = placeholderRegistry.toSerial(packet.keyStorage);
|
|
||||||
packet.placeholders = serialRegistry.getValue("ph");
|
|
||||||
packet.factoryplaceholders = serialRegistry.getList("factoryPh").assertListOfMaps();
|
|
||||||
// store referenced objects separately
|
|
||||||
packet.serialKeyStorage = packet.keyStorage.toSerial(packet.keyStorage);
|
|
||||||
packet.logLevel = ConsoleInterface.logLevel.getValue();
|
|
||||||
return packet;
|
return packet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
public void loadKeyStorage(UnifyContext context) {
|
public IFiniteClosure retrieveFiniteClosure() {
|
||||||
if (!keyStorageLoaded) {
|
return this.finiteClosure.toObject();
|
||||||
keyStorageLoaded = true;
|
|
||||||
keyStorage = KeyStorage.fromSerial(this.serialKeyStorage, context);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
private FiniteClosure retrieveFiniteClosure(UnifyContext context) {
|
public ConstraintSet<Pair> retrieveConstraints() {
|
||||||
this.loadKeyStorage(context);
|
return this.constraints.toObject();
|
||||||
return FiniteClosure.fromSerial(this.finiteClosure, context, keyStorage);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
private ConstraintSet<Pair> retrieveConstraintSet(UnifyContext context) {
|
public ConstraintSet<UnifyPair> retrieveUnifyConstraints() {
|
||||||
this.loadKeyStorage(context);
|
return this.unifyConstraints.toObject();
|
||||||
return ConstraintSet.fromSerial(this.constraintSet, context, Pair.class, keyStorage);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
private ConstraintSet<UnifyPair> retrieveUnifyConstraintSet(UnifyContext context) {
|
|
||||||
this.loadKeyStorage(context);
|
|
||||||
return ConstraintSet.fromSerial(this.unifyConstraintSet, context, UnifyPair.class, keyStorage);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketServer socketServer) {
|
|
||||||
socketServer.sendMessage(webSocket, "You requested a unify! Please wait until I calculated everything...");
|
|
||||||
socketServer.log(webSocket, "Client requested a unification. Starting now...");
|
|
||||||
|
|
||||||
try {
|
|
||||||
var placeholderRegistry = new PlaceholderRegistry();
|
|
||||||
ArrayList<String> existingPlaceholders = (ArrayList) this.placeholders.getOf(ArrayList.class);
|
|
||||||
existingPlaceholders.forEach(placeholderRegistry::addPlaceholder);
|
|
||||||
|
|
||||||
Logger logger = new ServerTaskLogger(
|
|
||||||
webSocket,
|
|
||||||
socketServer,
|
|
||||||
Logger.LogLevel.fromValue(
|
|
||||||
Math.max(this.logLevel, Logger.LogLevel.INFO.getValue())
|
|
||||||
)
|
|
||||||
);
|
|
||||||
var unifyContext = new UnifyContext(logger, true,
|
|
||||||
new UnifyResultModel(new ConstraintSet<>(), new FiniteClosure(new HashSet<>(), logger, placeholderRegistry)),
|
|
||||||
new UnifyTaskModel(), ForkJoinPool.commonPool(), placeholderRegistry
|
|
||||||
);
|
|
||||||
|
|
||||||
this.factoryplaceholders.stream()
|
|
||||||
.map(p -> (PlaceholderType)UnifyType.fromSerial(p, unifyContext))
|
|
||||||
.forEach(placeholderRegistry.UnifyTypeFactory_PLACEHOLDERS::add);
|
|
||||||
|
|
||||||
|
|
||||||
// start the unification algorithm from the received data
|
|
||||||
IFiniteClosure finiteClosure = this.retrieveFiniteClosure(unifyContext);
|
|
||||||
ConstraintSet<Pair> constraintSet = this.retrieveConstraintSet(unifyContext);
|
|
||||||
ConstraintSet<UnifyPair> unifyConstraintSet = this.retrieveUnifyConstraintSet(unifyContext);
|
|
||||||
|
|
||||||
var resultModel = new UnifyResultModel(constraintSet, finiteClosure);
|
|
||||||
UnifyResultListenerImpl resultListener = new UnifyResultListenerImpl();
|
|
||||||
resultModel.addUnifyResultListener(resultListener);
|
|
||||||
|
|
||||||
TypeUnify.unifyParallel(
|
|
||||||
unifyConstraintSet.getUndConstraints(),
|
|
||||||
unifyConstraintSet.getOderConstraints(),
|
|
||||||
finiteClosure,
|
|
||||||
unifyContext.newWithResultModel(resultModel)
|
|
||||||
);
|
|
||||||
|
|
||||||
var resultSets = resultListener.getResults();
|
|
||||||
|
|
||||||
socketServer.log(webSocket, "Finished unification");
|
|
||||||
socketServer.sendMessage(webSocket, "Unification finished. Found " + resultSets.size() + " result sets");
|
|
||||||
|
|
||||||
if (webSocket.isOpen()) {
|
|
||||||
UnifyResultPacket resultPacket = UnifyResultPacket.create(resultSets, futureId);
|
|
||||||
webSocket.send(PacketContainer.serialize(resultPacket));
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
|
||||||
SocketServer.logger.exception(e);
|
|
||||||
socketServer.log(webSocket, e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SocketFuture<UnifyResultPacket> getFuture() {
|
|
||||||
var future = new SocketFuture<>(List.of(UnifyResultPacket.class));
|
|
||||||
futureId = future.futureId;
|
|
||||||
return future;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,45 +1,27 @@
|
|||||||
package de.dhbwstuttgart.server.packet;
|
package de.dhbwstuttgart.server.packet;
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
import de.dhbwstuttgart.server.SocketClient;
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedResultSet;
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.KeyStorage;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.ISerialNode;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialList;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialMap;
|
|
||||||
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyContext;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.java_websocket.WebSocket;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A packet to send all calculated data from the unification algorithm back to the client
|
* A packet to send all calculated data from the unification algorithm back to the client
|
||||||
*/
|
*/
|
||||||
public class UnifyResultPacket implements IServerToClientPacket {
|
public class UnifyResultPacket implements IPacket {
|
||||||
|
|
||||||
public SerialList<ISerialNode> results;
|
public SerializedResultSet[] results;
|
||||||
public SerialMap keyStorage;
|
|
||||||
public String futureId;
|
|
||||||
|
|
||||||
public static UnifyResultPacket create(List<ResultSet> resultSets, String futureId) {
|
public static UnifyResultPacket create(List<ResultSet> resultSets) {
|
||||||
UnifyResultPacket serialized = new UnifyResultPacket();
|
UnifyResultPacket serialized = new UnifyResultPacket();
|
||||||
KeyStorage keyStorage = new KeyStorage();
|
serialized.results = resultSets.stream().map(SerializedResultSet::create).toArray(SerializedResultSet[]::new);
|
||||||
serialized.results = SerialList.fromMapped(resultSets, resultSet -> resultSet.toSerial(keyStorage));
|
|
||||||
serialized.keyStorage = keyStorage.toSerial(keyStorage);
|
|
||||||
serialized.futureId = futureId;
|
|
||||||
return serialized;
|
return serialized;
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonIgnore
|
@JsonIgnore
|
||||||
public List<ResultSet> getResultSet(UnifyContext context) {
|
public List<ResultSet> getResultSet() {
|
||||||
return this.results.assertListOfMaps().stream()
|
return Arrays.stream(this.results).map(SerializedResultSet::toObject).toList();
|
||||||
.map(resultData -> ResultSet.fromSerial(resultData, context)).toList();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void onHandle(WebSocket webSocket, SocketClient socketClient) {
|
|
||||||
SocketClient.logger.info("Received unify result");
|
|
||||||
socketClient.completeResponseFuture(futureId, this);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,16 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.exceptions.NotImplementedException;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.ISerialNode;
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialMap;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyContext;
|
|
||||||
|
|
||||||
public interface ISerializableData {
|
|
||||||
|
|
||||||
public abstract ISerialNode toSerial(KeyStorage keyStorage);
|
|
||||||
|
|
||||||
public static Object fromSerial(SerialMap data, UnifyContext context) {
|
|
||||||
throw new NotImplementedException("Missing implementation of \"fromSerial\" for a serializable element");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,103 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.server.packet.dataContainers.serialized.SerialMap;
|
|
||||||
import de.dhbwstuttgart.typeinference.unify.UnifyContext;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
|
||||||
|
|
||||||
public class KeyStorage implements ISerializableData {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Store a unique identifier for every element, so it can be referenced in the json
|
|
||||||
*/
|
|
||||||
protected AtomicInteger identifierCount = new AtomicInteger();
|
|
||||||
/**
|
|
||||||
* Store the serialized element per identifier when serializing
|
|
||||||
*/
|
|
||||||
protected SerialMap serializedElements = new SerialMap();
|
|
||||||
/**
|
|
||||||
* Store the unserialized element per identifier when unserializing
|
|
||||||
*/
|
|
||||||
protected Map<String, ISerializableData> unserializedElements = new HashMap<>();
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieve or generate a new identifier for a constraint
|
|
||||||
*/
|
|
||||||
public String getIdentifier() {
|
|
||||||
return this.identifierCount.incrementAndGet() + "_";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if the given element identifier belongs to an element that was already serialized
|
|
||||||
*/
|
|
||||||
public boolean isAlreadySerialized(String identifier) {
|
|
||||||
return this.serializedElements.containsKey(identifier);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if the given element identifier belongs to a element that was already unserialized
|
|
||||||
*/
|
|
||||||
public boolean isAlreadyUnserialized(String identifier) {
|
|
||||||
return this.unserializedElements.containsKey(identifier);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Register a serialized element to prevent it from being serialized again
|
|
||||||
*/
|
|
||||||
public void putSerialized(String identifier, SerialMap serializedElement) {
|
|
||||||
this.serializedElements.put(identifier, serializedElement);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieve a serialized element
|
|
||||||
*/
|
|
||||||
public SerialMap getSerialized(String identifier) {
|
|
||||||
if (!this.serializedElements.containsKey(identifier)) {
|
|
||||||
throw new RuntimeException("No serialized element of identifier " + identifier + " available to get");
|
|
||||||
}
|
|
||||||
return this.serializedElements.getMap(identifier);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Register an unserialized element to prevent it from being unserialized again
|
|
||||||
*/
|
|
||||||
public void putUnserialized(String identifier, ISerializableData element) {
|
|
||||||
this.unserializedElements.put(identifier, element);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Retrieve an unserialized element
|
|
||||||
*/
|
|
||||||
public <T extends ISerializableData> T getUnserialized(String identifier, Class<T> target) {
|
|
||||||
if (!this.unserializedElements.containsKey(identifier)) {
|
|
||||||
throw new RuntimeException("No unserialized element of identifier " + identifier + " available to get");
|
|
||||||
}
|
|
||||||
var element = this.unserializedElements.get(identifier);
|
|
||||||
if (target.isInstance(element)) {
|
|
||||||
return (T) element;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Failed to get unserialized element from KeyStorage. Expected instance of " +
|
|
||||||
target.getName() + " but found " + element.getClass().getName());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public SerialMap toSerial(KeyStorage keyStorage) {
|
|
||||||
SerialMap serialized = new SerialMap();
|
|
||||||
serialized.put("serializedElements", this.serializedElements);
|
|
||||||
return serialized;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static KeyStorage fromSerial(SerialMap data, UnifyContext context) {
|
|
||||||
var serializedConstraintsData = data.getMap("serializedElements");
|
|
||||||
var constraintContext = new KeyStorage();
|
|
||||||
for (var entry : serializedConstraintsData.entrySet()) {
|
|
||||||
if (entry.getValue() instanceof SerialMap valueMap) {
|
|
||||||
constraintContext.putSerialized(entry.getKey(), valueMap);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return constraintContext;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -0,0 +1,30 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.interfaces.IFiniteClosure;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.FiniteClosure;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see IFiniteClosure
|
||||||
|
*/
|
||||||
|
public class SerializedFiniteClosure implements IPacket.IDataContainer<IFiniteClosure> {
|
||||||
|
public SerializedUnifyPair[] pairs;
|
||||||
|
|
||||||
|
public static SerializedFiniteClosure create(IFiniteClosure finiteClosure) {
|
||||||
|
SerializedFiniteClosure fc = new SerializedFiniteClosure();
|
||||||
|
fc.pairs = finiteClosure.getPairs().stream().map(SerializedUnifyPair::create).toArray(SerializedUnifyPair[]::new);
|
||||||
|
return fc;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IFiniteClosure toObject() {
|
||||||
|
return new FiniteClosure(
|
||||||
|
new HashSet<>(Arrays.stream(pairs).map(SerializedUnifyPair::toObject).toList()),
|
||||||
|
null
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,37 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.PairOperator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see Pair
|
||||||
|
*/
|
||||||
|
public class SerializedPair implements IPacket.IDataContainer<Pair> {
|
||||||
|
|
||||||
|
@JsonProperty("o")
|
||||||
|
public PairOperator operator;
|
||||||
|
public SerializedTokenWrapper ta1;
|
||||||
|
public SerializedTokenWrapper ta2;
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedPair create(Pair pair) {
|
||||||
|
SerializedPair sPair = new SerializedPair();
|
||||||
|
sPair.operator = pair.GetOperator();
|
||||||
|
sPair.ta1 = SerializedTokenWrapper.create(pair.TA1);
|
||||||
|
sPair.ta2 = SerializedTokenWrapper.create(pair.TA2);
|
||||||
|
return sPair;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Pair toObject() {
|
||||||
|
return new Pair(
|
||||||
|
ta1.toObject(),
|
||||||
|
ta2.toObject(),
|
||||||
|
operator
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,82 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Constraint;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see Constraint<Pair>
|
||||||
|
*/
|
||||||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||||
|
public class SerializedPairConstraint implements IPacket.IDataContainer<Constraint<Pair>> {
|
||||||
|
|
||||||
|
// serialize recursive structure
|
||||||
|
public static final HashMap<Constraint<Pair>, String> UNIQUE_CONSTRAINT_KEY_MAP = new HashMap<>();
|
||||||
|
public static final HashMap<String, SerializedPairConstraint> UNIQUE_CONSTRAINT_MAP = new HashMap<>();
|
||||||
|
// deserialize recursive structure
|
||||||
|
private static final HashMap<String, Constraint<Pair>> UNIQUE_OBJECT_MAP = new HashMap<>();
|
||||||
|
|
||||||
|
@JsonProperty("i")
|
||||||
|
public boolean isInherited;
|
||||||
|
@JsonProperty("u")
|
||||||
|
public String uniqueKey;
|
||||||
|
@JsonProperty("e")
|
||||||
|
public String extendedConstraint = null;
|
||||||
|
@JsonProperty("m")
|
||||||
|
public SerializedPair[] methodSignatureConstraint;
|
||||||
|
@JsonProperty("c")
|
||||||
|
public SerializedPair[] constraintElements;
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedPairConstraint create(Constraint<Pair> constraint) {
|
||||||
|
final String uniqueKey = UNIQUE_CONSTRAINT_KEY_MAP.getOrDefault(constraint, "_" + UNIQUE_CONSTRAINT_MAP.size());
|
||||||
|
|
||||||
|
if (UNIQUE_CONSTRAINT_MAP.containsKey(uniqueKey)) {
|
||||||
|
return UNIQUE_CONSTRAINT_MAP.get(uniqueKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
SerializedPairConstraint pairConstraint = new SerializedPairConstraint();
|
||||||
|
pairConstraint.uniqueKey = uniqueKey;
|
||||||
|
UNIQUE_CONSTRAINT_KEY_MAP.put(constraint, uniqueKey);
|
||||||
|
UNIQUE_CONSTRAINT_MAP.put(uniqueKey, pairConstraint);
|
||||||
|
|
||||||
|
pairConstraint.constraintElements = constraint.stream().map(SerializedPair::create).toArray(SerializedPair[]::new);
|
||||||
|
pairConstraint.isInherited = constraint.isInherited();
|
||||||
|
pairConstraint.methodSignatureConstraint = constraint.getmethodSignatureConstraint().stream().map(SerializedPair::create).toArray(SerializedPair[]::new);
|
||||||
|
if (constraint.getExtendConstraint() != null) {
|
||||||
|
pairConstraint.extendedConstraint = SerializedPairConstraint.create(constraint.getExtendConstraint()).uniqueKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
return pairConstraint;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Constraint<Pair> toObject() {
|
||||||
|
if (UNIQUE_OBJECT_MAP.containsKey(uniqueKey)) {
|
||||||
|
return UNIQUE_OBJECT_MAP.get(uniqueKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
Constraint<Pair> constraint = new Constraint<>();
|
||||||
|
UNIQUE_OBJECT_MAP.put(uniqueKey, constraint);
|
||||||
|
|
||||||
|
constraint.addAll(Arrays.stream(constraintElements).map(SerializedPair::toObject).toList());
|
||||||
|
constraint.setIsInherited(isInherited);
|
||||||
|
constraint.setmethodSignatureConstraint(new HashSet<>(
|
||||||
|
Arrays.stream(methodSignatureConstraint).map(SerializedPair::toObject).toList()
|
||||||
|
));
|
||||||
|
SerializedPairConstraint extendedConstraint = this.extendedConstraint == null ? null :
|
||||||
|
SerializedPairConstraint.UNIQUE_CONSTRAINT_MAP.get(this.extendedConstraint);
|
||||||
|
if (extendedConstraint != null) {
|
||||||
|
constraint.setExtendConstraint(extendedConstraint.toObject());
|
||||||
|
}
|
||||||
|
|
||||||
|
return constraint;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,60 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Constraint;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Pair;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ConstraintSet<Pair>
|
||||||
|
*/
|
||||||
|
public class SerializedPairConstraintSet implements IPacket.IDataContainer<ConstraintSet<Pair>> {
|
||||||
|
|
||||||
|
public SerializedPair[] undConstraints;
|
||||||
|
public SerializedPairConstraint[][] oderConstraints;
|
||||||
|
public Map<String, SerializedPairConstraint> uniqueConstraintMap = new HashMap<>();
|
||||||
|
|
||||||
|
public static SerializedPairConstraintSet create(ConstraintSet<Pair> constraints) {
|
||||||
|
SerializedPairConstraintSet constraintSet = new SerializedPairConstraintSet();
|
||||||
|
|
||||||
|
constraintSet.undConstraints = constraints.getUndConstraints().stream().map(SerializedPair::create).toArray(SerializedPair[]::new);
|
||||||
|
constraintSet.oderConstraints = constraints.getOderConstraints().stream().map(consSet ->
|
||||||
|
consSet.stream().map(SerializedPairConstraint::create).toArray(SerializedPairConstraint[]::new)
|
||||||
|
).toArray(SerializedPairConstraint[][]::new);
|
||||||
|
|
||||||
|
// add all the gathered constraints to a serializable property
|
||||||
|
constraintSet.uniqueConstraintMap.putAll(SerializedPairConstraint.UNIQUE_CONSTRAINT_MAP);
|
||||||
|
|
||||||
|
return constraintSet;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ConstraintSet<Pair> toObject() {
|
||||||
|
ConstraintSet<Pair> consSet = new ConstraintSet<>();
|
||||||
|
|
||||||
|
// read all the constraints from the serializable property
|
||||||
|
SerializedPairConstraint.UNIQUE_CONSTRAINT_MAP.putAll(this.uniqueConstraintMap);
|
||||||
|
|
||||||
|
Constraint<Pair> undCons = new Constraint<>();
|
||||||
|
undCons.addAll(Arrays.stream(undConstraints).map(SerializedPair::toObject).toList());
|
||||||
|
consSet.addAllUndConstraint(undCons);
|
||||||
|
|
||||||
|
List<Set<Constraint<Pair>>> oderCons = new ArrayList<>(Arrays.stream(oderConstraints).map(cons ->
|
||||||
|
new HashSet<>(
|
||||||
|
Arrays.stream(cons).map(SerializedPairConstraint::toObject).toList()
|
||||||
|
)
|
||||||
|
).toList());
|
||||||
|
consSet.addAllOderConstraint(oderCons);
|
||||||
|
|
||||||
|
return consSet;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,63 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.resultPairs.SerializedPairNoResult;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.resultPairs.SerializedPairTPHEqualTPH;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.resultPairs.SerializedPairTPHequalRefTypeOrWildcardType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.resultPairs.SerializedPairTPHsmallerTPH;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairNoResult;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairTPHEqualTPH;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairTPHequalRefTypeOrWildcardType;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairTPHsmallerTPH;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.ResultPair;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ResultPair
|
||||||
|
*/
|
||||||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||||
|
public class SerializedResultPairWrapper implements IPacket.IDataContainer<ResultPair<RefTypeOrTPHOrWildcardOrGeneric, RefTypeOrTPHOrWildcardOrGeneric>> {
|
||||||
|
|
||||||
|
@JsonProperty("nr")
|
||||||
|
public SerializedPairNoResult noResult = null;
|
||||||
|
@JsonProperty("teo")
|
||||||
|
public SerializedPairTPHequalRefTypeOrWildcardType tphEqualOther = null;
|
||||||
|
@JsonProperty("tet")
|
||||||
|
public SerializedPairTPHEqualTPH tphEqualTph = null;
|
||||||
|
@JsonProperty("tst")
|
||||||
|
public SerializedPairTPHsmallerTPH tphSmallerTPH = null;
|
||||||
|
|
||||||
|
|
||||||
|
public static <A extends RefTypeOrTPHOrWildcardOrGeneric, B extends RefTypeOrTPHOrWildcardOrGeneric> SerializedResultPairWrapper create(ResultPair<A, B> pair) {
|
||||||
|
SerializedResultPairWrapper serialized = new SerializedResultPairWrapper();
|
||||||
|
|
||||||
|
if (pair instanceof PairNoResult noResult)
|
||||||
|
serialized.noResult = SerializedPairNoResult.create(noResult);
|
||||||
|
else if (pair instanceof PairTPHequalRefTypeOrWildcardType tphEqualOther)
|
||||||
|
serialized.tphEqualOther = SerializedPairTPHequalRefTypeOrWildcardType.create(tphEqualOther);
|
||||||
|
else if (pair instanceof PairTPHEqualTPH tphEqualTph)
|
||||||
|
serialized.tphEqualTph = SerializedPairTPHEqualTPH.create(tphEqualTph);
|
||||||
|
else if (pair instanceof PairTPHsmallerTPH tphSmallerTPH)
|
||||||
|
serialized.tphSmallerTPH = SerializedPairTPHsmallerTPH.create(tphSmallerTPH);
|
||||||
|
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("rawtypes") // this is not optimal, but we have to conform to interface specifications
|
||||||
|
public ResultPair toObject() {
|
||||||
|
if (noResult != null)
|
||||||
|
return noResult.toObject();
|
||||||
|
else if (tphEqualOther != null)
|
||||||
|
return tphEqualOther.toObject();
|
||||||
|
else if (tphEqualTph != null)
|
||||||
|
return tphEqualTph.toObject();
|
||||||
|
else if (tphSmallerTPH != null)
|
||||||
|
return tphSmallerTPH.toObject();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,31 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.ResultSet;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ResultSet
|
||||||
|
*/
|
||||||
|
public class SerializedResultSet implements IPacket.IDataContainer<ResultSet> {
|
||||||
|
|
||||||
|
public SerializedResultPairWrapper[] results;
|
||||||
|
|
||||||
|
public static SerializedResultSet create(ResultSet resultSet) {
|
||||||
|
SerializedResultSet serialized = new SerializedResultSet();
|
||||||
|
serialized.results = resultSet.results.stream().map(SerializedResultPairWrapper::create).toArray(SerializedResultPairWrapper[]::new);
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ResultSet toObject() {
|
||||||
|
return new ResultSet(
|
||||||
|
new HashSet<>(
|
||||||
|
Arrays.stream(this.results).map(SerializedResultPairWrapper::toObject).toList()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,72 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedExtendsWildcardType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedGenericRefType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedPlaceholderType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedRefType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedSuperWildcardType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedVoidType;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.ExtendsWildcardType;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.GenericRefType;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.RefType;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.SuperWildcardType;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.Void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see RefTypeOrTPHOrWildcardOrGeneric
|
||||||
|
*/
|
||||||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||||
|
public class SerializedTokenWrapper implements IPacket.IDataContainer<RefTypeOrTPHOrWildcardOrGeneric> {
|
||||||
|
|
||||||
|
@JsonProperty("ew")
|
||||||
|
public SerializedExtendsWildcardType extendsWildcardType = null;
|
||||||
|
@JsonProperty("gr")
|
||||||
|
public SerializedGenericRefType genericRefType = null;
|
||||||
|
@JsonProperty("p")
|
||||||
|
public SerializedPlaceholderType placeholderType = null;
|
||||||
|
@JsonProperty("r")
|
||||||
|
public SerializedRefType refType = null;
|
||||||
|
@JsonProperty("sw")
|
||||||
|
public SerializedSuperWildcardType superWildcardType = null;
|
||||||
|
@JsonProperty("v")
|
||||||
|
public SerializedVoidType voidType = null;
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedTokenWrapper create(RefTypeOrTPHOrWildcardOrGeneric type) {
|
||||||
|
SerializedTokenWrapper wrapper = new SerializedTokenWrapper();
|
||||||
|
|
||||||
|
if (type instanceof ExtendsWildcardType)
|
||||||
|
wrapper.extendsWildcardType = SerializedExtendsWildcardType.create((ExtendsWildcardType) type);
|
||||||
|
else if (type instanceof GenericRefType)
|
||||||
|
wrapper.genericRefType = SerializedGenericRefType.create((GenericRefType) type);
|
||||||
|
else if (type instanceof TypePlaceholder)
|
||||||
|
wrapper.placeholderType = SerializedPlaceholderType.create((TypePlaceholder) type);
|
||||||
|
else if (type instanceof Void)
|
||||||
|
wrapper.voidType = SerializedVoidType.create((Void) type);
|
||||||
|
else if (type instanceof RefType)
|
||||||
|
wrapper.refType = SerializedRefType.create((RefType) type);
|
||||||
|
else if (type instanceof SuperWildcardType)
|
||||||
|
wrapper.superWildcardType = SerializedSuperWildcardType.create((SuperWildcardType) type);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public RefTypeOrTPHOrWildcardOrGeneric toObject() {
|
||||||
|
if (extendsWildcardType != null) return extendsWildcardType.toObject();
|
||||||
|
if (genericRefType != null) return genericRefType.toObject();
|
||||||
|
if (placeholderType != null) return placeholderType.toObject();
|
||||||
|
if (refType != null) return refType.toObject();
|
||||||
|
if (superWildcardType != null) return superWildcardType.toObject();
|
||||||
|
if (voidType != null) return voidType.toObject();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,49 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Constraint;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ConstraintSet<UnifyPair>
|
||||||
|
*/
|
||||||
|
public class SerializedUnifyConstraintSet implements IPacket.IDataContainer<ConstraintSet<UnifyPair>> {
|
||||||
|
|
||||||
|
public SerializedUnifyPair[] undConstraints;
|
||||||
|
public SerializedUnifyPairConstraint[][] oderConstraints;
|
||||||
|
|
||||||
|
public static SerializedUnifyConstraintSet create(ConstraintSet<UnifyPair> unifyCons) {
|
||||||
|
SerializedUnifyConstraintSet constraintSet = new SerializedUnifyConstraintSet();
|
||||||
|
constraintSet.undConstraints = unifyCons.getUndConstraints().stream().map(SerializedUnifyPair::create).toArray(SerializedUnifyPair[]::new);
|
||||||
|
constraintSet.oderConstraints = unifyCons.getOderConstraints().stream().map(constraints ->
|
||||||
|
constraints.stream().map(SerializedUnifyPairConstraint::create).toArray(SerializedUnifyPairConstraint[]::new)
|
||||||
|
).toArray(SerializedUnifyPairConstraint[][]::new);
|
||||||
|
return constraintSet;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ConstraintSet<UnifyPair> toObject() {
|
||||||
|
ConstraintSet<UnifyPair> consSet = new ConstraintSet<>();
|
||||||
|
|
||||||
|
Constraint<UnifyPair> undCons = new Constraint<>();
|
||||||
|
undCons.addAll(Arrays.stream(undConstraints).map(SerializedUnifyPair::toObject).toList());
|
||||||
|
consSet.addAllUndConstraint(undCons);
|
||||||
|
|
||||||
|
List<Set<Constraint<UnifyPair>>> oderCons = new ArrayList<>(Arrays.stream(oderConstraints).map(oderConsSet ->
|
||||||
|
new HashSet<>(
|
||||||
|
Arrays.stream(oderConsSet).map(SerializedUnifyPairConstraint::toObject).toList()
|
||||||
|
)
|
||||||
|
).toList());
|
||||||
|
consSet.addAllOderConstraint(oderCons);
|
||||||
|
|
||||||
|
return consSet;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,32 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.PairOperator;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see UnifyPair
|
||||||
|
*/
|
||||||
|
public class SerializedUnifyPair implements IPacket.IDataContainer<UnifyPair> {
|
||||||
|
|
||||||
|
public SerializedUnifyTypeWrapper lhs;
|
||||||
|
public SerializedUnifyTypeWrapper rhs;
|
||||||
|
@JsonProperty("o")
|
||||||
|
public PairOperator operator;
|
||||||
|
|
||||||
|
public static SerializedUnifyPair create(UnifyPair unifyPair) {
|
||||||
|
SerializedUnifyPair pair = new SerializedUnifyPair();
|
||||||
|
pair.lhs = SerializedUnifyTypeWrapper.create(unifyPair.getLhsType());
|
||||||
|
pair.rhs = SerializedUnifyTypeWrapper.create(unifyPair.getRhsType());
|
||||||
|
pair.operator = unifyPair.getPairOp();
|
||||||
|
return pair;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UnifyPair toObject() {
|
||||||
|
return new UnifyPair(lhs.toObject(), rhs.toObject(), operator);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,52 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.constraints.Constraint;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyPair;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see Constraint<UnifyPair>
|
||||||
|
*/
|
||||||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||||
|
public class SerializedUnifyPairConstraint implements IPacket.IDataContainer<Constraint<UnifyPair>> {
|
||||||
|
|
||||||
|
@JsonProperty("i")
|
||||||
|
public boolean isInherited;
|
||||||
|
@JsonProperty("ec")
|
||||||
|
public SerializedUnifyPairConstraint extendedConstraint = null;
|
||||||
|
@JsonProperty("p")
|
||||||
|
public SerializedUnifyPair[] methodSignatureConstraints;
|
||||||
|
@JsonProperty("c")
|
||||||
|
public SerializedUnifyPair[] constraintElements;
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedUnifyPairConstraint create(Constraint<UnifyPair> constraint) {
|
||||||
|
SerializedUnifyPairConstraint cons = new SerializedUnifyPairConstraint();
|
||||||
|
cons.constraintElements = constraint.stream().map(SerializedUnifyPair::create).toArray(SerializedUnifyPair[]::new);
|
||||||
|
cons.isInherited = constraint.isInherited();
|
||||||
|
if (constraint.getExtendConstraint() != null) {
|
||||||
|
cons.extendedConstraint = SerializedUnifyPairConstraint.create(constraint.getExtendConstraint());
|
||||||
|
}
|
||||||
|
cons.methodSignatureConstraints = constraint.getmethodSignatureConstraint().stream().map(SerializedUnifyPair::create).toArray(SerializedUnifyPair[]::new);
|
||||||
|
return cons;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Constraint<UnifyPair> toObject() {
|
||||||
|
Constraint<UnifyPair> cons = new Constraint<>();
|
||||||
|
|
||||||
|
cons.addAll(Arrays.stream(constraintElements).map(SerializedUnifyPair::toObject).toList());
|
||||||
|
cons.setIsInherited(isInherited);
|
||||||
|
if (extendedConstraint != null) {
|
||||||
|
cons.setExtendConstraint(extendedConstraint.toObject());
|
||||||
|
}
|
||||||
|
cons.setmethodSignatureConstraint(new HashSet<>(Arrays.stream(methodSignatureConstraints).map(SerializedUnifyPair::toObject).toList()));
|
||||||
|
return cons;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,65 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.unifyType.SerializedExtendsType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.unifyType.SerializedFunNType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.unifyType.SerializedPlaceholderType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.unifyType.SerializedReferenceType;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.unifyType.SerializedSuperType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.ExtendsType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.FunNType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.PlaceholderType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.ReferenceType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.SuperType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see UnifyType
|
||||||
|
*/
|
||||||
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
||||||
|
public class SerializedUnifyTypeWrapper implements IPacket.IDataContainer<UnifyType> {
|
||||||
|
|
||||||
|
@JsonProperty("e")
|
||||||
|
public SerializedExtendsType extendsType = null;
|
||||||
|
@JsonProperty("s")
|
||||||
|
public SerializedSuperType superType = null;
|
||||||
|
@JsonProperty("r")
|
||||||
|
public SerializedReferenceType referenceType = null;
|
||||||
|
@JsonProperty("f")
|
||||||
|
public SerializedFunNType funNType = null;
|
||||||
|
@JsonProperty("p")
|
||||||
|
public SerializedPlaceholderType placeholderType = null;
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedUnifyTypeWrapper create(UnifyType unifyType) {
|
||||||
|
SerializedUnifyTypeWrapper wrapper = new SerializedUnifyTypeWrapper();
|
||||||
|
|
||||||
|
if (unifyType instanceof ExtendsType)
|
||||||
|
wrapper.extendsType = SerializedExtendsType.create((ExtendsType) unifyType);
|
||||||
|
else if (unifyType instanceof SuperType)
|
||||||
|
wrapper.superType = SerializedSuperType.create((SuperType) unifyType);
|
||||||
|
else if (unifyType instanceof ReferenceType)
|
||||||
|
wrapper.referenceType = SerializedReferenceType.create((ReferenceType) unifyType);
|
||||||
|
else if (unifyType instanceof FunNType)
|
||||||
|
wrapper.funNType = SerializedFunNType.create((FunNType) unifyType);
|
||||||
|
else if (unifyType instanceof PlaceholderType)
|
||||||
|
wrapper.placeholderType = SerializedPlaceholderType.create((PlaceholderType) unifyType);
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UnifyType toObject() {
|
||||||
|
if (extendsType != null) return extendsType.toObject();
|
||||||
|
if (superType != null) return superType.toObject();
|
||||||
|
if (referenceType != null) return referenceType.toObject();
|
||||||
|
if (funNType != null) return funNType.toObject();
|
||||||
|
if (placeholderType != null) return placeholderType.toObject();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,38 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.resultPairs;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedTokenWrapper;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairNoResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see PairNoResult
|
||||||
|
*/
|
||||||
|
public class SerializedPairNoResult implements IPacket.IDataContainer<PairNoResult> {
|
||||||
|
|
||||||
|
@JsonProperty("l")
|
||||||
|
public SerializedTokenWrapper left;
|
||||||
|
@JsonProperty("r")
|
||||||
|
public SerializedTokenWrapper right;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use a static create method to leave the default constructor and simplify list conversions
|
||||||
|
*/
|
||||||
|
public static SerializedPairNoResult create(PairNoResult pair) {
|
||||||
|
SerializedPairNoResult serialized = new SerializedPairNoResult();
|
||||||
|
serialized.left = SerializedTokenWrapper.create(pair.getLeft());
|
||||||
|
serialized.right = SerializedTokenWrapper.create(pair.getRight());
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PairNoResult toObject() {
|
||||||
|
return new PairNoResult(
|
||||||
|
left.toObject(),
|
||||||
|
right.toObject()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,34 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.resultPairs;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedPlaceholderType;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairTPHEqualTPH;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see PairTPHEqualTPH
|
||||||
|
*/
|
||||||
|
public class SerializedPairTPHEqualTPH implements IPacket.IDataContainer<PairTPHEqualTPH> {
|
||||||
|
|
||||||
|
@JsonProperty("l")
|
||||||
|
public SerializedPlaceholderType left;
|
||||||
|
@JsonProperty("r")
|
||||||
|
public SerializedPlaceholderType right;
|
||||||
|
|
||||||
|
public static SerializedPairTPHEqualTPH create(PairTPHEqualTPH pair) {
|
||||||
|
SerializedPairTPHEqualTPH serialized = new SerializedPairTPHEqualTPH();
|
||||||
|
serialized.left = SerializedPlaceholderType.create(pair.getLeft());
|
||||||
|
serialized.right = SerializedPlaceholderType.create(pair.getRight());
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PairTPHEqualTPH toObject() {
|
||||||
|
return new PairTPHEqualTPH(
|
||||||
|
left.toObject(),
|
||||||
|
right.toObject()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,36 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.resultPairs;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedTokenWrapper;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedPlaceholderType;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairTPHequalRefTypeOrWildcardType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see PairTPHequalRefTypeOrWildcardType
|
||||||
|
*/
|
||||||
|
public class SerializedPairTPHequalRefTypeOrWildcardType implements IPacket.IDataContainer<PairTPHequalRefTypeOrWildcardType> {
|
||||||
|
|
||||||
|
@JsonProperty("l")
|
||||||
|
public SerializedPlaceholderType left;
|
||||||
|
@JsonProperty("r")
|
||||||
|
public SerializedTokenWrapper right;
|
||||||
|
|
||||||
|
public static SerializedPairTPHequalRefTypeOrWildcardType create(PairTPHequalRefTypeOrWildcardType pair) {
|
||||||
|
SerializedPairTPHequalRefTypeOrWildcardType serialized = new SerializedPairTPHequalRefTypeOrWildcardType();
|
||||||
|
serialized.left = SerializedPlaceholderType.create(pair.left);
|
||||||
|
serialized.right = SerializedTokenWrapper.create(pair.right);
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PairTPHequalRefTypeOrWildcardType toObject() {
|
||||||
|
return new PairTPHequalRefTypeOrWildcardType(
|
||||||
|
left.toObject(),
|
||||||
|
right.toObject()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,34 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.resultPairs;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.token.SerializedPlaceholderType;
|
||||||
|
import de.dhbwstuttgart.typeinference.result.PairTPHsmallerTPH;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see PairTPHsmallerTPH
|
||||||
|
*/
|
||||||
|
public class SerializedPairTPHsmallerTPH implements IPacket.IDataContainer<PairTPHsmallerTPH> {
|
||||||
|
|
||||||
|
@JsonProperty("l")
|
||||||
|
public SerializedPlaceholderType left;
|
||||||
|
@JsonProperty("r")
|
||||||
|
public SerializedPlaceholderType right;
|
||||||
|
|
||||||
|
public static SerializedPairTPHsmallerTPH create(PairTPHsmallerTPH pair) {
|
||||||
|
SerializedPairTPHsmallerTPH serialized = new SerializedPairTPHsmallerTPH();
|
||||||
|
serialized.left = SerializedPlaceholderType.create(pair.left);
|
||||||
|
serialized.right = SerializedPlaceholderType.create(pair.right);
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PairTPHsmallerTPH toObject() {
|
||||||
|
return new PairTPHsmallerTPH(
|
||||||
|
left.toObject(),
|
||||||
|
right.toObject()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@@ -1,31 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers.serialized;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonSubTypes;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonTypeInfo;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Use the following classes for an intermediate serialized tree structure
|
|
||||||
*/
|
|
||||||
@JsonTypeInfo(
|
|
||||||
use = JsonTypeInfo.Id.NAME,
|
|
||||||
include = JsonTypeInfo.As.PROPERTY,
|
|
||||||
property = "_t"
|
|
||||||
)
|
|
||||||
@JsonSubTypes({
|
|
||||||
@JsonSubTypes.Type(value = SerialMap.class, name = "m"),
|
|
||||||
@JsonSubTypes.Type(value = SerialList.class, name = "l"),
|
|
||||||
@JsonSubTypes.Type(value = SerialValue.class, name = "v"),
|
|
||||||
@JsonSubTypes.Type(value = SerialUUID.class, name = "u")
|
|
||||||
})
|
|
||||||
public interface ISerialNode {
|
|
||||||
|
|
||||||
default <T extends ISerialNode> T assertType(Class<T> type) {
|
|
||||||
if (type.isInstance(this)) {
|
|
||||||
return (T) this;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Expected ISerialNode to be of type " + type.getName()
|
|
||||||
+ " but found " + this.getClass().getName() + " instead");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,74 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers.serialized;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.function.Function;
|
|
||||||
import java.util.stream.Stream;
|
|
||||||
|
|
||||||
public class SerialList<I extends ISerialNode> extends ArrayList<I> implements ISerialNode {
|
|
||||||
public SerialList() {}
|
|
||||||
public SerialList(Collection<I> data) {
|
|
||||||
this.addAll(data);
|
|
||||||
}
|
|
||||||
public SerialList(Stream<I> data) {
|
|
||||||
this(data.toList());
|
|
||||||
}
|
|
||||||
public SerialList(I[] data) {
|
|
||||||
this(Arrays.stream(data).toList());
|
|
||||||
}
|
|
||||||
|
|
||||||
@SafeVarargs
|
|
||||||
@JsonIgnore
|
|
||||||
public static <A extends ISerialNode> ArrayList<A> from(A ...values) {
|
|
||||||
ArrayList<A> list = new SerialList<>();
|
|
||||||
Collections.addAll(list, values);
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
@JsonIgnore
|
|
||||||
public static <A,B extends ISerialNode> SerialList<B> fromMapped(Stream<A> data, Function<A,B> mapper) {
|
|
||||||
return new SerialList<>(data.map(mapper).toList());
|
|
||||||
}
|
|
||||||
@JsonIgnore
|
|
||||||
public static <A,B extends ISerialNode> SerialList<B> fromMapped(Collection<A> data, Function<A,B> mapper) {
|
|
||||||
return SerialList.fromMapped(data.stream(), mapper);
|
|
||||||
}
|
|
||||||
@JsonIgnore
|
|
||||||
public static <A,B extends ISerialNode> SerialList<B> fromMapped(A[] data, Function<A,B> mapper) {
|
|
||||||
return SerialList.fromMapped(Arrays.stream(data), mapper);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialList<SerialMap> assertListOfMaps() {
|
|
||||||
if (this.isEmpty() || this.get(0) instanceof SerialMap) {
|
|
||||||
return (SerialList<SerialMap>) this;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Required List to contain SerialMap elements but condition failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialList<SerialList<?>> assertListOfLists() {
|
|
||||||
if (this.isEmpty() || this.get(0) instanceof SerialList) {
|
|
||||||
return (SerialList<SerialList<?>>) this;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Required List to contain SerialList elements but condition failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialList<SerialValue<?>> assertListOfValues() {
|
|
||||||
if (this.isEmpty() || this.get(0) instanceof SerialValue) {
|
|
||||||
return (SerialList<SerialValue<?>>) this;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Required List to contain SerialValue elements but condition failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialList<SerialUUID> assertListOfUUIDs() {
|
|
||||||
if (this.isEmpty() || this.get(0) instanceof SerialUUID) {
|
|
||||||
return (SerialList<SerialUUID>) this;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Required List to contain SerialUUID elements but condition failed");
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,84 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers.serialized;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.Map;
|
|
||||||
import org.jspecify.annotations.Nullable;
|
|
||||||
|
|
||||||
public class SerialMap extends HashMap<String, ISerialNode> implements ISerialNode {
|
|
||||||
|
|
||||||
public SerialMap() {
|
|
||||||
super();
|
|
||||||
}
|
|
||||||
|
|
||||||
public SerialMap(Map<String, ISerialNode> data) {
|
|
||||||
super(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void put(String key, Boolean value) {
|
|
||||||
this.put(key, new SerialValue<>(value));
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void put(String key, String value) {
|
|
||||||
this.put(key, new SerialValue<>(value));
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void put(String key, Number value) {
|
|
||||||
this.put(key, new SerialValue<>(value));
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
private <T> T get(String key, Class<T> expectedType) {
|
|
||||||
if (!this.containsKey(key)) {
|
|
||||||
throw new RuntimeException("Missing required value " + key + " in ObjectMap");
|
|
||||||
}
|
|
||||||
var element = this.get(key);
|
|
||||||
if (element != null && element.getClass() != expectedType) {
|
|
||||||
throw new RuntimeException(
|
|
||||||
"Required value " + key + " to be of type " + expectedType.getName() + " but found " + element.getClass().getName()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return (T)element;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialList<?> getList(String key) {
|
|
||||||
return this.get(key, SerialList.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialList<?> getListOrNull(String key) {
|
|
||||||
return this.containsKey(key) ? this.getList(key) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialMap getMap(String key) {
|
|
||||||
return this.get(key, SerialMap.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialMap getMapOrNull(String key) {
|
|
||||||
return this.containsKey(key) ? this.getMap(key) : null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialValue<?> getValue(String key) {
|
|
||||||
return this.get(key, SerialValue.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialUUID getUUID(String key) {
|
|
||||||
return this.get(key, SerialUUID.class);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
@JsonIgnore
|
|
||||||
public SerialUUID getUUIDOrNull(String key) {
|
|
||||||
return this.containsKey(key) ? this.getUUID(key) : null;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,13 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers.serialized;
|
|
||||||
|
|
||||||
public class SerialUUID implements ISerialNode {
|
|
||||||
|
|
||||||
public String uuid;
|
|
||||||
|
|
||||||
public SerialUUID() {}
|
|
||||||
|
|
||||||
public SerialUUID(String uuid) {
|
|
||||||
this.uuid = uuid;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,28 +0,0 @@
|
|||||||
package de.dhbwstuttgart.server.packet.dataContainers.serialized;
|
|
||||||
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
|
|
||||||
public class SerialValue<T> implements ISerialNode {
|
|
||||||
public T value;
|
|
||||||
public static final SerialValue<Object> NULL = new SerialValue<>(null);
|
|
||||||
|
|
||||||
public SerialValue() {}
|
|
||||||
|
|
||||||
public SerialValue(T value) {
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public <A> SerialValue<A> assertValueOf(Class<A> targetClass) {
|
|
||||||
if (this.value == null || targetClass.isInstance(this.value)) {
|
|
||||||
return (SerialValue<A>) this;
|
|
||||||
}
|
|
||||||
throw new RuntimeException("Required Value to contain " + targetClass.getName() + " value but condition failed on" +
|
|
||||||
" type " + this.value.getClass().getName());
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public <A> A getOf(Class<A> targetClass) {
|
|
||||||
return this.assertValueOf(targetClass).value;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -0,0 +1,29 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.token;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedTokenWrapper;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.ExtendsWildcardType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ExtendsWildcardType
|
||||||
|
*/
|
||||||
|
public class SerializedExtendsWildcardType implements IPacket.IDataContainer<ExtendsWildcardType> {
|
||||||
|
|
||||||
|
@JsonProperty("e")
|
||||||
|
public SerializedTokenWrapper extendsType;
|
||||||
|
|
||||||
|
public static SerializedExtendsWildcardType create(ExtendsWildcardType extendsWildcardType) {
|
||||||
|
SerializedExtendsWildcardType type = new SerializedExtendsWildcardType();
|
||||||
|
type.extendsType = SerializedTokenWrapper.create(extendsWildcardType.getInnerType());
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExtendsWildcardType toObject() {
|
||||||
|
return new ExtendsWildcardType(extendsType.toObject(), new NullToken());
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,28 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.token;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.GenericRefType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see GenericRefType
|
||||||
|
*/
|
||||||
|
public class SerializedGenericRefType implements IPacket.IDataContainer<GenericRefType> {
|
||||||
|
|
||||||
|
@JsonProperty("n")
|
||||||
|
public String name;
|
||||||
|
|
||||||
|
public static SerializedGenericRefType create(GenericRefType genericRefType) {
|
||||||
|
SerializedGenericRefType serialized = new SerializedGenericRefType();
|
||||||
|
serialized.name = genericRefType.getParsedName();
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GenericRefType toObject() {
|
||||||
|
return new GenericRefType(name, new NullToken());
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,27 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.token;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.TypePlaceholder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see TypePlaceholder
|
||||||
|
*/
|
||||||
|
public class SerializedPlaceholderType implements IPacket.IDataContainer<TypePlaceholder> {
|
||||||
|
|
||||||
|
@JsonProperty("n")
|
||||||
|
public String name;
|
||||||
|
|
||||||
|
public static SerializedPlaceholderType create(TypePlaceholder typePlaceholder) {
|
||||||
|
SerializedPlaceholderType serialized = new SerializedPlaceholderType();
|
||||||
|
serialized.name = typePlaceholder.getName();
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TypePlaceholder toObject() {
|
||||||
|
return (TypePlaceholder) TypePlaceholder.of(name);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,40 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.token;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
|
import de.dhbwstuttgart.parser.scope.JavaClassName;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedTokenWrapper;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.RefType;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see RefType
|
||||||
|
*/
|
||||||
|
public class SerializedRefType implements IPacket.IDataContainer<RefType> {
|
||||||
|
|
||||||
|
@JsonProperty("n")
|
||||||
|
public String name;
|
||||||
|
@JsonProperty("p")
|
||||||
|
public SerializedTokenWrapper[] parameters;
|
||||||
|
|
||||||
|
public static SerializedRefType create(RefType refType) {
|
||||||
|
SerializedRefType serialized = new SerializedRefType();
|
||||||
|
|
||||||
|
serialized.name = refType.getName().toString();
|
||||||
|
serialized.parameters = refType.getParaList().stream().map(SerializedTokenWrapper::create).toArray(SerializedTokenWrapper[]::new);
|
||||||
|
|
||||||
|
return serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public RefType toObject() {
|
||||||
|
return new RefType(
|
||||||
|
new JavaClassName(name),
|
||||||
|
Arrays.stream(parameters).map(SerializedTokenWrapper::toObject).toList(),
|
||||||
|
new NullToken()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,30 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.token;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedTokenWrapper;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.SuperWildcardType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see SuperWildcardType
|
||||||
|
*/
|
||||||
|
public class SerializedSuperWildcardType implements IPacket.IDataContainer<SuperWildcardType> {
|
||||||
|
|
||||||
|
@JsonProperty("s")
|
||||||
|
public SerializedTokenWrapper superType;
|
||||||
|
|
||||||
|
public static SerializedSuperWildcardType create(SuperWildcardType superWildcardType) {
|
||||||
|
SerializedSuperWildcardType type = new SerializedSuperWildcardType();
|
||||||
|
type.superType = SerializedTokenWrapper.create(superWildcardType.getInnerType());
|
||||||
|
type.superType = SerializedTokenWrapper.create(superWildcardType.getInnerType());
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SuperWildcardType toObject() {
|
||||||
|
return new SuperWildcardType(superType.toObject(), new NullToken());
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,24 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.token;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.type.Void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see Void
|
||||||
|
*/
|
||||||
|
public class SerializedVoidType implements IPacket.IDataContainer<Void> {
|
||||||
|
|
||||||
|
public int i = 0;
|
||||||
|
|
||||||
|
public static SerializedVoidType create(Void voidType) {
|
||||||
|
return new SerializedVoidType();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Void toObject() {
|
||||||
|
return new Void(new NullToken());
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,26 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.ExtendsType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ExtendsType
|
||||||
|
*/
|
||||||
|
public class SerializedExtendsType extends SerializedWildcardType implements IPacket.IDataContainer<ExtendsType> {
|
||||||
|
|
||||||
|
public static SerializedExtendsType create(ExtendsType extendsType) {
|
||||||
|
SerializedExtendsType type = new SerializedExtendsType();
|
||||||
|
type.readWildcardTypeValues(extendsType);
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ExtendsType toObject() {
|
||||||
|
return new ExtendsType(
|
||||||
|
this.wildcardedType.toObject()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,32 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedUnifyTypeWrapper;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.FunNType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.TypeParams;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see FunNType
|
||||||
|
*/
|
||||||
|
public class SerializedFunNType extends SerializedUnifyType implements IPacket.IDataContainer<FunNType> {
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedFunNType create(FunNType funN) {
|
||||||
|
SerializedFunNType type = new SerializedFunNType();
|
||||||
|
type.readUnifyTypeValues(funN);
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FunNType toObject() {
|
||||||
|
return FunNType.getFunNType(
|
||||||
|
new TypeParams(
|
||||||
|
Arrays.stream(this.params).map(SerializedUnifyTypeWrapper::toObject).toList()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,38 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.PlaceholderType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see PlaceholderType
|
||||||
|
*/
|
||||||
|
public class SerializedPlaceholderType extends SerializedUnifyType implements IPacket.IDataContainer<PlaceholderType> {
|
||||||
|
|
||||||
|
public boolean isGenerated;
|
||||||
|
public boolean isInnerType;
|
||||||
|
public int variance;
|
||||||
|
public byte orCons;
|
||||||
|
|
||||||
|
|
||||||
|
public static SerializedPlaceholderType create(PlaceholderType placeholder) {
|
||||||
|
SerializedPlaceholderType type = new SerializedPlaceholderType();
|
||||||
|
type.readUnifyTypeValues(placeholder);
|
||||||
|
type.isGenerated = placeholder.isGenerated();
|
||||||
|
type.isInnerType = placeholder.isInnerType();
|
||||||
|
type.variance = placeholder.getVariance();
|
||||||
|
type.orCons = placeholder.getOrCons();
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PlaceholderType toObject() {
|
||||||
|
PlaceholderType placeholderType = new PlaceholderType(this.name, this.isGenerated);
|
||||||
|
placeholderType.setInnerType(this.isInnerType);
|
||||||
|
placeholderType.setVariance(this.variance);
|
||||||
|
placeholderType.setOrCons(this.orCons);
|
||||||
|
return placeholderType;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,37 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedUnifyTypeWrapper;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.ReferenceType;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.TypeParams;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see ReferenceType
|
||||||
|
*/
|
||||||
|
public class SerializedReferenceType extends SerializedUnifyType implements IPacket.IDataContainer<ReferenceType> {
|
||||||
|
|
||||||
|
@JsonProperty("gt")
|
||||||
|
public boolean genericTypeVar;
|
||||||
|
|
||||||
|
public static SerializedReferenceType create(ReferenceType referenceType) {
|
||||||
|
SerializedReferenceType type = new SerializedReferenceType();
|
||||||
|
type.readUnifyTypeValues(referenceType);
|
||||||
|
type.genericTypeVar = referenceType.isGenTypeVar();
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ReferenceType toObject() {
|
||||||
|
ReferenceType referenceType = new ReferenceType(this.name, this.genericTypeVar);
|
||||||
|
return (ReferenceType) referenceType.setTypeParams(
|
||||||
|
new TypeParams(
|
||||||
|
Arrays.stream(this.params).map(SerializedUnifyTypeWrapper::toObject).toList()
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,26 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.IPacket;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.SuperType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable container of
|
||||||
|
*
|
||||||
|
* @see SuperType
|
||||||
|
*/
|
||||||
|
public class SerializedSuperType extends SerializedWildcardType implements IPacket.IDataContainer<SuperType> {
|
||||||
|
|
||||||
|
public static SerializedSuperType create(SuperType superType) {
|
||||||
|
SerializedSuperType type = new SerializedSuperType();
|
||||||
|
type.readWildcardTypeValues(superType);
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SuperType toObject() {
|
||||||
|
return new SuperType(
|
||||||
|
this.wildcardedType.toObject()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -0,0 +1,24 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedUnifyTypeWrapper;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.UnifyType;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable abstract container of
|
||||||
|
*
|
||||||
|
* @see UnifyType
|
||||||
|
*/
|
||||||
|
abstract class SerializedUnifyType {
|
||||||
|
|
||||||
|
@JsonProperty("n")
|
||||||
|
public String name;
|
||||||
|
@JsonProperty("p")
|
||||||
|
public SerializedUnifyTypeWrapper[] params = new SerializedUnifyTypeWrapper[]{};
|
||||||
|
|
||||||
|
public void readUnifyTypeValues(UnifyType unifyType) {
|
||||||
|
name = unifyType.getName();
|
||||||
|
params = Arrays.stream(unifyType.getTypeParams().get()).map(SerializedUnifyTypeWrapper::create).toArray(SerializedUnifyTypeWrapper[]::new);
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,20 @@
|
|||||||
|
package de.dhbwstuttgart.server.packet.dataContainers.unifyType;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.server.packet.dataContainers.SerializedUnifyTypeWrapper;
|
||||||
|
import de.dhbwstuttgart.typeinference.unify.model.WildcardType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializable abstract container of
|
||||||
|
*
|
||||||
|
* @see WildcardType
|
||||||
|
*/
|
||||||
|
abstract class SerializedWildcardType extends SerializedUnifyType {
|
||||||
|
|
||||||
|
public SerializedUnifyTypeWrapper wildcardedType;
|
||||||
|
|
||||||
|
public void readWildcardTypeValues(WildcardType wildcardType) {
|
||||||
|
this.readUnifyTypeValues(wildcardType);
|
||||||
|
wildcardedType = SerializedUnifyTypeWrapper.create(wildcardType.getWildcardedType());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -4,7 +4,6 @@ import de.dhbwstuttgart.parser.NullToken;
|
|||||||
import de.dhbwstuttgart.syntaxtree.statement.Statement;
|
import de.dhbwstuttgart.syntaxtree.statement.Statement;
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.Super;
|
import de.dhbwstuttgart.syntaxtree.statement.Super;
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.SuperCall;
|
import de.dhbwstuttgart.syntaxtree.statement.SuperCall;
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefType;
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||||
import de.dhbwstuttgart.syntaxtree.type.Void;
|
import de.dhbwstuttgart.syntaxtree.type.Void;
|
||||||
import org.antlr.v4.runtime.Token;
|
import org.antlr.v4.runtime.Token;
|
||||||
|
@@ -1,9 +1,8 @@
|
|||||||
package de.dhbwstuttgart.syntaxtree;
|
package de.dhbwstuttgart.syntaxtree;
|
||||||
|
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.Expression;
|
import de.dhbwstuttgart.syntaxtree.statement.Expression;
|
||||||
import org.antlr.v4.runtime.Token;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||||
|
import org.antlr.v4.runtime.Token;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Eine Feldinitialisation steht für eine Felddeklaration mit gleichzeitiger Wertzuweisung
|
* Eine Feldinitialisation steht für eine Felddeklaration mit gleichzeitiger Wertzuweisung
|
||||||
|
@@ -1,12 +1,12 @@
|
|||||||
package de.dhbwstuttgart.syntaxtree;
|
package de.dhbwstuttgart.syntaxtree;
|
||||||
|
|
||||||
|
import com.google.common.collect.Lists;
|
||||||
import org.antlr.v4.runtime.Token;
|
import org.antlr.v4.runtime.Token;
|
||||||
|
|
||||||
import com.google.common.collect.Lists;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Iterator;
|
||||||
import de.dhbwstuttgart.parser.NullToken;
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
package de.dhbwstuttgart.syntaxtree;
|
package de.dhbwstuttgart.syntaxtree;
|
||||||
|
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||||
|
|
||||||
import org.antlr.v4.runtime.Token;
|
import org.antlr.v4.runtime.Token;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@@ -3,17 +3,14 @@ package de.dhbwstuttgart.syntaxtree;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
|
import de.dhbwstuttgart.core.IItemWithOffset;
|
||||||
import de.dhbwstuttgart.parser.NullToken;
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
|
import de.dhbwstuttgart.syntaxtree.statement.Block;
|
||||||
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||||
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceBlockInformation;
|
|
||||||
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
||||||
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation;
|
|
||||||
import de.dhbwstuttgart.typeinference.typeAlgo.TYPE;
|
|
||||||
import de.dhbwstuttgart.typeinference.typeAlgo.TYPEStmt;
|
|
||||||
import org.antlr.v4.runtime.Token;
|
import org.antlr.v4.runtime.Token;
|
||||||
|
|
||||||
import de.dhbwstuttgart.core.IItemWithOffset;
|
import java.util.ArrayList;
|
||||||
import de.dhbwstuttgart.syntaxtree.statement.Block;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stellt eine Methode dar. Problem: Parser kann nicht zwischen Methode und
|
* Stellt eine Methode dar. Problem: Parser kann nicht zwischen Methode und
|
||||||
|
@@ -5,8 +5,11 @@ import java.util.*;
|
|||||||
|
|
||||||
import de.dhbwstuttgart.parser.NullToken;
|
import de.dhbwstuttgart.parser.NullToken;
|
||||||
import de.dhbwstuttgart.parser.scope.JavaClassName;
|
import de.dhbwstuttgart.parser.scope.JavaClassName;
|
||||||
import de.dhbwstuttgart.typeinference.constraints.ConstraintSet;
|
|
||||||
import de.dhbwstuttgart.typeinference.assumptions.TypeInferenceInformation;
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
//import sun.security.x509.X509CertInfo;
|
//import sun.security.x509.X509CertInfo;
|
||||||
|
|
||||||
public class SourceFile extends SyntaxTreeNode {
|
public class SourceFile extends SyntaxTreeNode {
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
package de.dhbwstuttgart.syntaxtree;
|
|
||||||
|
|
||||||
import de.dhbwstuttgart.util.Logger;
|
|
||||||
|
|
||||||
public class SyntaxTree {
|
|
||||||
|
|
||||||
public static Logger logger = new Logger("SyntaxTree");
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user