src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/runtime/output/WriterOutputBuffer.java
author joehw
Wed, 04 Oct 2017 10:54:18 -0700
changeset 47312 d4f959806fe9
parent 47216 71c04702a3d5
child 48409 5ab69533994b
permissions -rw-r--r--
8187593: Cleanup: removing SecuritySupport files Reviewed-by: lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
47312
d4f959806fe9 8187593: Cleanup: removing SecuritySupport files
joehw
parents: 47216
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
d4f959806fe9 8187593: Cleanup: removing SecuritySupport files
joehw
parents: 47216
diff changeset
     3
 * @LastModified: Sep 2017
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
/*
44797
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     6
 * Licensed to the Apache Software Foundation (ASF) under one or more
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     7
 * contributor license agreements.  See the NOTICE file distributed with
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     8
 * this work for additional information regarding copyright ownership.
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
     9
 * The ASF licenses this file to You under the Apache License, Version 2.0
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
    10
 * (the "License"); you may not use this file except in compliance with
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
    11
 * the License.  You may obtain a copy of the License at
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 *
44797
8b3b3b911b8a 8162572: Update License Header for all JAXP sources
joehw
parents: 25868
diff changeset
    13
 *      http://www.apache.org/licenses/LICENSE-2.0
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 * Unless required by applicable law or agreed to in writing, software
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 * distributed under the License is distributed on an "AS IS" BASIS,
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * See the License for the specific language governing permissions and
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 * limitations under the License.
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
package com.sun.org.apache.xalan.internal.xsltc.runtime.output;
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
import java.io.BufferedWriter;
7f561c08de6b Initial load
duke
parents:
diff changeset
    25
import java.io.IOException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
import java.io.Writer;
47312
d4f959806fe9 8187593: Cleanup: removing SecuritySupport files
joehw
parents: 47216
diff changeset
    27
import jdk.xml.internal.SecuritySupport;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
/**
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
 * @author Santiago Pericas-Geertsen
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    32
class WriterOutputBuffer implements OutputBuffer {
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
    private static final int KB = 1024;
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
    private static int BUFFER_SIZE = 4 * KB;
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
    static {
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
        // Set a larger buffer size for Solaris
16953
a44e04deb948 6657673: Issues with JAXP
joehw
parents: 12457
diff changeset
    38
        final String osName = SecuritySupport.getSystemProperty("os.name");
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
        if (osName.equalsIgnoreCase("solaris")) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
            BUFFER_SIZE = 32 * KB;
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
    private Writer _writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
     * Initializes a WriterOutputBuffer by creating an instance of a
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
     * BufferedWriter. The size of the buffer in this writer may have
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
     * a significant impact on throughput. Solaris prefers a larger
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
     * buffer, while Linux works better with a smaller one.
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
    public WriterOutputBuffer(Writer writer) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
        _writer = new BufferedWriter(writer, BUFFER_SIZE);
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
    public String close() {
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
            _writer.flush();
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
        catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
            throw new RuntimeException(e.toString());
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
        return "";
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
    public OutputBuffer append(String s) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
            _writer.write(s);
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
        catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
            throw new RuntimeException(e.toString());
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
        return this;
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
    public OutputBuffer append(char[] s, int from, int to) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
            _writer.write(s, from, to);
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
        catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
            throw new RuntimeException(e.toString());
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
        return this;
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
    public OutputBuffer append(char ch) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
    88
            _writer.write(ch);
7f561c08de6b Initial load
duke
parents:
diff changeset
    89
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    90
        catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
    91
            throw new RuntimeException(e.toString());
7f561c08de6b Initial load
duke
parents:
diff changeset
    92
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
    93
        return this;
7f561c08de6b Initial load
duke
parents:
diff changeset
    94
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
    95
}