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

org.crsh.console.EditorWriter Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2012 eXo Platform SAS.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

package org.crsh.console;

import java.io.IOException;

/**
 * Wraps {@link org.crsh.telnet.term.spi.TermIO} and care about CRLF.
 */
class EditorWriter {

  /** . */
  private boolean previousCR;

  /** . */
  private final ConsoleDriver io;

  protected EditorWriter(ConsoleDriver io) {
    this.io = io;
  }

  /**
   * Write a char sequence to the output.
   *
   * @param s the char sequence
   * @throws java.io.IOException any io exception
   */
  void write(CharSequence s) throws IOException {
    int len = s.length();
    if (len > 0) {
      for (int i = 0;i < len;i++) {
        char c = s.charAt(i);
        writeNoFlush(c);
      }
    }
  }

  /**
   * Write a single char to the output.
   *
   * @param c the char to write
   * @throws java.io.IOException any io exception
   */
  void write(char c) throws IOException {
    writeNoFlush(c);
  }

  private void writeNoFlush(char c) throws IOException {
    if (previousCR && c == '\n') {
      previousCR = false;
    } else if (c == '\r' || c == '\n') {
      previousCR = c == '\r';
      io.writeCRLF();
    } else {
      io.write(c);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy