Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6964680

build fails if a timezone data file contains non-ASCII-7 chars and LANG is not "C"

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P3 P3
    • 7
    • 1.4.2
    • core-libs

      Our source licensee reports that a jdk build of 1.4.2 fails (namely building j2se/make/sun/javazic) if a timezone file is in incorrect utf-8 encoding.

      For example
      /java/re/j2se/1.4.2_22/promoted/ea/b01/j4b/ws//j2se/make/sun/javazic/tzdata/southamerica

      Correctness may be verified with GNU's iconv tool
       iconv -f utf-8 -t ascii < /Volumes/java/re/j2se/1.4.2_22/promoted/ea/b01/j4b/ws//j2se/make/sun/javazic/tzdata/southamerica > /dev/null

      iconv: (stdin):369:71: cannot convert

      According to the analysis done by the CU the problem happens when building j2se/make/sun/javazic

      It will first compile the Zoneinfo compiler (in sun.tools.javazic.Zoneinfo) which in turn is used to compile the Zeneinfo-files from "j2se/make/sun/javazic/tzdata/".
      The problem now is that the Zoneinfo class uses a FileReader for reading the timezone files and FileReader assumes the "default character encoding". If this "default character encoding" happens to be "utf8" the reader will eventually throw a sun.io.MalFormedInputException if reading the mentioned file (see mail below). Subsequently this will abort Zoneinfo with an "IO error: " message (see sources of Zoeninfo.java)

      It is suggested to either convert timezone files to proper ASCII-7 or UTF-8 encoding or to make corresponding changes in Zoneinfo around the FileReader.
      Another suggestion is to specify in build instructions that user should set LANG env variable to en_US.ISO-8859-1

      Alternatively a standard FileReader in Zoneinfo.java could be replaced with InputStreamReader(new FileInputStream(fname),"ASCII ") so that this part of code does not rely on locale settings butrather on actual input data file encoding (timezone file).

            okutsu Masayoshi Okutsu
            ikrylov Ivan Krylov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: