All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.mina.filter.codec.textline.LineDelimiter Maven / Gradle / Ivy

There is a newer version: 3.0.0-M2
Show newest version
/*
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you under the Apache License, Version 2.0 (the
 *  "License"); you may not use this file except in compliance
 *  with the License.  You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing,
 *  software distributed under the License is distributed on an
 *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 *  KIND, either express or implied.  See the License for the
 *  specific language governing permissions and limitations
 *  under the License.
 *
 */
package org.apache.mina.filter.codec.textline;

import java.io.ByteArrayOutputStream;
import java.io.PrintWriter;

/**
 * A delimiter which is appended to the end of a text line, such as
 * CR/LF. This class defines default delimiters for various
 * OS :
 * 
    *
  • Unix/Linux : LineDelimiter.UNIX ("\n")
  • *
  • Windows : LineDelimiter.WINDOWS ("\r\n")
  • *
  • MAC : LineDelimiter.MAC ("\r")
  • *
* * @author Apache MINA Project */ public class LineDelimiter { /** the line delimiter constant of the current O/S. */ public static final LineDelimiter DEFAULT; /** Compute the default delimiter on he current OS */ static { ByteArrayOutputStream bout = new ByteArrayOutputStream(); PrintWriter out = new PrintWriter(bout, true); out.println(); DEFAULT = new LineDelimiter(new String(bout.toByteArray())); } /** * A special line delimiter which is used for auto-detection of * EOL in {@link TextLineDecoder}. If this delimiter is used, * {@link TextLineDecoder} will consider both '\r' and * '\n' as a delimiter. */ public static final LineDelimiter AUTO = new LineDelimiter(""); /** * The CRLF line delimiter constant ("\r\n") */ public static final LineDelimiter CRLF = new LineDelimiter("\r\n"); /** * The line delimiter constant of UNIX ("\n") */ public static final LineDelimiter UNIX = new LineDelimiter("\n"); /** * The line delimiter constant of MS Windows/DOS ("\r\n") */ public static final LineDelimiter WINDOWS = CRLF; /** * The line delimiter constant of Mac OS ("\r") */ public static final LineDelimiter MAC = new LineDelimiter("\r"); /** * The line delimiter constant for NUL-terminated text protocols * such as Flash XML socket ("\0") */ public static final LineDelimiter NUL = new LineDelimiter("\0"); /** Stores the selected Line delimiter */ private final String value; /** * Creates a new line delimiter with the specified value. * * @param value The new Line Delimiter */ public LineDelimiter(String value) { if (value == null) { throw new IllegalArgumentException("delimiter"); } this.value = value; } /** * @return the delimiter string. */ public String getValue() { return value; } /** * {@inheritDoc} */ @Override public int hashCode() { return value.hashCode(); } /** * {@inheritDoc} */ @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof LineDelimiter)) { return false; } LineDelimiter that = (LineDelimiter) o; return this.value.equals(that.value); } /** * {@inheritDoc} */ @Override public String toString() { if (value.length() == 0) { return "delimiter: auto"; } else { StringBuilder buf = new StringBuilder(); buf.append("delimiter:"); for (int i = 0; i < value.length(); i++) { buf.append(" 0x"); buf.append(Integer.toHexString(value.charAt(i))); } return buf.toString(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy