提交 4367f712 编写于 作者: M mchung

7078024: Update JDK service tag for JDK 8

Reviewed-by: paulk
上级 83fe1bfa
...@@ -47,7 +47,7 @@ FILES_copy = $(SERVICETAG_RESOURCES_DIR)/product_registration.xsd \ ...@@ -47,7 +47,7 @@ FILES_copy = $(SERVICETAG_RESOURCES_DIR)/product_registration.xsd \
# Add all properties files to the FILES_copy list # Add all properties files to the FILES_copy list
SWORDFISH_properties := $(shell \ SWORDFISH_properties := $(shell \
$(CD) $(SHARE_SRC)/classes/com/sun/servicetag/resources; \ $(CD) $(SHARE_SRC)/classes/com/sun/servicetag/resources; \
$(FIND) . -name 'javase_*_swordfish.properties' -print ; \ $(FIND) . -name 'javase_*.properties' -print ; \
) )
FILES_copy += $(shell \ FILES_copy += $(shell \
for f in $(SWORDFISH_properties) ; do \ for f in $(SWORDFISH_properties) ; do \
......
...@@ -61,8 +61,8 @@ public class Installer { ...@@ -61,8 +61,8 @@ public class Installer {
private static RegistrationData registration; private static RegistrationData registration;
private static boolean supportRegistration; private static boolean supportRegistration;
private static String registerHtmlParent; private static String registerHtmlParent;
private static Set<Locale> supportedLocales = new HashSet<Locale>(); private static Set<Locale> supportedLocales = new HashSet<>();
private static Properties swordfishProps = null; private static Properties svcTagProps = null;
private static String[] jreArchs = null; private static String[] jreArchs = null;
static { static {
String dir = System.getProperty(SVCTAG_DIR_PATH); String dir = System.getProperty(SVCTAG_DIR_PATH);
...@@ -94,7 +94,7 @@ public class Installer { ...@@ -94,7 +94,7 @@ public class Installer {
boolean cleanup = false; boolean cleanup = false;
try { try {
// Check if we have the swordfish entries for this JRE version // Check if we have the swordfish entries for this JRE version
if (loadSwordfishEntries() == null) { if (loadServiceTagProps() == null) {
return null; return null;
} }
...@@ -144,18 +144,14 @@ public class Installer { ...@@ -144,18 +144,14 @@ public class Installer {
return registration; return registration;
} }
if (regXmlFile.exists()) { if (regXmlFile.exists()) {
BufferedInputStream in = null; try (BufferedInputStream in =
try { new BufferedInputStream(new FileInputStream(regXmlFile)))
in = new BufferedInputStream(new FileInputStream(regXmlFile)); {
registration = RegistrationData.loadFromXML(in); registration = RegistrationData.loadFromXML(in);
} catch (IllegalArgumentException ex) { } catch (IllegalArgumentException ex) {
System.err.println("Error: Bad registration data \"" + System.err.println("Error: Bad registration data \"" +
regXmlFile + "\":" + ex.getMessage()); regXmlFile + "\":" + ex.getMessage());
throw ex; throw ex;
} finally {
if (in != null) {
in.close();
}
} }
} else { } else {
registration = new RegistrationData(); registration = new RegistrationData();
...@@ -186,18 +182,14 @@ public class Installer { ...@@ -186,18 +182,14 @@ public class Installer {
deleteRegistrationHtmlPage(); deleteRegistrationHtmlPage();
getRegistrationHtmlPage(); getRegistrationHtmlPage();
BufferedOutputStream out = null; try (BufferedOutputStream out =
try { new BufferedOutputStream(new FileOutputStream(regXmlFile)))
out = new BufferedOutputStream(new FileOutputStream(regXmlFile)); {
getRegistrationData().storeToXML(out); getRegistrationData().storeToXML(out);
} catch (IllegalArgumentException ex) { } catch (IllegalArgumentException ex) {
System.err.println("Error: Bad registration data \"" + System.err.println("Error: Bad registration data \"" +
regXmlFile + "\":" + ex.getMessage()); regXmlFile + "\":" + ex.getMessage());
throw ex; throw ex;
} finally {
if (out != null) {
out.close();
}
} }
} }
...@@ -206,11 +198,9 @@ public class Installer { ...@@ -206,11 +198,9 @@ public class Installer {
* or empty set if file not exists. * or empty set if file not exists.
*/ */
private static Set<String> getInstalledURNs() throws IOException { private static Set<String> getInstalledURNs() throws IOException {
Set<String> urnSet = new HashSet<String>(); Set<String> urnSet = new HashSet<>();
if (serviceTagFile.exists()) { if (serviceTagFile.exists()) {
BufferedReader in = null; try (BufferedReader in = new BufferedReader(new FileReader(serviceTagFile))) {
try {
in = new BufferedReader(new FileReader(serviceTagFile));
String urn; String urn;
while ((urn = in.readLine()) != null) { while ((urn = in.readLine()) != null) {
urn = urn.trim(); urn = urn.trim();
...@@ -218,10 +208,6 @@ public class Installer { ...@@ -218,10 +208,6 @@ public class Installer {
urnSet.add(urn); urnSet.add(urn);
} }
} }
} finally {
if (in != null) {
in.close();
}
} }
} }
return urnSet; return urnSet;
...@@ -237,9 +223,9 @@ public class Installer { ...@@ -237,9 +223,9 @@ public class Installer {
private static ServiceTag[] getJavaServiceTagArray() throws IOException { private static ServiceTag[] getJavaServiceTagArray() throws IOException {
RegistrationData regData = getRegistrationData(); RegistrationData regData = getRegistrationData();
Set<ServiceTag> svcTags = regData.getServiceTags(); Set<ServiceTag> svcTags = regData.getServiceTags();
Set<ServiceTag> result = new HashSet<ServiceTag>(); Set<ServiceTag> result = new HashSet<>();
Properties props = loadSwordfishEntries(); Properties props = loadServiceTagProps();
String jdkUrn = props.getProperty("servicetag.jdk.urn"); String jdkUrn = props.getProperty("servicetag.jdk.urn");
String jreUrn = props.getProperty("servicetag.jre.urn"); String jreUrn = props.getProperty("servicetag.jre.urn");
for (ServiceTag st : svcTags) { for (ServiceTag st : svcTags) {
...@@ -343,8 +329,7 @@ public class Installer { ...@@ -343,8 +329,7 @@ public class Installer {
} }
private static ServiceTag newServiceTag(String svcTagSource) throws IOException { private static ServiceTag newServiceTag(String svcTagSource) throws IOException {
// Load the swoRDFish information for the service tag creation Properties props = loadServiceTagProps();
Properties props = loadSwordfishEntries();
// Determine the product URN and name // Determine the product URN and name
String productURN; String productURN;
...@@ -442,52 +427,35 @@ public class Installer { ...@@ -442,52 +427,35 @@ public class Installer {
return; return;
} }
PrintWriter out = null; try (PrintWriter out = new PrintWriter(serviceTagFile)) {
try {
out = new PrintWriter(serviceTagFile);
ServiceTag[] javaSvcTags = getJavaServiceTagArray(); ServiceTag[] javaSvcTags = getJavaServiceTagArray();
for (ServiceTag st : javaSvcTags) { for (ServiceTag st : javaSvcTags) {
// Write the instance_run to the servicetag file // Write the instance_run to the servicetag file
String instanceURN = st.getInstanceURN(); String instanceURN = st.getInstanceURN();
out.println(instanceURN); out.println(instanceURN);
} }
} finally {
if (out != null) {
out.close();
}
} }
} }
/** /**
* Load the values associated with the swoRDFish metadata entries * Load the properties for generating Java SE service tags.
* for Java SE. The swoRDFish metadata entries are different for
* different release.
* *
* @param version Version of Java SE * @param version Version of Java SE
*/ */
private static synchronized Properties loadSwordfishEntries() throws IOException { private static synchronized Properties loadServiceTagProps() throws IOException {
if (swordfishProps != null) { if (svcTagProps != null) {
return swordfishProps; return svcTagProps;
} }
// The version string for Java SE 6 is 1.6.0 // For Java SE 8 and later releases, JDK and JRE both use
// We just need the minor number in the version string // the same product number. The sworRDFish metadata were
int version = Util.getJdkVersion(); // for legacy Sun part number.
String filename = "/com/sun/servicetag/resources/javase_servicetag.properties";
String filename = "/com/sun/servicetag/resources/javase_" + try (InputStream in = Installer.class.getResourceAsStream(filename)) {
version + "_swordfish.properties"; svcTagProps = new Properties();
InputStream in = Installer.class.getResourceAsStream(filename); svcTagProps.load(in);
if (in == null) {
return null;
}
swordfishProps = new Properties();
try {
swordfishProps.load(in);
} finally {
in.close();
} }
return swordfishProps; return svcTagProps;
} }
/** /**
...@@ -546,7 +514,7 @@ public class Installer { ...@@ -546,7 +514,7 @@ public class Installer {
return jreArchs; return jreArchs;
} }
Set<String> archs = new HashSet<String>(); Set<String> archs = new HashSet<>();
String os = System.getProperty("os.name"); String os = System.getProperty("os.name");
if (os.equals("SunOS") || os.equals("Linux")) { if (os.equals("SunOS") || os.equals("Linux")) {
...@@ -681,16 +649,16 @@ public class Installer { ...@@ -681,16 +649,16 @@ public class Installer {
String country = locale.getCountry(); String country = locale.getCountry();
String variant = locale.getVariant(); String variant = locale.getVariant();
List<Locale> locales = new ArrayList<Locale>(3); List<Locale> locales = new ArrayList<>(3);
if (variant.length() > 0) { if (variant.length() > 0) {
locales.add(locale); locales.add(locale);
} }
if (country.length() > 0) { if (country.length() > 0) {
locales.add((locales.size() == 0) ? locales.add((locales.isEmpty()) ?
locale : new Locale(language, country, "")); locale : new Locale(language, country, ""));
} }
if (language.length() > 0) { if (language.length() > 0) {
locales.add((locales.size() == 0) ? locales.add((locales.isEmpty()) ?
locale : new Locale(language, "", "")); locale : new Locale(language, "", ""));
} }
return locales; return locales;
...@@ -788,14 +756,11 @@ public class Installer { ...@@ -788,14 +756,11 @@ public class Installer {
// Format the registration data in one single line // Format the registration data in one single line
StringBuilder payload = new StringBuilder(); StringBuilder payload = new StringBuilder();
String xml = regData.toString().replaceAll("\"", "%22"); String xml = regData.toString().replaceAll("\"", "%22");
BufferedReader reader = new BufferedReader(new StringReader(xml)); try (BufferedReader reader = new BufferedReader(new StringReader(xml))) {
try {
String line = null; String line = null;
while ((line = reader.readLine()) != null) { while ((line = reader.readLine()) != null) {
payload.append(line.trim()); payload.append(line.trim());
} }
} finally {
reader.close();
} }
String resourceFilename = "/com/sun/servicetag/resources/register"; String resourceFilename = "/com/sun/servicetag/resources/register";
......
# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
servicetag.jdk.urn = Q8549
servicetag.jdk.name = Java Development Kit
servicetag.jre.urn = Q8549
servicetag.jre.name = Java Runtime Environment
servicetag.parent.urn = Q8549
servicetag.parent.name = Java Platform, Standard Edition
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
/* /*
* @test * @test
* @bug 6622366 * @bug 6622366 7078024
* @summary Basic Test for ServiceTag.getJavaServiceTag() * @summary Basic Test for ServiceTag.getJavaServiceTag()
* Disable creating the service tag in the system registry. * Disable creating the service tag in the system registry.
* Verify the existence of registration.xml file and the * Verify the existence of registration.xml file and the
...@@ -86,23 +86,42 @@ public class JavaServiceTagTest { ...@@ -86,23 +86,42 @@ public class JavaServiceTagTest {
} }
} }
/**
* Tests if the running platform is a JDK.
*/
static boolean isJDK() {
// Determine the JRE path by checking the existence of
// <HOME>/jre/lib and <HOME>/lib.
String javaHome = System.getProperty("java.home");
String jrepath = javaHome + File.separator + "jre";
File f = new File(jrepath, "lib");
if (!f.exists()) {
// java.home usually points to the JRE path
jrepath = javaHome;
}
return jrepath.endsWith(File.separator + "jre");
}
private static void checkServiceTag(ServiceTag st) throws IOException { private static void checkServiceTag(ServiceTag st) throws IOException {
Properties props = loadSwordfishEntries(); Properties props = loadServiceTagProps();
if (st.getProductURN(). // jdk 8 and later, JDK and JRE have the same product URN.
equals(props.getProperty("servicetag.jdk.urn"))) { String jdkUrn = props.getProperty("servicetag.jdk.urn");
if (!st.getProductName(). String jreUrn = props.getProperty("servicetag.jre.urn");
equals(props.getProperty("servicetag.jdk.name"))) { boolean isJdk = isJDK();
if (isJdk) {
if (!st.getProductURN().equals(jdkUrn) ||
!st.getProductName().equals(
props.getProperty("servicetag.jdk.name"))) {
throw new RuntimeException("Product URN and name don't match."); throw new RuntimeException("Product URN and name don't match.");
} }
} else if (st.getProductURN(). } else {
equals(props.getProperty("servicetag.jre.urn"))) { if (!st.getProductURN().equals(jreUrn) ||
if (!st.getProductName(). !st.getProductName().equals(
equals(props.getProperty("servicetag.jre.name"))) { props.getProperty("servicetag.jre.name"))) {
throw new RuntimeException("Product URN and name don't match."); throw new RuntimeException("Product URN and name don't match.");
} }
} else {
throw new RuntimeException("Unexpected product_urn: " +
st.getProductURN());
} }
if (!st.getProductVersion(). if (!st.getProductVersion().
equals(System.getProperty("java.version"))) { equals(System.getProperty("java.version"))) {
...@@ -160,18 +179,13 @@ public class JavaServiceTagTest { ...@@ -160,18 +179,13 @@ public class JavaServiceTagTest {
} }
} }
private static Properties loadSwordfishEntries() private static Properties loadServiceTagProps()
throws IOException { throws IOException {
int version = sun.misc.Version.jdkMinorVersion(); String filename = "/com/sun/servicetag/resources/javase_servicetag.properties";
String filename = "/com/sun/servicetag/resources/javase_" + try (InputStream in = Installer.class.getClass().getResourceAsStream(filename)) {
version + "_swordfish.properties"; Properties props = new Properties();
InputStream in = Installer.class.getClass().getResourceAsStream(filename);
Properties props = new Properties();
try {
props.load(in); props.load(in);
} finally { return props;
in.close();
} }
return props;
} }
} }
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
/* /*
* @test * @test
* @bug 6622366 * @bug 6622366 7078024
* @summary Basic Test for ServiceTag.getJavaServiceTag(String) * @summary Basic Test for ServiceTag.getJavaServiceTag(String)
* to verify that the registration.xml and servicetag files * to verify that the registration.xml and servicetag files
* are both created correctly. * are both created correctly.
...@@ -157,25 +157,45 @@ public class JavaServiceTagTest1 { ...@@ -157,25 +157,45 @@ public class JavaServiceTagTest1 {
return svctag; return svctag;
} }
/**
* Tests if the running platform is a JDK.
*/
static boolean isJDK() {
// Determine the JRE path by checking the existence of
// <HOME>/jre/lib and <HOME>/lib.
String javaHome = System.getProperty("java.home");
String jrepath = javaHome + File.separator + "jre";
File f = new File(jrepath, "lib");
if (!f.exists()) {
// java.home usually points to the JRE path
jrepath = javaHome;
}
return jrepath.endsWith(File.separator + "jre");
}
private static void checkServiceTag(ServiceTag st, String source) private static void checkServiceTag(ServiceTag st, String source)
throws IOException { throws IOException {
Properties props = loadSwordfishEntries(); Properties props = loadServiceTagProps();
if (st.getProductURN(). // jdk 8 and later, JDK and JRE have the same product URN.
equals(props.getProperty("servicetag.jdk.urn"))) { String jdkUrn = props.getProperty("servicetag.jdk.urn");
if (!st.getProductName(). String jreUrn = props.getProperty("servicetag.jre.urn");
equals(props.getProperty("servicetag.jdk.name"))) { boolean isJdk = isJDK();
if (isJdk) {
if (!st.getProductURN().equals(jdkUrn) ||
!st.getProductName().equals(
props.getProperty("servicetag.jdk.name"))) {
throw new RuntimeException("Product URN and name don't match."); throw new RuntimeException("Product URN and name don't match.");
} }
} else if (st.getProductURN(). } else {
equals(props.getProperty("servicetag.jre.urn"))) { if (!st.getProductURN().equals(jreUrn) ||
if (!st.getProductName(). !st.getProductName().equals(
equals(props.getProperty("servicetag.jre.name"))) { props.getProperty("servicetag.jre.name"))) {
throw new RuntimeException("Product URN and name don't match."); throw new RuntimeException("Product URN and name don't match.");
} }
} else {
throw new RuntimeException("Unexpected product_urn: " +
st.getProductURN());
} }
if (!st.getProductVersion(). if (!st.getProductVersion().
equals(System.getProperty("java.version"))) { equals(System.getProperty("java.version"))) {
throw new RuntimeException("Unexpected product_version: " + throw new RuntimeException("Unexpected product_version: " +
...@@ -233,18 +253,13 @@ public class JavaServiceTagTest1 { ...@@ -233,18 +253,13 @@ public class JavaServiceTagTest1 {
} }
} }
private static Properties loadSwordfishEntries() private static Properties loadServiceTagProps()
throws IOException { throws IOException {
int version = sun.misc.Version.jdkMinorVersion(); String filename = "/com/sun/servicetag/resources/javase_servicetag.properties";
String filename = "/com/sun/servicetag/resources/javase_" + try (InputStream in = Installer.class.getClass().getResourceAsStream(filename)) {
version + "_swordfish.properties"; Properties props = new Properties();
InputStream in = Installer.class.getClass().getResourceAsStream(filename);
Properties props = new Properties();
try {
props.load(in); props.load(in);
} finally { return props;
in.close();
} }
return props;
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册