Skip to content

Commit bb97608

Browse files
authored
Merge pull request #317 from viperproject/upgrade-scala-2.13
Upgrade Java bindings for Scala 2.13
2 parents ee5def9 + a1743a3 commit bb97608

File tree

12 files changed

+86
-25
lines changed

12 files changed

+86
-25
lines changed

.github/workflows/benchmarks.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
uses: actions/setup-python@v2
2323
with:
2424
python-version: '3.x'
25+
- uses: actions/setup-java@v1
26+
with:
27+
java-version: '15'
2528
- name: Set up the environment
2629
run: python x.py setup
2730
- name: Build with cargo

.github/workflows/coverage.yml

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
uses: actions/setup-python@v2
2323
with:
2424
python-version: '3.x'
25+
- uses: actions/setup-java@v1
26+
with:
27+
java-version: '15'
2528
- name: Set up the environment
2629
run: python x.py setup
2730
- name: Build with cargo

.github/workflows/deploy.yml

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
uses: actions/setup-python@v2
2424
with:
2525
python-version: '3.x'
26+
- uses: actions/setup-java@v1
27+
with:
28+
java-version: '15'
2629
- name: Set up the environment
2730
run: python x.py setup
2831
- name: Build with cargo --release

.github/workflows/test-on-crates.yml

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
uses: actions/setup-python@v2
1818
with:
1919
python-version: '3.x'
20+
- uses: actions/setup-java@v1
21+
with:
22+
java-version: '15'
2023
- name: Set up the environment
2124
run: python x.py setup
2225
- name: Build with cargo --release

.github/workflows/test.yml

+9
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
uses: actions/setup-python@v2
2525
with:
2626
python-version: '3.x'
27+
- uses: actions/setup-java@v1
28+
with:
29+
java-version: '15'
2730
- name: Set up the environment
2831
run: python x.py setup
2932
- name: Cache cargo
@@ -53,6 +56,9 @@ jobs:
5356
uses: actions/setup-python@v2
5457
with:
5558
python-version: '3.x'
59+
- uses: actions/setup-java@v1
60+
with:
61+
java-version: '15'
5662
- name: Set up the environment
5763
run: python x.py setup
5864
- name: Build with cargo
@@ -75,6 +81,9 @@ jobs:
7581
uses: actions/setup-python@v2
7682
with:
7783
python-version: '3.x'
84+
- uses: actions/setup-java@v1
85+
with:
86+
java-version: '15'
7887
- name: Set up the environment
7988
run: python x.py setup
8089
- name: Build with cargo

prusti-tests/tests/verify/pass/quick/knapsack.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
//! + We could not express the postcondition that the result is
1717
//! correct because that requires support for comprehensions.
1818
19-
// ignore-test: this test it's flaky because it uses nonlinear arithmetic.
19+
// ignore-test: this test is flaky because it uses nonlinear arithmetic.
2020

2121
use prusti_contracts::*;
2222

prusti-tests/tests/verify/pass/quick/mut-borrows-binary-search.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
//! Regression tests extracted from
22
//! https://rosettacode.org/wiki/Binary_search#Rust
33
4+
// ignore-test: this test is flaky.
5+
46
use prusti_contracts::*;
57

68
pub struct VecWrapperI32{

test-crates/src/main.rs

+37-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
// License, v. 2.0. If a copy of the MPL was not distributed with this
55
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
66

7-
use std::path::{Path, PathBuf};
7+
use std::env;
88
use std::error::Error;
99
use std::fs;
10+
use std::path::{Path, PathBuf};
11+
use std::process::Command;
1012

1113
use rustwide::{
1214
cmd,
@@ -44,6 +46,7 @@ struct CargoPrusti {
4446
prusti_home: PathBuf,
4547
viper_home: PathBuf,
4648
z3_exe: PathBuf,
49+
java_home: Option<PathBuf>,
4750
}
4851

4952
impl cmd::Runnable for CargoPrusti {
@@ -52,9 +55,12 @@ impl cmd::Runnable for CargoPrusti {
5255
}
5356

5457
fn prepare_command<'w, 'pl>(&self, cmd: cmd::Command<'w, 'pl>) -> cmd::Command<'w, 'pl> {
58+
let java_home = self.java_home.as_ref()
59+
.map(|p| p.to_str().unwrap())
60+
.unwrap_or("/usr/lib/jvm/default-java");
5561
cmd.env("VIPER_HOME", self.viper_home.to_str().unwrap())
5662
.env("Z3_EXE", self.z3_exe.join("z3").to_str().unwrap())
57-
.env("JAVA_HOME", "/usr/lib/jvm/java-8-openjdk-amd64")
63+
.env("JAVA_HOME", java_home)
5864
.env("CARGO_PATH", "/opt/rustwide/cargo-home/bin/cargo")
5965
}
6066
}
@@ -77,6 +83,27 @@ fn get_rust_toolchain() -> RustToolchain {
7783
rust_toolchain.toolchain
7884
}
7985

86+
/// Find the Java home directory
87+
pub fn find_java_home() -> Option<PathBuf> {
88+
Command::new("java")
89+
.arg("-XshowSettings:properties")
90+
.arg("-version")
91+
.output()
92+
.ok()
93+
.and_then(|output| {
94+
let stdout = String::from_utf8_lossy(&output.stdout);
95+
let stderr = String::from_utf8_lossy(&output.stderr);
96+
for line in stdout.lines().chain(stderr.lines()) {
97+
if line.contains("java.home") {
98+
let pos = line.find('=').unwrap() + 1;
99+
let path = line[pos..].trim();
100+
return Some(PathBuf::from(path));
101+
}
102+
}
103+
None
104+
})
105+
}
106+
80107
fn main() -> Result<(), Box<dyn Error>> {
81108
color_backtrace::install();
82109
setup_logs();
@@ -85,14 +112,20 @@ fn main() -> Result<(), Box<dyn Error>> {
85112
let host_prusti_home = Path::new("target/release");
86113
let host_viper_home = Path::new("viper_tools/backends");
87114
let host_z3_home = Path::new("viper_tools/z3/bin");
115+
let host_java_home = env::var("JAVA_HOME").ok().map(|s| s.into())
116+
.or_else(|| find_java_home())
117+
.expect("Please set JAVA_HOME");
88118
let guest_prusti_home = Path::new("/opt/rustwide/prusti-home");
89119
let guest_viper_home = Path::new("/opt/rustwide/viper-home");
90120
let guest_z3_home = Path::new("/opt/rustwide/z3-home");
121+
let guest_java_home = Path::new("/opt/rustwide/java-home");
91122

123+
info!("Using host's Java home {:?}", host_java_home);
92124
let cargo_prusti = CargoPrusti {
93125
prusti_home: guest_prusti_home.to_path_buf(),
94126
viper_home: guest_viper_home.to_path_buf(),
95127
z3_exe: guest_z3_home.to_path_buf(),
128+
java_home: Some(guest_java_home.to_path_buf()),
96129
};
97130

98131
info!("Crate a new workspace...");
@@ -177,7 +210,8 @@ fn main() -> Result<(), Box<dyn Error>> {
177210
.enable_networking(false)
178211
.mount(&host_prusti_home, &guest_prusti_home, cmd::MountKind::ReadOnly)
179212
.mount(&host_viper_home, &guest_viper_home, cmd::MountKind::ReadOnly)
180-
.mount(&host_z3_home, &guest_z3_home, cmd::MountKind::ReadOnly);
213+
.mount(&host_z3_home, &guest_z3_home, cmd::MountKind::ReadOnly)
214+
.mount(&host_java_home, &guest_java_home, cmd::MountKind::ReadOnly);
181215

182216
let mut storage = LogStorage::new(LevelFilter::Info);
183217
storage.set_max_size(1024 * 1024);

viper-sys/build.rs

+12-8
Original file line numberDiff line numberDiff line change
@@ -107,17 +107,21 @@ fn main() {
107107
java_class!("scala.math.BigInt", vec![
108108
constructor!(),
109109
]),
110-
java_class!("scala.collection.mutable.ArraySeq", vec![
111-
constructor!(),
112-
method!("update"),
110+
java_class!("scala.collection.mutable.ArrayBuffer", vec![
111+
constructor!("(I)V"),
112+
method!("append", "(Ljava/lang/Object;)Lscala/collection/mutable/Buffer;"),
113+
method!("toSeq"),
113114
]),
114115
java_class!("scala.collection.mutable.ListBuffer", vec![
115116
constructor!(),
116117
]),
117118
java_class!("scala.collection.immutable.HashMap", vec![
118-
constructor!(),
119+
constructor!("()V"),
119120
method!("updated", "(Ljava/lang/Object;Ljava/lang/Object;)Lscala/collection/immutable/HashMap;"),
120121
]),
122+
java_class!("scala.collection.immutable.Nil$", vec![
123+
object_getter!(),
124+
]),
121125
java_class!("scala.collection.Seq", vec![
122126
method!("length"),
123127
method!("apply", "(I)Ljava/lang/Object;"),
@@ -129,7 +133,7 @@ fn main() {
129133
]),
130134
// Silicon
131135
java_class!("viper.silicon.Silicon", vec![
132-
constructor!("(Lviper/silver/plugin/PluginAwareReporter;Lscala/collection/Seq;)V"),
136+
constructor!("(Lviper/silver/plugin/PluginAwareReporter;Lscala/collection/immutable/Seq;)V"),
133137
]),
134138
// Carbon
135139
java_class!("viper.carbon.CarbonVerifier", vec![
@@ -229,7 +233,7 @@ fn main() {
229233
]),
230234
java_class!("viper.silver.ast.DomainFuncApp$", vec![
231235
object_getter!(),
232-
method!("apply", "(Lviper/silver/ast/DomainFunc;Lscala/collection/Seq;Lscala/collection/immutable/Map;Lviper/silver/ast/Position;Lviper/silver/ast/Info;Lviper/silver/ast/ErrorTrafo;)Lviper/silver/ast/DomainFuncApp;"),
236+
method!("apply", "(Lviper/silver/ast/DomainFunc;Lscala/collection/immutable/Seq;Lscala/collection/immutable/Map;Lviper/silver/ast/Position;Lviper/silver/ast/Info;Lviper/silver/ast/ErrorTrafo;)Lviper/silver/ast/DomainFuncApp;"),
233237
]),
234238
java_class!("viper.silver.ast.DomainType", vec![
235239
constructor!(),
@@ -299,11 +303,11 @@ fn main() {
299303
]),
300304
java_class!("viper.silver.ast.FuncApp", vec![
301305
constructor!(),
302-
method!("apply", "(Ljava/lang/String;Lscala/collection/Seq;Lviper/silver/ast/Position;Lviper/silver/ast/Info;Lviper/silver/ast/Type;Lviper/silver/ast/ErrorTrafo;)Lviper/silver/ast/FuncApp;"),
306+
method!("apply", "(Ljava/lang/String;Lscala/collection/immutable/Seq;Lviper/silver/ast/Position;Lviper/silver/ast/Info;Lviper/silver/ast/Type;Lviper/silver/ast/ErrorTrafo;)Lviper/silver/ast/FuncApp;"),
303307
]),
304308
java_class!("viper.silver.ast.FuncApp$", vec![
305309
object_getter!(),
306-
method!("apply", "(Lviper/silver/ast/Function;Lscala/collection/Seq;Lviper/silver/ast/Position;Lviper/silver/ast/Info;Lviper/silver/ast/ErrorTrafo;)Lviper/silver/ast/FuncApp;"),
310+
method!("apply", "(Lviper/silver/ast/Function;Lscala/collection/immutable/Seq;Lviper/silver/ast/Position;Lviper/silver/ast/Info;Lviper/silver/ast/ErrorTrafo;)Lviper/silver/ast/FuncApp;"),
307311
]),
308312
java_class!("viper.silver.ast.Function", vec![
309313
constructor!(),

viper-sys/tests/verify_empty_program.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ fn verify_empty_program() {
5959
env.with_local_frame(32, || {
6060
let reporter = viper::silver::reporter::NoopReporter_object::with(&env).singleton()?;
6161
let plugin_aware_reporter = viper::silver::plugin::PluginAwareReporter::with(&env).new(reporter)?;
62-
let debug_info = scala::collection::mutable::ArraySeq::with(&env).new(0)?;
62+
let debug_info = scala::collection::immutable::Nil_object::with(&env).singleton()?;
6363
let silicon = viper::silicon::Silicon::with(&env).new(plugin_aware_reporter, debug_info)?;
6464
let verifier = viper::silver::verifier::Verifier::with(&env);
6565

@@ -97,12 +97,12 @@ fn verify_empty_program() {
9797
verifier.call_start(silicon)?;
9898

9999
let program = viper::silver::ast::Program::with(&env).new(
100-
scala::collection::mutable::ArraySeq::with(&env).new(0)?,
101-
scala::collection::mutable::ArraySeq::with(&env).new(0)?,
102-
scala::collection::mutable::ArraySeq::with(&env).new(0)?,
103-
scala::collection::mutable::ArraySeq::with(&env).new(0)?,
104-
scala::collection::mutable::ArraySeq::with(&env).new(0)?,
105-
scala::collection::mutable::ArraySeq::with(&env).new(0)?,
100+
scala::collection::immutable::Nil_object::with(&env).singleton()?,
101+
scala::collection::immutable::Nil_object::with(&env).singleton()?,
102+
scala::collection::immutable::Nil_object::with(&env).singleton()?,
103+
scala::collection::immutable::Nil_object::with(&env).singleton()?,
104+
scala::collection::immutable::Nil_object::with(&env).singleton()?,
105+
scala::collection::immutable::Nil_object::with(&env).singleton()?,
106106
viper::silver::ast::NoPosition_object::with(&env).singleton()?,
107107
viper::silver::ast::NoInfo_object::with(&env).singleton()?,
108108
viper::silver::ast::NoTrafos_object::with(&env).singleton()?,

viper/src/jni_utils.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ impl<'a> JniUtils<'a> {
100100

101101
/// Converts a Rust Vec<JObject> to a Scala Seq
102102
pub fn new_seq(&self, objects: &[JObject]) -> JObject {
103-
let array_seq_wrapper = scala::collection::mutable::ArraySeq::with(self.env);
103+
let array_buffer_wrapper = scala::collection::mutable::ArrayBuffer::with(self.env);
104104
let len = objects.len();
105-
let res = self.unwrap_result(array_seq_wrapper.new(len as i32));
106-
for (i, obj) in objects.iter().enumerate() {
107-
self.unwrap_result(array_seq_wrapper.call_update(res, i as i32, *obj));
105+
let res = self.unwrap_result(array_buffer_wrapper.new(len as i32));
106+
for obj in objects.iter() {
107+
self.unwrap_result(array_buffer_wrapper.call_append(res, *obj));
108108
}
109-
res
109+
self.unwrap_result(array_buffer_wrapper.call_toSeq(res))
110110
}
111111

112112
/// Converts a Java String to a Rust String

x.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def setup_ubuntu():
191191
shell('sudo apt-get update')
192192
shell('sudo apt-get install -y '
193193
'build-essential pkg-config '
194-
'wget gcc libssl-dev openjdk-8-jdk')
194+
'wget gcc libssl-dev')
195195
# Download Viper.
196196
shell('wget -q http://viper.ethz.ch/downloads/ViperToolsNightlyLinux.zip')
197197
shell('unzip ViperToolsNightlyLinux.zip -d viper_tools')

0 commit comments

Comments
 (0)