jdk/src/solaris/classes/sun/awt/X11GraphicsEnvironment.java
author tdv
Wed, 14 May 2008 16:05:07 -0700
changeset 557 800259d3792b
parent 2 90ce3da70b43
child 883 c3e81f0acd3d
child 715 f16baef3a20e
permissions -rw-r--r--
6675596: SurfaceManagerFactory should allow plugging in different implementations Reviewed-by: tdv, campbell Contributed-by: Roman Kennke <roman.kennke@aicas.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.GraphicsDevice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Point;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.BufferedReader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.File;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.FileReader;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.io.FileNotFoundException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.io.InputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.io.StreamTokenizer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.net.NetworkInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.net.SocketException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.net.UnknownHostException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.util.logging.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.awt.motif.MFontConfiguration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import sun.font.Font2D;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.font.FontManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.font.NativeFont;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import sun.java2d.SunGraphicsEnvironment;
557
800259d3792b 6675596: SurfaceManagerFactory should allow plugging in different implementations
tdv
parents: 2
diff changeset
    51
import sun.java2d.SurfaceManagerFactory;
800259d3792b 6675596: SurfaceManagerFactory should allow plugging in different implementations
tdv
parents: 2
diff changeset
    52
import sun.java2d.UnixSurfaceManagerFactory;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * This is an implementation of a GraphicsEnvironment object for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * default local GraphicsEnvironment used by the Java Runtime Environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * for X11 environments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @see GraphicsDevice
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * @see GraphicsConfiguration
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
public class X11GraphicsEnvironment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    extends SunGraphicsEnvironment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private static final Logger log = Logger.getLogger("sun.awt.X11GraphicsEnvironment");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private static final Logger screenLog = Logger.getLogger("sun.awt.screen.X11GraphicsEnvironment");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private static Boolean xinerState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     * This is the set of font directories needed to be on the X font path
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * to enable AWT heavyweights to find all of the font configuration fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * It is populated by :
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * - awtfontpath entries in the fontconfig.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * - parent directories of "core" fonts used in the fontconfig.properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * - looking up font dirs in the xFontDirsMap where the key is a fontID
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     *   (cut down version of the XLFD read from the font configuration file).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * This set is nulled out after use to free heap space.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private static HashSet<String> fontConfigDirs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
   /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    * fontNameMap is a map from a fontID (which is a substring of an XLFD like
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    * "-monotype-arial-bold-r-normal-iso8859-7")
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    * to font file path like
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    * /usr/openwin/lib/locale/iso_8859_7/X11/fonts/TrueType/ArialBoldItalic.ttf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    * It's used in a couple of methods like
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    * getFileNameFomPlatformName(..) to help locate the font file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    * We use this substring of a full XLFD because the font configuration files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    * define the XLFDs in a way that's easier to make into a request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    * E.g., the -0-0-0-0-p-0- reported by X is -*-%d-*-*-p-*- in the font
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    * configuration files. We need to remove that part for comparisons.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private static Map fontNameMap = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /* xFontDirsMap is also a map from a font ID to a font filepath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * The difference from fontNameMap is just that it does not have
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * resolved symbolic links. Normally this is not interesting except
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * that we need to know the directory in which a font was found to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * add it to the X font server path, since although the files may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * be linked, the fonts.dir is different and specific to the encoding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * handled by that directory. This map is nulled out after use to free
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * heap space. If the optimal path is taken, such that all fonts in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * font configuration files are referenced by filename, then the font
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * dir can be directly derived as its parent directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * If a font is used by two XLFDs, each corresponding to a different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * X11 font directory, then precautions must be taken to include both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * directories.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     private static Map xFontDirsMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * xlfdMap is a map from a platform path like
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * /usr/openwin/lib/locale/ja/X11/fonts/TT/HG-GothicB.ttf to an XLFD like
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * "-ricoh-hg gothic b-medium-r-normal--0-0-0-0-m-0-jisx0201.1976-0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * Because there may be multiple native names, because the font is used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * to support multiple X encodings for example, the value of an entry in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * this map is always a vector where we store all the native names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * For fonts which we don't understand the key isn't a pathname, its
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * the full XLFD string like :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * "-ricoh-hg gothic b-medium-r-normal--0-0-0-0-m-0-jisx0201.1976-0"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     private static Map xlfdMap = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Used to eliminate redundant work. When a font directory is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * registered it added to this list. Subsequent registrations for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * same directory can then be skipped by checking this Map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * Access to this map is not synchronised here since creation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * of the singleton GE instance is already synchronised and that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * the only code path that accesses this map.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     private static HashMap registeredDirs = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /* Array of directories to be added to the X11 font path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Used by static method called from Toolkits which use X11 fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Specifically this means MToolkit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    private static String[] fontdirs = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                          new java.security.PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                System.loadLibrary("awt");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                 * Note: The MToolkit object depends on the static initializer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                 * of X11GraphicsEnvironment to initialize the connection to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                 * the X11 server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                if (!isHeadless()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                    // first check the OGL system property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                    boolean glxRequested = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                    String prop = System.getProperty("sun.java2d.opengl");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                    if (prop != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                        if (prop.equals("true") || prop.equals("t")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                            glxRequested = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                        } else if (prop.equals("True") || prop.equals("T")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                            glxRequested = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                            glxVerbose = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                    // initialize the X11 display connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                    initDisplay(glxRequested);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                    // only attempt to initialize GLX if it was requested
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                    if (glxRequested) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                        glxAvailable = initGLX();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                        if (glxVerbose && !glxAvailable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                            System.out.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                                "Could not enable OpenGL " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                                "pipeline (GLX 1.3 not available)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
         });
557
800259d3792b 6675596: SurfaceManagerFactory should allow plugging in different implementations
tdv
parents: 2
diff changeset
   182
800259d3792b 6675596: SurfaceManagerFactory should allow plugging in different implementations
tdv
parents: 2
diff changeset
   183
        // Install the correct surface manager factory.
800259d3792b 6675596: SurfaceManagerFactory should allow plugging in different implementations
tdv
parents: 2
diff changeset
   184
        SurfaceManagerFactory.setInstance(new UnixSurfaceManagerFactory());
800259d3792b 6675596: SurfaceManagerFactory should allow plugging in different implementations
tdv
parents: 2
diff changeset
   185
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    private static boolean glxAvailable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    private static boolean glxVerbose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    private static native boolean initGLX();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public static boolean isGLXAvailable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        return glxAvailable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    public static boolean isGLXVerbose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        return glxVerbose;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * Checks if Shared Memory extension can be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * Returns:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *   -1 if server doesn't support MITShm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     *    1 if server supports it and it can be used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *    0 otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    private static native int checkShmExt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    private static  native String getDisplayString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    private static Boolean isDisplayLocal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * This should only be called from the static initializer, so no need for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * the synchronized keyword.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    private static native void initDisplay(boolean glxRequested);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    public X11GraphicsEnvironment() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    protected native int getNumScreens();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    protected GraphicsDevice makeScreenDevice(int screennum) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        return new X11GraphicsDevice(screennum);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    protected native int getDefaultScreenNum();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Returns the default screen graphics device.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    public GraphicsDevice getDefaultScreenDevice() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        return getScreenDevices()[getDefaultScreenNum()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    public static boolean isDisplayLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        if (isDisplayLocal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            SunToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                if (isDisplayLocal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                    isDisplayLocal = Boolean.valueOf(_isDisplayLocal());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                SunToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        return isDisplayLocal.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    private static boolean _isDisplayLocal() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        if (isHeadless()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        String isRemote = (String)java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            new sun.security.action.GetPropertyAction("sun.java2d.remote"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        if (isRemote != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            return isRemote.equals("false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        int shm = checkShmExt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        if (shm != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            return (shm == 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        // If XServer doesn't support ShMem extension,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        // try the other way
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        String display = getDisplayString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        int ind = display.indexOf(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        final String hostName = display.substring(0, ind);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (ind <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            // ':0' case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        Boolean result = (Boolean)java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
            new java.security.PrivilegedAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            public Object run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                InetAddress remAddr[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                Enumeration locals = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                Enumeration interfaces = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                    interfaces = NetworkInterface.getNetworkInterfaces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                    remAddr = InetAddress.getAllByName(hostName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                    if (remAddr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                        return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                } catch (UnknownHostException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                    System.err.println("Unknown host: " + hostName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                    return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                } catch (SocketException e1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                    System.err.println(e1.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                    return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
                for (; interfaces.hasMoreElements();) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
                    locals = ((NetworkInterface)interfaces.nextElement()).getInetAddresses();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                    for (; locals.hasMoreElements();) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
                        for (int i = 0; i < remAddr.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                            if (locals.nextElement().equals(remAddr[i])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
                                return Boolean.TRUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
                return Boolean.FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        return result.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    /* These maps are used on Linux where we reference the Lucida oblique
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * fonts in fontconfig files even though they aren't in the standard
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * font directory. This explicitly remaps the XLFDs for these to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * correct base font. This is needed to prevent composite fonts from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * defaulting to the Lucida Sans which is a bad substitute for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * monospaced Lucida Sans Typewriter. Also these maps prevent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * JRE from doing wasted work at start up.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    HashMap<String, String> oblmap = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    private String getObliqueLucidaFontID(String fontID) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        if (fontID.startsWith("-lucidasans-medium-i-normal") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            fontID.startsWith("-lucidasans-bold-i-normal") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
            fontID.startsWith("-lucidatypewriter-medium-i-normal") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            fontID.startsWith("-lucidatypewriter-bold-i-normal")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
            return fontID.substring(0, fontID.indexOf("-i-"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
   private void initObliqueLucidaFontMap() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
       oblmap = new HashMap<String, String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
       oblmap.put("-lucidasans-medium",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                  jreLibDirName+"/fonts/LucidaSansRegular.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
       oblmap.put("-lucidasans-bold",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                  jreLibDirName+"/fonts/LucidaSansDemiBold.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
       oblmap.put("-lucidatypewriter-medium",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                  jreLibDirName+"/fonts/LucidaTypewriterRegular.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
       oblmap.put("-lucidatypewriter-bold",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                  jreLibDirName+"/fonts/LucidaTypewriterBold.ttf");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * Takes family name property in the following format:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * "-linotype-helvetica-medium-r-normal-sans-*-%d-*-*-p-*-iso8859-1"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * and returns the name of the corresponding physical font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * This code is used to resolve font configuration fonts, and expects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * only to get called for these fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    public String getFileNameFromPlatformName(String platName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        String fileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        String fontID = specificFontIDForName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        /* If the font filename has been explicitly assigned in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
         * font configuration file, use it. This avoids accessing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
         * the wrong fonts on Linux, where different fonts (some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
         * of which may not be usable by 2D) may share the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
         * specific font ID. It may also speed up the lookup.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        fileName = super.getFileNameFromPlatformName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            if (isHeadless() && fileName.startsWith("-")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                /* if it's headless, no xlfd should be used */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                    return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            if (fileName.startsWith("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                /* If a path is assigned in the font configuration file,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                 * it is required that the config file also specify using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                 * new awtfontpath key the X11 font directories
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                 * which must be added to the X11 font path to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                 * AWT access to that font. For that reason we no longer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                 * have code here to add the parent directory to the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                 * of font config dirs, since the parent directory may not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                 * be sufficient if fonts are symbolically linked to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                 * different directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                 * Add this XLFD (platform name) to the list of known
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                 * ones for this file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
                Vector xVal = (Vector) xlfdMap.get(fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                if (xVal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                    /* Try to be robust on Linux distros which move fonts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
                     * around by verifying that the fileName represents a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
                     * file that exists.  If it doesn't, set it to null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                     * to trigger a search.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                    if (getFontConfiguration().needToSearchForFile(fileName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                        fileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                    if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                        xVal = new Vector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                        xVal.add(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
                        xlfdMap.put(fileName, xVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
                    if (!xVal.contains(platName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                        xVal.add(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
            if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                fontNameMap.put(fontID, fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                return fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        if (fontID != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
            /* On Linux check for the Lucida Oblique fonts */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            if (fileName == null && isLinux && !isOpenJDK()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                if (oblmap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                    initObliqueLucidaFontMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                String oblkey = getObliqueLucidaFontID(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                if (oblkey != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                    fileName = oblmap.get(oblkey);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            if (fontPath == null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                (fileName == null || !fileName.startsWith("/"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                    logger.warning("** Registering all font paths because " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                                   "can't find file for " + platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                fontPath = getPlatformFontPath(noType1Font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                registerFontDirs(fontPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
                    logger.warning("** Finished registering all font paths");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            if (fileName == null && !isHeadless()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                /* Query X11 directly to see if this font is available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                 * as a native font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
                fileName = getX11FontName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            if (fileName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                fontID = switchFontIDForName(platName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
                fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
            if (fileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
                fontNameMap.put(fontID, fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        return fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    private static String getX11FontName(String platName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        String xlfd = platName.replaceAll("%d", "*");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        if (NativeFont.fontExists(xlfd)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            return xlfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * Returns the face name for the given XLFD.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    public String getFileNameFromXLFD(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        String fileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        String fontID = specificFontIDForName(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        if (fontID != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            if (fileName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
                fontID = switchFontIDForName(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
                fileName = (String)fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
            if (fileName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
                fileName = getDefaultFontFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        return fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    // constants identifying XLFD and font ID fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    private static final int FOUNDRY_FIELD = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    private static final int FAMILY_NAME_FIELD = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
    private static final int WEIGHT_NAME_FIELD = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    private static final int SLANT_FIELD = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    private static final int SETWIDTH_NAME_FIELD = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
    private static final int ADD_STYLE_NAME_FIELD = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    private static final int PIXEL_SIZE_FIELD = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    private static final int POINT_SIZE_FIELD = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    private static final int RESOLUTION_X_FIELD = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    private static final int RESOLUTION_Y_FIELD = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    private static final int SPACING_FIELD = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    private static final int AVERAGE_WIDTH_FIELD = 12;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    private static final int CHARSET_REGISTRY_FIELD = 13;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    private static final int CHARSET_ENCODING_FIELD = 14;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    private String switchFontIDForName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        int[] hPos = new int[14];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        int hyphenCnt = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        int pos = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        while (pos != -1 && hyphenCnt < 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
            pos = name.indexOf('-', pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            if (pos != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
                hPos[hyphenCnt++] = pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
                    pos++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        if (hyphenCnt != 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                logger.severe("Font Configuration Font ID is malformed:" + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            return name; // what else can we do?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        String slant = name.substring(hPos[SLANT_FIELD-1]+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                                           hPos[SLANT_FIELD]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        String family = name.substring(hPos[FAMILY_NAME_FIELD-1]+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                                           hPos[FAMILY_NAME_FIELD]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        String registry = name.substring(hPos[CHARSET_REGISTRY_FIELD-1]+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                                           hPos[CHARSET_REGISTRY_FIELD]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        String encoding = name.substring(hPos[CHARSET_ENCODING_FIELD-1]+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        if (slant.equals("i")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            slant = "o";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        } else if (slant.equals("o")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
            slant = "i";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        // workaround for #4471000
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        if (family.equals("itc zapfdingbats")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            && registry.equals("sun")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            && encoding.equals("fontspecific")){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            registry = "adobe";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        StringBuffer sb =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            new StringBuffer(name.substring(hPos[FAMILY_NAME_FIELD-1],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                                            hPos[SLANT_FIELD-1]+1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        sb.append(slant);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        sb.append(name.substring(hPos[SLANT_FIELD],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                                 hPos[SETWIDTH_NAME_FIELD]+1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        sb.append(registry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        sb.append(name.substring(hPos[CHARSET_ENCODING_FIELD-1]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        String retval = sb.toString().toLowerCase (Locale.ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        return retval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    private String specificFontIDForName(String name) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        int[] hPos = new int[14];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        int hyphenCnt = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        int pos = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        while (pos != -1 && hyphenCnt < 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            pos = name.indexOf('-', pos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            if (pos != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                hPos[hyphenCnt++] = pos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                    pos++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        if (hyphenCnt != 14) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                logger.severe("Font Configuration Font ID is malformed:" + name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
            return name; // what else can we do?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        StringBuffer sb =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
            new StringBuffer(name.substring(hPos[FAMILY_NAME_FIELD-1],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                                            hPos[SETWIDTH_NAME_FIELD]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        sb.append(name.substring(hPos[CHARSET_REGISTRY_FIELD-1]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        String retval = sb.toString().toLowerCase (Locale.ENGLISH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        return retval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    protected String[] getNativeNames(String fontFileName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                                      String platformName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        Vector nativeNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        if ((nativeNames=(Vector)xlfdMap.get(fontFileName))==null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            if (platformName == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                /* back-stop so that at least the name used in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                 * font configuration file is known as a native name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                String []natNames = new String[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
                natNames[0] = platformName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                return natNames;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
            int len = nativeNames.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
            return (String[])nativeNames.toArray(new String[len]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
    // An X font spec (xlfd) includes an encoding. The same TrueType font file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    // may be referenced from different X font directories in font.dir files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    // to support use in multiple encodings by X apps.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    // So for the purposes of font configuration logical fonts where AWT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    // heavyweights need to access the font via X APIs we need to ensure that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
    // the directory for precisely the encodings needed by this are added to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
    // the x font path. This requires that we note the platform names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    // specified in font configuration files and use that to identify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
    // X font directory that contains a font.dir file for that platform name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
    // and add it to the X font path (if display is local)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    // Here we make use of an already built map of xlfds to font locations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    // to add the font location to the set of those required to build the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    // x font path needed by AWT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    // These are added to the x font path later.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    // All this is necessary because on Solaris the font.dir directories
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    // may contain not real font files, but symbolic links to the actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    // location but that location is not suitable for the x font path, since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    // it probably doesn't have a font.dir at all and certainly not one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    // with the required encodings
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    // If the fontconfiguration file is properly set up so that all fonts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    // are mapped to files then we will never trigger initialising
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
    // xFontDirsMap (it will be null). In this case the awtfontpath entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    // must specify all the X11 directories needed by AWT.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
    protected void addFontToPlatformFontPath(String platformName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        if (xFontDirsMap != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            String fontID = specificFontIDForName(platformName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            String dirName = (String)xFontDirsMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            if (dirName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                fontConfigDirs.add(dirName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    protected void getPlatformFontPathFromFontConfig() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
        if (fontConfigDirs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
            fontConfigDirs = getFontConfiguration().getAWTFontPathSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            if (debugFonts && fontConfigDirs != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                String[] names = fontConfigDirs.toArray(new String[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                for (int i=0;i<names.length;i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                    logger.info("awtfontpath : " + names[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    protected void registerPlatformFontsUsedByFontConfiguration() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        if (fontConfigDirs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        if (isLinux) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
            fontConfigDirs.add(jreLibDirName+File.separator+"oblique-fonts");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        fontdirs = (String[])fontConfigDirs.toArray(new String[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /* Called by MToolkit to set the X11 font path */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
    public static void setNativeFontPath() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        if (fontdirs == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        // need to register these individually rather than by one call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        // to ensure that one bad directory doesn't cause all to be rejected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        for (int i=0; i<fontdirs.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                logger.info("Add " + fontdirs[i] + " to X11 fontpath");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            FontManager.setNativeFontPath(fontdirs[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    /* Register just the paths, (it doesn't register the fonts).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * If a font configuration file has specified a baseFontPath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * fontPath is just those directories, unless on usage we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     * find it doesn't contain what we need for the logical fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * Otherwise, we register all the paths on Solaris, because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * the fontPath we have here is the complete one from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * parsing /var/sadm/install/contents, not just
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * what's on the X font path (may be this should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * changed).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * But for now what it means is that if we didn't do
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * this then if the font weren't listed anywhere on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * less complete font path we'd trigger loadFonts which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * actually registers the fonts. This may actually be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * the right thing tho' since that would also set up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * the X font path without which we wouldn't be able to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * display some "native" fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * So something to revisit is that probably fontPath
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * here ought to be only the X font path + jre font dir.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * loadFonts should have a separate native call to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * get the rest of the platform font path.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * Registering the directories can now be avoided in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * font configuration initialisation when filename entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * exist in the font configuration file for all fonts.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * (Perhaps a little confusingly a filename entry is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * actually keyed using the XLFD used in the font entries,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * and it maps *to* a real filename).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * In the event any are missing, registration of all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * directories will be invoked to find the real files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * But registering the directory performed other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * functions such as filling in the map of all native names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * for the font. So when this method isn't invoked, they still
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * must be found. This is mitigated by getNativeNames now
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     * being able to return at least the platform name, but mostly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * by ensuring that when a filename key is found, that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * xlfd key is stored as one of the set of platform names
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * for the font. Its a set because typical font configuration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * files reference the same CJK font files using multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * X11 encodings. For the code that adds this to the map
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * see X11GE.getFileNameFromPlatformName(..)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * If you don't get all of these then some code points may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * not use the Xserver, and will not get the PCF bitmaps
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * that are available for some point sizes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * So, in the event that there is such a problem,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * unconditionally making this call may be necessary, at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * some cost to JRE start-up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
    protected void registerFontDirs(String pathName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        StringTokenizer parser = new StringTokenizer(pathName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
                                                     File.pathSeparator);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            while (parser.hasMoreTokens()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                String dirPath = parser.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
                if (dirPath != null && !registeredDirs.containsKey(dirPath)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
                    registeredDirs.put(dirPath, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                    registerFontDir(dirPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        } catch (NoSuchElementException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    /* NOTE: this method needs to be executed in a privileged context.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * The superclass constructor which is the primary caller of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * this method executes entirely in such a context. Additionally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     * the loadFonts() method does too. So all should be well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
    protected void registerFontDir(String path) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
        /* fonts.dir file format looks like :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
         * 47
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
         * Arial.ttf -monotype-arial-regular-r-normal--0-0-0-0-p-0-iso8859-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
         * Arial-Bold.ttf -monotype-arial-bold-r-normal--0-0-0-0-p-0-iso8859-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
         * ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
            logger.info("ParseFontDir " + path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        File fontsDotDir = new File(path + File.separator + "fonts.dir");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        FileReader fr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
            if (fontsDotDir.canRead()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
                fr = new FileReader(fontsDotDir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
                BufferedReader br = new BufferedReader(fr, 8192);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
                StreamTokenizer st = new StreamTokenizer(br);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
                st.eolIsSignificant(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                int ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
                if (ttype == StreamTokenizer.TT_NUMBER) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
                    int numEntries = (int)st.nval;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
                    ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
                    if (ttype == StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                        st.resetSyntax();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
                        st.wordChars(32, 127);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
                        st.wordChars(128 + 32, 255);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
                        st.whitespaceChars(0, 31);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
                        for (int i=0; i < numEntries; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
                            ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
                            if (ttype == StreamTokenizer.TT_EOF) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                            if (ttype != StreamTokenizer.TT_WORD) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
                            int breakPos = st.sval.indexOf(' ');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                            if (breakPos <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
                                /* On TurboLinux 8.0 a fonts.dir file had
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
                                 * a line with integer value "24" which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
                                 * appeared to be the number of remaining
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
                                 * entries in the file. This didn't add to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                                 * the value on the first line of the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                                 * Seemed like XFree86 didn't like this line
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
                                 * much either. It failed to parse the file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
                                 * Ignore lines like this completely, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                                 * don't let them count as an entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
                                numEntries++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
                                ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
                                if (ttype != StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
                            if (st.sval.charAt(0) == '!') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                                /* TurboLinux 8.0 comment line: ignore.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                                 * can't use st.commentChar('!') to just
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                                 * skip because this line mustn't count
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                                 * against numEntries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                                numEntries++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                                ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                                if (ttype != StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                            String fileName = st.sval.substring(0, breakPos);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                            /* TurboLinux 8.0 uses some additional syntax to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                             * indicate algorithmic styling values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                             * Ignore ':' separated files at the beginning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
                             * of the fileName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
                             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                            int lastColon = fileName.lastIndexOf(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
                            if (lastColon > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                                if (lastColon+1 >= fileName.length()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                                fileName = fileName.substring(lastColon+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                            String fontPart = st.sval.substring(breakPos+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
                            String fontID = specificFontIDForName(fontPart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                            String sVal = (String) fontNameMap.get(fontID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
                                logger.info("file=" + fileName +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
                                            " xlfd=" + fontPart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                                logger.info("fontID=" + fontID +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                                            " sVal=" + sVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                            String fullPath = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
                                File file = new File(path,fileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                                /* we may have a resolved symbolic link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                                 * this becomes important for an xlfd we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                                 * still need to know the location it was
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                                 * found to update the X server font path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                                 * for use by AWT heavyweights - and when 2D
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                                 * wants to use the native rasteriser.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
                                if (xFontDirsMap == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                                    xFontDirsMap = new HashMap();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                                xFontDirsMap.put(fontID, path);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
                                fullPath = file.getCanonicalPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                            } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                                fullPath = path + File.separator + fileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                            Vector xVal = (Vector) xlfdMap.get(fullPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                            if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                                logger.info("fullPath=" + fullPath +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                                            " xVal=" + xVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                            if ((xVal == null || !xVal.contains(fontPart)) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                                (sVal == null) || !sVal.startsWith("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                                if (debugFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                                    logger.info("Map fontID:"+fontID +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                                                "to file:" + fullPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                                fontNameMap.put(fontID, fullPath);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                                if (xVal == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                                    xVal = new Vector();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                                    xlfdMap.put (fullPath, xVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                                xVal.add(fontPart);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                            ttype = st.nextToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                            if (ttype != StreamTokenizer.TT_EOL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                fr.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
        } catch (IOException ioe1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
            if (fr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
                    fr.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
                }  catch (IOException ioe2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    @Override
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    public void loadFonts() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
        super.loadFonts();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
        /* These maps are greatly expanded during a loadFonts but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
         * can be reset to their initial state afterwards.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
         * Since preferLocaleFonts() and preferProportionalFonts() will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
         * trigger a partial repopulating from the FontConfiguration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
         * it has to be the inital (empty) state for the latter two, not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
         * simply nulling out.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
         * xFontDirsMap is a special case in that the implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
         * will typically not ever need to initialise it so it can be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        xFontDirsMap = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        xlfdMap = new HashMap(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
        fontNameMap = new HashMap(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
    // Implements SunGraphicsEnvironment.createFontConfiguration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    protected FontConfiguration createFontConfiguration() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        return new MFontConfiguration(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
    public FontConfiguration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
        createFontConfiguration(boolean preferLocaleFonts,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                                boolean preferPropFonts) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        return new MFontConfiguration(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
                                      preferLocaleFonts, preferPropFonts);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
     * Returns face name for default font, or null if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
     * no face names are used for CompositeFontDescriptors
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
     * for this platform.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    public String getDefaultFontFaceName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    private static native boolean pRunningXinerama();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    private static native Point getXineramaCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
     * Override for Xinerama case: call new Solaris API for getting the correct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
     * centering point from the windowing system.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
    public Point getCenterPoint() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        if (runningXinerama()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
            Point p = getXineramaCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            if (p != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
                return p;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
        return super.getCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
     * Override for Xinerama case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    public Rectangle getMaximumWindowBounds() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        if (runningXinerama()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
            return getXineramaWindowBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
            return super.getMaximumWindowBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
    public boolean runningXinerama() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        if (xinerState == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            // pRunningXinerama() simply returns a global boolean variable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            // so there is no need to synchronize here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
            xinerState = Boolean.valueOf(pRunningXinerama());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
                screenLog.log(Level.FINER, "Running Xinerama: " + xinerState);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        return xinerState.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
     * Return the bounds for a centered Window on a system running in Xinerama
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
     * mode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * Calculations are based on the assumption of a perfectly rectangular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * display area (display edges line up with one another, and displays
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * have consistent width and/or height).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
     * The bounds to return depend on the arrangement of displays and on where
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
     * Windows are to be centered.  There are two common situations:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
     * 1) The center point lies at the center of the combined area of all the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
     *    displays.  In this case, the combined area of all displays is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
     *    returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
     * 2) The center point lies at the center of a single display.  In this case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     *    the user most likely wants centered Windows to be constrained to that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     *    single display.  The boundaries of the one display are returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
     * It is possible for the center point to be at both the center of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
     * entire display space AND at the center of a single monitor (a square of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
     * 9 monitors, for instance).  In this case, the entire display area is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     * Because the center point is arbitrarily settable by the user, it could
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * fit neither of the cases above.  The fallback case is to simply return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * the combined area for all screens.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
    protected Rectangle getXineramaWindowBounds() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        Point center = getCenterPoint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
        Rectangle unionRect, tempRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        GraphicsDevice[] gds = getScreenDevices();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
        Rectangle centerMonitorRect = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        // if center point is at the center of all monitors
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        // return union of all bounds
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        //  MM*MM     MMM       M
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        //            M*M       *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
        //            MMM       M
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        // if center point is at center of a single monitor (but not of all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        // monitors)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        // return bounds of single monitor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        // MMM         MM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        // MM*         *M
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        // else, center is in some strange spot (such as on the border between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        // monitors), and we should just return the union of all monitors
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        // MM          MMM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        // MM          MMM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        unionRect = getUsableBounds(gds[0]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        for (i = 0; i < gds.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            tempRect = getUsableBounds(gds[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            if (centerMonitorRect == null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
                // add a pixel or two for fudge-factor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
                (tempRect.width / 2) + tempRect.x > center.x - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
                (tempRect.height / 2) + tempRect.y > center.y - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
                (tempRect.width / 2) + tempRect.x < center.x + 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
                (tempRect.height / 2) + tempRect.y < center.y + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
                centerMonitorRect = tempRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            unionRect = unionRect.union(tempRect);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        // first: check for center of all monitors (video wall)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
        // add a pixel or two for fudge-factor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        if ((unionRect.width / 2) + unionRect.x > center.x - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            (unionRect.height / 2) + unionRect.y > center.y - 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            (unionRect.width / 2) + unionRect.x < center.x + 1 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
            (unionRect.height / 2) + unionRect.y < center.y + 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
            if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
                screenLog.log(Level.FINER, "Video Wall: center point is at center of all displays.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
            return unionRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        // next, check if at center of one monitor
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
        if (centerMonitorRect != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
            if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
                screenLog.log(Level.FINER, "Center point at center of a particular " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
                                           "monitor, but not of the entire virtual display.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
            return centerMonitorRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        // otherwise, the center is at some weird spot: return unionRect
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
        if (screenLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            screenLog.log(Level.FINER, "Center point is somewhere strange - return union of all bounds.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
        return unionRect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     * From the DisplayChangedListener interface; devices do not need
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     * to react to this event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
    @Override
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
    public void paletteChanged() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
}