view org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/Library.d @ 120:536e43f63c81

Comprehensive update for Win32/Linux32 dmd-2.053/dmd-1.068+Tango-r5661 ===D2=== * added [Try]Immutable/Const/Shared templates to work with differenses in D1/D2 instead of version statements used these templates to work with strict type storage rules of dmd-2.053 * com.ibm.icu now also compilable with D2, but not tested yet * small fixes Snippet288 - shared data is in TLS ===Phobos=== * fixed critical bugs in Phobos implemention completely incorrect segfault prone fromStringz (Linux's port ruthless killer) terrible, incorrect StringBuffer realization (StyledText killer) * fixed small bugs as well Snippet72 - misprint in the snippet * implemented missed functionality for Phobos ByteArrayOutputStream implemented (image loading available) formatting correctly works for all DWT's cases As a result, folowing snippets now works with Phobos (Snippet### - what is fixed): Snippet24, 42, 111, 115, 130, 235, 276 - bad string formatting Snippet48, 282 - crash on image loading Snippet163, 189, 211, 213, 217, 218, 222 - crash on copy/cut in StyledText Snippet244 - hang-up ===Tango=== * few changes for the latest Tango trunc-r5661 * few small performance improvments ===General=== * implMissing-s for only one version changed to implMissingInTango/InPhobos * incorrect calls to Format in toString-s fixed * fixed loading \uXXXX characters in ResourceBundle * added good UTF-8 support for StyledText, TextLayout (Win32) and friends UTF functions revised and tested. It is now in java.nonstandard.*Utf modules StyledText and TextLayout (Win32) modules revised for UTF-8 support * removed small diferences in most identical files in *.swt.* folders *.swt.internal.image, *.swt.events and *.swt.custom are identical in Win32/Linux32 now 179 of 576 (~31%) files in *.swt.* folders are fully identical * Win32: snippets now have right subsystem, pretty icons and native system style controls * small fixes in snippets Snippet44 - it's not Snippet44 Snippet212 - functions work with different images and offsets arrays Win32: Snippet282 - crash on close if the button has an image Snippet293 - setGrayed is commented and others Win32: As a result, folowing snippets now works Snippet68 - color doesn't change Snippet163, 189, 211, 213, 217, 218, 222 - UTF-8 issues (see above) Snippet193 - no tabel headers
author Denis Shelomovskij <verylonglogin.reg@gmail.com>
date Sat, 09 Jul 2011 15:50:20 +0300
parents 950d84783eac
children
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module org.eclipse.swt.internal.Library;

import java.lang.all;

// do it here, so it can be evaluated at compile time
// this saves a static ctor.
private int buildSWT_VERSION (int major, int minor) {
    return major * 1000 + minor;
}


public class Library {

    /* SWT Version - Mmmm (M=major, mmm=minor) */

    /**
     * SWT Major version number (must be >= 0)
     */
    static const int MAJOR_VERSION = 3;

    /**
     * SWT Minor version number (must be in the range 0..999)
     */
    static const int MINOR_VERSION = 449;

    /**
     * SWT revision number (must be >= 0)
     */
    static const int REVISION = 0;

    /**
     * The JAVA and SWT versions
     */
    //public static const int JAVA_VERSION;
    public static const int SWT_VERSION = .buildSWT_VERSION(MAJOR_VERSION, MINOR_VERSION);

    version( Windows ){
        static const String SEPARATOR = "\r\n";
    }
    else {
        static assert( false, "only windows supported for this port" );
    }


static int parseVersion(String aVersion) {
    if (aVersion == null) return 0;
    int major = 0, minor = 0, micro = 0;
    int length = aVersion.length, index = 0, start = 0;
    bool isDigit( char c ){
        return c >= '0' && c <= '9';
    }
    while (index < length && isDigit(aVersion[index])) index++;
    try {
        if (start < length) major = Integer.parseInt( aVersion[start .. index] );
    } catch (NumberFormatException e) {}
    start = ++index;
    while (index < length && isDigit(aVersion[index])) index++;
    try {
        if (start < length) minor = Integer.parseInt(aVersion[start .. index]);
    } catch (NumberFormatException e) {}
    start = ++index;
    while (index < length && isDigit(aVersion[index])) index++;
    try {
        if (start < length) micro = Integer.parseInt(aVersion[start .. index]);
    } catch (NumberFormatException e) {}
    return buildJAVA_VERSION(major, minor, micro);
}

/**
 * Returns the Java version number as an integer.
 *
 * @param major
 * @param minor
 * @param micro
 * @return the version
 */
public static int buildJAVA_VERSION (int major, int minor, int micro) {
    return (major << 16) + (minor << 8) + micro;
}

/**
 * Returns the SWT version number as an integer.
 *
 * @param major
 * @param minor
 * @return the version
 */
public static int buildSWT_VERSION (int major, int minor) {
    return .buildSWT_VERSION(major, minor);
}
/+ PORTING_LEFT
static bool extract (String fileName, String mappedName) {
    FileOutputStream os = null;
    InputStream is = null;
    File file = new File(fileName);
    try {
        if (!file.exists ()) {
            is = Library.class.getResourceAsStream ("/" + mappedName); //$NON-NLS-1$
            if (is != null) {
                int read;
                byte [] buffer = new byte [4096];
                os = new FileOutputStream (fileName);
                while ((read = is.read (buffer)) != -1) {
                    os.write(buffer, 0, read);
                }
                os.close ();
                is.close ();
                if (Platform.PLATFORM != ("win32")) { //$NON-NLS-1$
                    try {
                        Runtime.getRuntime ().exec (new String []{"chmod", "755", fileName}).waitFor(); //$NON-NLS-1$ //$NON-NLS-2$
                    } catch (Throwable e) {}
                }
                if (load (fileName)) return true;
            }
        }
    } catch (Throwable e) {
        try {
            if (os != null) os.close ();
        } catch (IOException e1) {}
        try {
            if (is != null) is.close ();
        } catch (IOException e1) {}
    }
    if (file.exists ()) file.delete ();
    return false;
}

static bool load (String libName) {
    try {
        if (libName.indexOf (SEPARATOR) != -1) {
            System.load (libName);
        } else {
            System.loadLibrary (libName);
        }
        return true;
    } catch (UnsatisfiedLinkError e) {}
    return false;
}

/**
 * Loads the shared library that matches the version of the
 * Java code which is currently running.  SWT shared libraries
 * follow an encoding scheme where the major, minor and revision
 * numbers are embedded in the library name and this along with
 * <code>name</code> is used to load the library.  If this fails,
 * <code>name</code> is used in another attempt to load the library,
 * this time ignoring the SWT version encoding scheme.
 *
 * @param name the name of the library to load
 */
public static void loadLibrary (String name) {
    loadLibrary (name, true);
}

/**
 * Loads the shared library that matches the version of the
 * Java code which is currently running.  SWT shared libraries
 * follow an encoding scheme where the major, minor and revision
 * numbers are embedded in the library name and this along with
 * <code>name</code> is used to load the library.  If this fails,
 * <code>name</code> is used in another attempt to load the library,
 * this time ignoring the SWT version encoding scheme.
 *
 * @param name the name of the library to load
 * @param mapName true if the name should be mapped, false otherwise
 */
public static void loadLibrary (String name, boolean mapName) {
    String prop = System.getProperty ("sun.arch.data.model"); //$NON-NLS-1$
    if (prop is null) prop = System.getProperty ("com.ibm.vm.bitmode"); //$NON-NLS-1$
    if (prop !is null) {
        if ("32".equals (prop)) { //$NON-NLS-1$
             if (0x1FFFFFFFFL is (int /*long*/)0x1FFFFFFFFL) {
                throw new UnsatisfiedLinkError ("Cannot load 64-bit SWT libraries on 32-bit JVM"); //$NON-NLS-1$
             }
        }
        if ("64".equals (prop)) { //$NON-NLS-1$
            if (0x1FFFFFFFFL !is (int /*long*/)0x1FFFFFFFFL) {
                throw new UnsatisfiedLinkError ("Cannot load 32-bit SWT libraries on 64-bit JVM"); //$NON-NLS-1$
            }       
        }
    }

    /* Compute the library name and mapped name */
    String libName1, libName2, mappedName1, mappedName2;
    if (mapName) {
        String version = System.getProperty ("swt.version"); //$NON-NLS-1$
        if (version == null) {
            version = "" + MAJOR_VERSION; //$NON-NLS-1$
            /* Force 3 digits in minor version number */
            if (MINOR_VERSION < 10) {
                version += "00"; //$NON-NLS-1$
            } else {
                if (MINOR_VERSION < 100) version += "0"; //$NON-NLS-1$
            }
            version += MINOR_VERSION;
            /* No "r" until first revision */
            if (REVISION > 0) version += "r" + REVISION; //$NON-NLS-1$
        }
        libName1 = name + "-" + Platform.PLATFORM + "-" + version;  //$NON-NLS-1$ //$NON-NLS-2$
        libName2 = name + "-" + Platform.PLATFORM;  //$NON-NLS-1$
        mappedName1 = System.mapLibraryName (libName1);
        mappedName2 = System.mapLibraryName (libName2);
    } else {
        libName1 = libName2 = mappedName1 = mappedName2 = name;
    }

    /* Try loading library from swt library path */
    String path = System.getProperty ("swt.library.path"); //$NON-NLS-1$
    if (path != null) {
        path = new File (path).getAbsolutePath ();
        if (load (path + SEPARATOR + mappedName1)) return;
        if (mapName && load (path + SEPARATOR + mappedName2)) return;
    }

    /* Try loading library from java library path */
    if (load (libName1)) return;
    if (mapName && load (libName2)) return;

    /* Try loading library from the tmp directory if swt library path is not specified */
    if (path == null) {
        path = System.getProperty ("java.io.tmpdir"); //$NON-NLS-1$
        path = new File (path).getAbsolutePath ();
        if (load (path + SEPARATOR + mappedName1)) return;
        if (mapName && load (path + SEPARATOR + mappedName2)) return;
    }

    /* Try extracting and loading library from jar */
    if (path != null) {
        if (extract (path + SEPARATOR + mappedName1, mappedName1)) return;
        if (mapName && extract (path + SEPARATOR + mappedName2, mappedName2)) return;
    }

    /* Failed to find the library */
    throw new UnsatisfiedLinkError ("no " + libName1 + " or " + libName2 + " in swt.library.path, java.library.path or the jar file"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
+/
}