# HG changeset patch # User asaha # Date 1250639603 25200 # Node ID 5fd64379cea529b98bb8e6dd031dcfc74e874216 # Parent f67abce80f054ecb21c241e851e98f88955b719b# Parent e214b718aeef8b2a53ede7faf325d523100ba1c7 Merge diff -r f67abce80f05 -r 5fd64379cea5 jdk/src/share/classes/com/sun/security/auth/callback/TextCallbackHandler.java --- a/jdk/src/share/classes/com/sun/security/auth/callback/TextCallbackHandler.java Tue Aug 18 12:10:12 2009 +0800 +++ b/jdk/src/share/classes/com/sun/security/auth/callback/TextCallbackHandler.java Tue Aug 18 16:53:23 2009 -0700 @@ -129,7 +129,7 @@ System.err.print(pc.getPrompt()); System.err.flush(); - pc.setPassword(Password.readPassword(System.in)); + pc.setPassword(Password.readPassword(System.in, pc.isEchoOn())); } else if (callbacks[i] instanceof ConfirmationCallback) { confirmation = (ConfirmationCallback) callbacks[i]; diff -r f67abce80f05 -r 5fd64379cea5 jdk/src/share/classes/sun/nio/cs/ext/ISO2022.java --- a/jdk/src/share/classes/sun/nio/cs/ext/ISO2022.java Tue Aug 18 12:10:12 2009 +0800 +++ b/jdk/src/share/classes/sun/nio/cs/ext/ISO2022.java Tue Aug 18 16:53:23 2009 -0700 @@ -388,9 +388,9 @@ protected static class Encoder extends CharsetEncoder { private final Surrogate.Parser sgp = new Surrogate.Parser(); - private final byte SS2 = (byte)0x8e; - private final byte PLANE2 = (byte)0xA2; - private final byte PLANE3 = (byte)0xA3; + public static final byte SS2 = (byte)0x8e; + public static final byte PLANE2 = (byte)0xA2; + public static final byte PLANE3 = (byte)0xA3; private final byte MSB = (byte)0x80; protected final byte maximumDesignatorLength = 4; diff -r f67abce80f05 -r 5fd64379cea5 jdk/src/share/classes/sun/nio/cs/ext/ISO2022_CN_CNS.java --- a/jdk/src/share/classes/sun/nio/cs/ext/ISO2022_CN_CNS.java Tue Aug 18 12:10:12 2009 +0800 +++ b/jdk/src/share/classes/sun/nio/cs/ext/ISO2022_CN_CNS.java Tue Aug 18 16:53:23 2009 -0700 @@ -76,6 +76,15 @@ } catch (Exception e) { } } + private byte[] bb = new byte[4]; + public boolean canEncode(char c) { + int n = 0; + return (c <= '\u007f' || + (n = ((EUC_TW.Encoder)ISOEncoder).toEUC(c, bb)) == 2 || + (n == 4 && bb[0] == SS2 && + (bb[1] == PLANE2 || bb[1] == PLANE3))); + } + /* * Since ISO2022-CN-CNS possesses a CharsetEncoder * without the corresponding CharsetDecoder half the diff -r f67abce80f05 -r 5fd64379cea5 jdk/src/share/classes/sun/security/util/Password.java --- a/jdk/src/share/classes/sun/security/util/Password.java Tue Aug 18 12:10:12 2009 +0800 +++ b/jdk/src/share/classes/sun/security/util/Password.java Tue Aug 18 16:53:23 2009 -0700 @@ -1,5 +1,5 @@ /* - * Copyright 2003-2006 Sun Microsystems, Inc. All Rights Reserved. + * Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -37,6 +37,14 @@ public class Password { /** Reads user password from given input stream. */ public static char[] readPassword(InputStream in) throws IOException { + return readPassword(in, false); + } + + /** Reads user password from given input stream. + * @param isEchoOn true if the password should be echoed on the screen + */ + public static char[] readPassword(InputStream in, boolean isEchoOn) + throws IOException { char[] consoleEntered = null; byte[] consoleBytes = null; @@ -44,7 +52,7 @@ try { // Use the new java.io.Console class Console con = null; - if (in == System.in && ((con = System.console()) != null)) { + if (!isEchoOn && in == System.in && ((con = System.console()) != null)) { consoleEntered = con.readPassword(); // readPassword returns "" if you just print ENTER, // to be compatible with old Password class, change to null diff -r f67abce80f05 -r 5fd64379cea5 jdk/src/windows/classes/sun/nio/fs/WindowsFileSystem.java --- a/jdk/src/windows/classes/sun/nio/fs/WindowsFileSystem.java Tue Aug 18 12:10:12 2009 +0800 +++ b/jdk/src/windows/classes/sun/nio/fs/WindowsFileSystem.java Tue Aug 18 16:53:23 2009 -0700 @@ -283,25 +283,15 @@ } } - // match in uppercase - StringBuilder sb = new StringBuilder(expr.length()); - for (int i=0; i UNEXPECTED RESULT!"); + failures++; + } + } + + public static void main(String[] args) { // basic assertMatch("foo.html", "foo.html"); @@ -140,21 +154,13 @@ assertMatch("one*two", "one\\*two"); } - + // regex syntax + assertRegExMatch("foo.html", ".*\\.html"); - // regex syntax - { - String pattern = ".*\\.html"; - System.out.format("Test regex pattern: %s", pattern); - Path file = Paths.get("foo.html"); - boolean matched = file.getFileSystem() - .getPathMatcher("regex:" + pattern).matches(file); - if (matched) { - System.out.println(" OKAY"); - } else { - System.out.println(" ==> UNEXPECTED RESULT!"); - failures++; - } + if (System.getProperty("os.name").startsWith("Windows")) { + assertRegExMatch("foo012", "foo\\d+"); + assertRegExMatch("fo o", "fo\\so"); + assertRegExMatch("foo", "\\w+"); } // unknown syntax diff -r f67abce80f05 -r 5fd64379cea5 jdk/test/sun/nio/cs/FindCanEncodeBugs.java --- a/jdk/test/sun/nio/cs/FindCanEncodeBugs.java Tue Aug 18 12:10:12 2009 +0800 +++ b/jdk/test/sun/nio/cs/FindCanEncodeBugs.java Tue Aug 18 16:53:23 2009 -0700 @@ -22,7 +22,7 @@ */ /* @test - @bug 5066863 5066867 5066874 5066879 5066884 5066887 5065777 + @bug 5066863 5066867 5066874 5066879 5066884 5066887 5065777 6730652 @summary canEncode() false iff encode() throws CharacterCodingException @run main/timeout=1200 FindCanEncodeBugs @author Martin Buchholz @@ -52,9 +52,7 @@ String csn = e.getKey(); Charset cs = e.getValue(); - if (! cs.canEncode() || - csn.matches("x-COMPOUND_TEXT") || - csn.matches("x-ISO-2022-CN-CNS")) // ISO2022_CN_CNS supports less + if (! cs.canEncode() || csn.matches("x-COMPOUND_TEXT")) continue; //System.out.println(csn);