2018-08-09 16:37:52 -04:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2018-07-11 12:55:18 -04:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2018-08-09 16:37:52 -04:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2019-12-13 00:36:00 -05:00
|
|
|
use File::Basename;
|
2016-01-06 00:27:52 -05:00
|
|
|
|
2019-10-31 01:37:05 -04:00
|
|
|
sub fail_check {
|
|
|
|
my ($current_version) = @_;
|
|
|
|
my $current_version_text = $current_version
|
|
|
|
? "Your current version is: $current_version."
|
2019-10-31 02:30:01 -04:00
|
|
|
: "Make sure that \"java\" is installed and on your PATH.";
|
2019-10-31 01:37:05 -04:00
|
|
|
|
|
|
|
print STDERR <<"EOT";
|
2020-03-11 12:22:39 -04:00
|
|
|
Druid only officially supports Java 8. Any Java version later than 8 is still experimental. $current_version_text
|
2019-10-31 01:37:05 -04:00
|
|
|
|
2020-03-11 12:22:39 -04:00
|
|
|
If you believe this check is in error or you still want to proceed with Java version other than 8,
|
|
|
|
you can skip this check using an environment variable:
|
2019-10-31 01:37:05 -04:00
|
|
|
|
|
|
|
export DRUID_SKIP_JAVA_CHECK=1
|
|
|
|
|
|
|
|
Otherwise, install Java 8 and try again.
|
2019-12-13 00:36:00 -05:00
|
|
|
|
|
|
|
This script searches for Java 8 in 3 locations in the following
|
|
|
|
order
|
|
|
|
* DRUID_JAVA_HOME
|
|
|
|
* JAVA_HOME
|
|
|
|
* java (installed on PATH)
|
2019-10-31 01:37:05 -04:00
|
|
|
EOT
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $skip_var = $ENV{'DRUID_SKIP_JAVA_CHECK'};
|
|
|
|
if ($skip_var && $skip_var ne "0" && $skip_var ne "false" && $skip_var ne "f") {
|
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
2019-12-13 00:36:00 -05:00
|
|
|
my $cwd = dirname(__FILE__);
|
2020-02-19 16:44:00 -05:00
|
|
|
my $java_bin_dir = `. $cwd/java-util && get_java_bin_dir 2>&1`;
|
2019-12-13 00:36:00 -05:00
|
|
|
|
|
|
|
# If we could not find java
|
|
|
|
if ($java_bin_dir eq "") {
|
|
|
|
fail_check()
|
|
|
|
}
|
|
|
|
my $java_exec = "${java_bin_dir}/java";
|
|
|
|
my $java_version = qx[$java_exec -version 2>&1];
|
2018-08-09 16:37:52 -04:00
|
|
|
if ($?) {
|
2019-10-31 01:37:05 -04:00
|
|
|
fail_check();
|
2018-08-09 16:37:52 -04:00
|
|
|
}
|
2016-01-06 00:27:52 -05:00
|
|
|
|
2018-08-09 16:37:52 -04:00
|
|
|
# If we know it won't work, die. Otherwise hope for the best.
|
2019-10-31 01:37:05 -04:00
|
|
|
if ($java_version =~ /version \"((\d+)\.(\d+).*?)\"/ && ($2 != 1 || $3 != 8)) {
|
|
|
|
fail_check($1);
|
2018-08-09 16:37:52 -04:00
|
|
|
}
|