提交 ddfd62c2 编写于 作者: B bae

8011622: Use lcms as the default color management module in jdk8

Reviewed-by: prr, vadim
上级 ea6928c8
...@@ -27,8 +27,9 @@ BUILDDIR = ../.. ...@@ -27,8 +27,9 @@ BUILDDIR = ../..
PRODUCT = sun PRODUCT = sun
include $(BUILDDIR)/common/Defs.gmk include $(BUILDDIR)/common/Defs.gmk
SUBDIRS += lcms
ifdef OPENJDK ifdef OPENJDK
SUBDIRS += lcms
ICCPROFILE_SRC_DIR = $(SHARE_SRC)/lib/cmm/lcms ICCPROFILE_SRC_DIR = $(SHARE_SRC)/lib/cmm/lcms
else # !OPENJDK else # !OPENJDK
SUBDIRS += kcms SUBDIRS += kcms
......
...@@ -57,7 +57,7 @@ include $(BUILDDIR)/common/Library.gmk ...@@ -57,7 +57,7 @@ include $(BUILDDIR)/common/Library.gmk
SERVICEDIR = $(CLASSBINDIR)/META-INF/services SERVICEDIR = $(CLASSBINDIR)/META-INF/services
FILES_copy = \ FILES_copy = \
$(SERVICEDIR)/sun.java2d.cmm.PCMM $(SERVICEDIR)/sun.java2d.cmm.CMMServiceProvider
build: copy-files build: copy-files
......
...@@ -58,7 +58,7 @@ include $(BUILDDIR)/common/Library.gmk ...@@ -58,7 +58,7 @@ include $(BUILDDIR)/common/Library.gmk
SERVICEDIR = $(CLASSBINDIR)/META-INF/services SERVICEDIR = $(CLASSBINDIR)/META-INF/services
FILES_copy = \ FILES_copy = \
$(SERVICEDIR)/sun.java2d.cmm.PCMM $(SERVICEDIR)/sun.java2d.cmm.CMMServiceProvider
build: copy-files build: copy-files
......
...@@ -1213,7 +1213,6 @@ BUILD_LIBRARIES += $(BUILD_LIBJSDT) ...@@ -1213,7 +1213,6 @@ BUILD_LIBRARIES += $(BUILD_LIBJSDT)
########################################################################################## ##########################################################################################
ifdef OPENJDK
# TODO: Update awt lib path when awt is converted # TODO: Update awt lib path when awt is converted
$(eval $(call SetupNativeCompilation,BUILD_LIBLCMS,\ $(eval $(call SetupNativeCompilation,BUILD_LIBLCMS,\
LIBRARY:=lcms,\ LIBRARY:=lcms,\
...@@ -1246,7 +1245,6 @@ ifdef OPENJDK ...@@ -1246,7 +1245,6 @@ ifdef OPENJDK
BUILD_LIBRARIES += $(BUILD_LIBLCMS) BUILD_LIBRARIES += $(BUILD_LIBLCMS)
$(BUILD_LIBLCMS) : $(BUILD_LIBAWT) $(BUILD_LIBLCMS) : $(BUILD_LIBAWT)
endif
########################################################################################## ##########################################################################################
......
...@@ -185,10 +185,10 @@ SRC_SERVICES_FILES:=$(wildcard $(addsuffix /services/*,$(ALL_META-INF_DIRS))) ...@@ -185,10 +185,10 @@ SRC_SERVICES_FILES:=$(wildcard $(addsuffix /services/*,$(ALL_META-INF_DIRS)))
ifdef OPENJDK ifdef OPENJDK
SRC_SERVICES_FILES:=$(filter-out %sun/dc/META-INF/services/sun.java2d.pipe.RenderingEngine,$(SRC_SERVICES_FILES)) SRC_SERVICES_FILES:=$(filter-out %sun/dc/META-INF/services/sun.java2d.pipe.RenderingEngine,$(SRC_SERVICES_FILES))
SRC_SERVICES_FILES:=$(filter-out %sun/java2d/cmm/kcms/META-INF/services/sun.java2d.cmm.PCMM,$(SRC_SERVICES_FILES)) SRC_SERVICES_FILES:=$(filter-out %sun/java2d/cmm/kcms/META-INF/services/sun.java2d.cmm.CMMServiceProvider,$(SRC_SERVICES_FILES))
else else
SRC_SERVICES_FILES:=$(filter-out %sun/java2d/pisces/META-INF/services/sun.java2d.pipe.RenderingEngine,$(SRC_SERVICES_FILES)) SRC_SERVICES_FILES:=$(filter-out %sun/java2d/pisces/META-INF/services/sun.java2d.pipe.RenderingEngine,$(SRC_SERVICES_FILES))
SRC_SERVICES_FILES:=$(filter-out %sun/java2d/cmm/lcms/META-INF/services/sun.java2d.cmm.PCMM,$(SRC_SERVICES_FILES)) SRC_SERVICES_FILES:=$(filter-out %sun/java2d/cmm/lcms/META-INF/services/sun.java2d.cmm.CMMServiceProvider,$(SRC_SERVICES_FILES))
endif endif
# The number of services files are relatively few. If the increase in numbers, then # The number of services files are relatively few. If the increase in numbers, then
......
/*
* Copyright (c) 2013, 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.
*/
package sun.java2d.cmm;
public abstract class CMMServiceProvider {
public final PCMM getColorManagementModule() {
if (CMSManager.canCreateModule()) {
return getModule();
}
return null;
}
protected abstract PCMM getModule();
}
...@@ -52,26 +52,29 @@ public class CMSManager { ...@@ -52,26 +52,29 @@ public class CMSManager {
return cmmImpl; return cmmImpl;
} }
cmmImpl = (PCMM)AccessController.doPrivileged(new PrivilegedAction() { CMMServiceProvider spi = AccessController.doPrivileged(
public Object run() { new PrivilegedAction<CMMServiceProvider>() {
String cmmClass = System.getProperty( public CMMServiceProvider run() {
"sun.java2d.cmm", "sun.java2d.cmm.kcms.CMM"); String cmmClass = System.getProperty(
"sun.java2d.cmm", "sun.java2d.cmm.lcms.LcmsServiceProvider");
ServiceLoader<PCMM> cmmLoader ServiceLoader<CMMServiceProvider> cmmLoader
= ServiceLoader.loadInstalled(PCMM.class); = ServiceLoader.loadInstalled(CMMServiceProvider.class);
PCMM service = null; CMMServiceProvider spi = null;
for (PCMM cmm : cmmLoader) { for (CMMServiceProvider cmm : cmmLoader) {
service = cmm; spi = cmm;
if (cmm.getClass().getName().equals(cmmClass)) { if (cmm.getClass().getName().equals(cmmClass)) {
break; break;
} }
} }
return service; return spi;
} }
}); });
cmmImpl = spi.getColorManagementModule();
if (cmmImpl == null) { if (cmmImpl == null) {
throw new CMMException("Cannot initialize Color Management System."+ throw new CMMException("Cannot initialize Color Management System."+
"No CM module found"); "No CM module found");
...@@ -86,6 +89,10 @@ public class CMSManager { ...@@ -86,6 +89,10 @@ public class CMSManager {
return cmmImpl; return cmmImpl;
} }
static synchronized boolean canCreateModule() {
return (cmmImpl == null);
}
/* CMM trace routines */ /* CMM trace routines */
public static class CMMTracer implements PCMM { public static class CMMTracer implements PCMM {
......
...@@ -148,22 +148,32 @@ public class LCMS implements PCMM { ...@@ -148,22 +148,32 @@ public class LCMS implements PCMM {
public static native void initLCMS(Class Trans, Class IL, Class Pf); public static native void initLCMS(Class Trans, Class IL, Class Pf);
/* the class initializer which loads the CMM */ private LCMS() {};
static {
private static LCMS theLcms = null;
static synchronized PCMM getModule() {
if (theLcms != null) {
return theLcms;
}
java.security.AccessController.doPrivileged( java.security.AccessController.doPrivileged(
new java.security.PrivilegedAction() { new java.security.PrivilegedAction() {
public Object run() { public Object run() {
/* We need to load awt here because of usage trace and /* We need to load awt here because of usage trace and
* disposer frameworks * disposer frameworks
*/ */
System.loadLibrary("awt"); System.loadLibrary("awt");
System.loadLibrary("lcms"); System.loadLibrary("lcms");
return null; return null;
} }
} });
);
initLCMS(LCMSTransform.class, LCMSImageLayout.class, ICC_Profile.class); initLCMS(LCMSTransform.class, LCMSImageLayout.class, ICC_Profile.class);
theLcms = new LCMS();
return theLcms;
} }
private static class TagData { private static class TagData {
......
/*
* Copyright (c) 2013, 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.
*/
package sun.java2d.cmm.lcms;
import sun.java2d.cmm.CMMServiceProvider;
import sun.java2d.cmm.PCMM;
public final class LcmsServiceProvider extends CMMServiceProvider {
@Override
protected PCMM getModule() {
return LCMS.getModule();
}
}
# Little CMS color management module # Little CMS color management module
sun.java2d.cmm.lcms.LCMS sun.java2d.cmm.lcms.LcmsServiceProvider
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册