jdk/test/sun/security/pkcs11/PKCS11Test.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
Initial load
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 2003-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.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
// common infrastructure for SunPKCS11 tests
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public abstract class PKCS11Test {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    // directory of the test source
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    static final String BASE = System.getProperty("test.src", ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    static final char SEP = File.separatorChar;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private final static String REL_CLOSED = "../../../../closed/sun/security/pkcs11".replace('/', SEP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    // directory corresponding to BASE in the /closed hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    static final String CLOSED_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        // hack
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        String absBase = new File(BASE).getAbsolutePath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        int k = absBase.indexOf(SEP + "test" + SEP + "sun" + SEP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        if (k < 0) k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        String p1 = absBase.substring(0, k + 6);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        String p2 = absBase.substring(k + 5);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        CLOSED_BASE = p1 + "closed" + p2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    static String NSPR_PREFIX = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    static Provider getSunPKCS11(String config) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        Class clazz = Class.forName("sun.security.pkcs11.SunPKCS11");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        Constructor cons = clazz.getConstructor(new Class[] {String.class});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        Object obj = cons.newInstance(new Object[] {config});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        return (Provider)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    public abstract void main(Provider p) throws Exception;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    private void premain(Provider p) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        long start = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        System.out.println("Running test with provider " + p.getName() + "...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        main(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        long stop = System.currentTimeMillis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        System.out.println("Completed test with provider " + p.getName() + " (" + (stop - start) + " ms).");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public static void main(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        System.out.println("Beginning test run " + test.getClass().getName() + "...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        testDefault(test);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        testNSS(test);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        testDeimos(test);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    public static void testDeimos(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        if (new File("/opt/SUNWconn/lib/libpkcs11.so").isFile() == false ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            "true".equals(System.getProperty("NO_DEIMOS"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        String base = getBase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        String p11config = base + SEP + "nss" + SEP + "p11-deimos.txt";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        Provider p = getSunPKCS11(p11config);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        test.premain(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    public static void testDefault(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        // run test for default configured PKCS11 providers (if any)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        if ("true".equals(System.getProperty("NO_DEFAULT"))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        Provider[] providers = Security.getProviders();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        for (int i = 0; i < providers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            Provider p = providers[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
            if (p.getName().startsWith("SunPKCS11-")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                test.premain(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private static String PKCS11_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    private final static String PKCS11_REL_PATH = "sun/security/pkcs11";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public static String getBase() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if (PKCS11_BASE != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            return PKCS11_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        File cwd = new File(System.getProperty("test.src", ".")).getCanonicalFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            File file = new File(cwd, "TEST.ROOT");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (file.isFile()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            cwd = cwd.getParentFile();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            if (cwd == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                throw new Exception("Test root directory not found");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        PKCS11_BASE = new File(cwd, PKCS11_REL_PATH.replace('/', SEP)).getAbsolutePath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        return PKCS11_BASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public static String getNSSLibDir() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        Properties props = System.getProperties();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        String osName = props.getProperty("os.name");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        if (osName.startsWith("Win")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            osName = "Windows";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            NSPR_PREFIX = "lib";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        String osid = osName + "-"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
                + props.getProperty("os.arch") + "-" + props.getProperty("sun.arch.data.model");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        String ostype = osMap.get(osid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        if (ostype == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            System.out.println("Unsupported OS, skipping: " + osid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
//          throw new Exception("Unsupported OS " + osid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        if (ostype.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            System.out.println("NSS not supported on this platform, skipping test");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        String base = getBase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        String libdir = base + SEP + "nss" + SEP + "lib" + SEP + ostype + SEP;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        System.setProperty("pkcs11test.nss.libdir", libdir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        return libdir;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    static boolean loadNSPR(String libdir) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        // load NSS softoken dependencies in advance to avoid resolver issues
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            System.load(libdir + System.mapLibraryName(NSPR_PREFIX + "nspr4"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        } catch (UnsatisfiedLinkError e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            // GLIBC problem on older linux-amd64 machines
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            if (libdir.contains("linux-amd64")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                System.out.println(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                System.out.println("NSS does not work on this platform, skipping.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            throw e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        System.load(libdir + System.mapLibraryName(NSPR_PREFIX + "plc4"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        System.load(libdir + System.mapLibraryName(NSPR_PREFIX + "plds4"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    public static void testNSS(PKCS11Test test) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        String libdir = getNSSLibDir();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        if (libdir == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        String base = getBase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        if (loadNSPR(libdir) == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        String libfile = libdir + System.mapLibraryName("softokn3");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        String customDBdir = System.getProperty("CUSTOM_DB_DIR");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        String dbdir = (customDBdir != null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                                customDBdir :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                                base + SEP + "nss" + SEP + "db";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        // NSS always wants forward slashes for the config path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        dbdir = dbdir.replace('\\', '/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        String customConfig = System.getProperty("CUSTOM_P11_CONFIG");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        String customConfigName = System.getProperty("CUSTOM_P11_CONFIG_NAME", "p11-nss.txt");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        String p11config = (customConfig != null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                                customConfig :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
                                base + SEP + "nss" + SEP + customConfigName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        System.setProperty("pkcs11test.nss.lib", libfile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        System.setProperty("pkcs11test.nss.db", dbdir);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        Provider p = getSunPKCS11(p11config);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        test.premain(p);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    private static final Map<String,String> osMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        osMap = new HashMap<String,String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        osMap.put("SunOS-sparc-32", "solaris-sparc");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        osMap.put("SunOS-sparcv9-64", "solaris-sparcv9");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        osMap.put("SunOS-x86-32", "solaris-i586");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        osMap.put("SunOS-amd64-64", "solaris-amd64");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        osMap.put("Linux-i386-32", "linux-i586");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        osMap.put("Linux-amd64-64", "linux-amd64");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        osMap.put("Windows-x86-32", "windows-i586");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    private final static char[] hexDigits = "0123456789abcdef".toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    public static String toString(byte[] b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        if (b == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            return "(null)";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        StringBuffer sb = new StringBuffer(b.length * 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        for (int i = 0; i < b.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            int k = b[i] & 0xff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            if (i != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                sb.append(':');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            sb.append(hexDigits[k >>> 4]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            sb.append(hexDigits[k & 0xf]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public static byte[] parse(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        if (s.equals("(null)")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            int n = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            ByteArrayOutputStream out = new ByteArrayOutputStream(n / 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
            StringReader r = new StringReader(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
            while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                int b1 = nextNibble(r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                if (b1 < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                int b2 = nextNibble(r);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                if (b2 < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                    throw new RuntimeException("Invalid string " + s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                int b = (b1 << 4) | b2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                out.write(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            return out.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            throw new RuntimeException(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    private static int nextNibble(StringReader r) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            int ch = r.read();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            if (ch == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            } else if ((ch >= '0') && (ch <= '9')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                return ch - '0';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            } else if ((ch >= 'a') && (ch <= 'f')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                return ch - 'a' + 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            } else if ((ch >= 'A') && (ch <= 'F')) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                return ch - 'A' + 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    <T> T[] concat(T[] a, T[] b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        if ((b == null) || (b.length == 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        T[] r = (T[])java.lang.reflect.Array.newInstance(a.getClass().getComponentType(), a.length + b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
        System.arraycopy(a, 0, r, 0, a.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        System.arraycopy(b, 0, r, a.length, b.length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        return r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
}