src/share/classes/com/sun/tools/sjavac/comp/SmartWriter.java

Mon, 11 Mar 2013 19:03:35 -0700

author
ohrstrom
date
Mon, 11 Mar 2013 19:03:35 -0700
changeset 1625
fbb6e470079d
parent 1504
22e417cdddee
child 2227
998b10c43157
permissions
-rw-r--r--

8009843: sjavac should accept -cp as synonym for -classpath
Reviewed-by: jjg

ohrstrom@1504 1 /*
ohrstrom@1504 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
ohrstrom@1504 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohrstrom@1504 4 *
ohrstrom@1504 5 * This code is free software; you can redistribute it and/or modify it
ohrstrom@1504 6 * under the terms of the GNU General Public License version 2 only, as
ohrstrom@1504 7 * published by the Free Software Foundation. Oracle designates this
ohrstrom@1504 8 * particular file as subject to the "Classpath" exception as provided
ohrstrom@1504 9 * by Oracle in the LICENSE file that accompanied this code.
ohrstrom@1504 10 *
ohrstrom@1504 11 * This code is distributed in the hope that it will be useful, but WITHOUT
ohrstrom@1504 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohrstrom@1504 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohrstrom@1504 14 * version 2 for more details (a copy is included in the LICENSE file that
ohrstrom@1504 15 * accompanied this code).
ohrstrom@1504 16 *
ohrstrom@1504 17 * You should have received a copy of the GNU General Public License version
ohrstrom@1504 18 * 2 along with this work; if not, write to the Free Software Foundation,
ohrstrom@1504 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohrstrom@1504 20 *
ohrstrom@1504 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohrstrom@1504 22 * or visit www.oracle.com if you need additional information or have any
ohrstrom@1504 23 * questions.
ohrstrom@1504 24 */
ohrstrom@1504 25 package com.sun.tools.sjavac.comp;
ohrstrom@1504 26
ohrstrom@1504 27 import java.io.*;
ohrstrom@1504 28 import javax.tools.JavaFileObject;
ohrstrom@1504 29
ohrstrom@1504 30 /**
ohrstrom@1504 31 * The SmartWriter will cache the written data and when the writer is closed,
ohrstrom@1504 32 * then it will compare the cached data with the old_content string.
ohrstrom@1504 33 * If different, then it will write all the new content to the file.
ohrstrom@1504 34 * If not, the file is not touched.
ohrstrom@1504 35 *
ohrstrom@1504 36 * <p><b>This is NOT part of any supported API.
ohrstrom@1504 37 * If you write code that depends on this, you do so at your own
ohrstrom@1504 38 * risk. This code and its internal interfaces are subject to change
ohrstrom@1504 39 * or deletion without notice.</b></p>
ohrstrom@1504 40 */
ohrstrom@1504 41 public class SmartWriter extends Writer {
ohrstrom@1504 42
ohrstrom@1504 43 String name;
ohrstrom@1504 44 JavaFileObject file;
ohrstrom@1504 45 String oldContent;
ohrstrom@1504 46 StringWriter newContent = new StringWriter();
ohrstrom@1504 47 PrintWriter stdout;
ohrstrom@1504 48 boolean closed;
ohrstrom@1504 49 public SmartWriter(JavaFileObject f, String s, String n, PrintWriter pw) {
ohrstrom@1504 50 name = n;
ohrstrom@1504 51 file = f;
ohrstrom@1504 52 oldContent = s;
ohrstrom@1504 53 newContent = new StringWriter();
ohrstrom@1504 54 stdout = pw;
ohrstrom@1504 55 closed = false;
ohrstrom@1504 56 }
ohrstrom@1504 57
ohrstrom@1504 58 public void write(char[] chars, int i, int i1)
ohrstrom@1504 59 {
ohrstrom@1504 60 newContent.write(chars, i, i1);
ohrstrom@1504 61 }
ohrstrom@1504 62
ohrstrom@1504 63 public void close() throws IOException {
ohrstrom@1504 64 if (closed) return;
ohrstrom@1504 65 closed = true;
ohrstrom@1504 66 String s = newContent.toString();
ohrstrom@1504 67 if (!oldContent.equals(s)) {
ohrstrom@1504 68 int p = file.getName().lastIndexOf(File.separatorChar);
ohrstrom@1504 69 try (Writer writer = file.openWriter()) {
ohrstrom@1504 70 writer.write(s);
ohrstrom@1504 71 }
ohrstrom@1504 72 stdout.println("Writing "+file.getName().substring(p+1));
ohrstrom@1504 73 }
ohrstrom@1504 74 }
ohrstrom@1504 75
ohrstrom@1504 76 public void flush() throws IOException {
ohrstrom@1504 77 }
ohrstrom@1504 78 }

mercurial