grizzled.readline.jline.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grizzled-scala_2.9.1-1 Show documentation
Show all versions of grizzled-scala_2.9.1-1 Show documentation
A general-purpose Scala utility library
The newest version!
/*
---------------------------------------------------------------------------
This software is released under a BSD license, adapted from
http://opensource.org/licenses/bsd-license.php
Copyright (c) 2009, Brian M. Clapper
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the names "clapper.org", "Grizzled Scala Library", nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---------------------------------------------------------------------------
*/
/** JLine implementation of the traits defined in the base readline package.
*/
package grizzled.readline.jline
import grizzled.readline._
import _root_.jline.console.ConsoleReader
import _root_.jline.console.completer.{Completer => JLineCompleter}
import scala.collection.JavaConversions._
/** History implementation that wraps the JLine history API.
*/
private[jline] class JLineHistory(val reader: ConsoleReader)
extends History with Util {
val history = reader.getHistory
max = Integer.MAX_VALUE
/** Get the contents of the history buffer, in a list.
*
* @return the history lines
*/
def get: List[String] = {
import scala.collection.mutable.ArrayBuffer
val result = new ArrayBuffer[String]
history.entries.map(_.toString).toList
}
/** Clear the history buffer
*/
def clear = history.clear
/** Get the last (i.e., most recent) entry from the buffer.
*
* @return the most recent entry, as an `Option`, or
* `None` if the history buffer is empty
*/
def last: Option[String] = str2opt(history.current.toString)
/** Get the current number of entries in the history buffer.
*
* @return the size of the history buffer
*/
def size: Int = history.size
/** Get maximum history size.
*
* @return the current max history size, or 0 for unlimited.
*/
def max: Int = 0
/** Set maximum history size.
*
* @param newSize the new max history size, or 0 for unlimited.
*/
def max_=(newSize: Int) = ()
/** Unconditionally appends the specified line to the history.
*
* @param line the line to add
*/
protected def append(line: String) = history.add(line)
}
/** JLine implementation of the Readline trait.
*/
private[readline] class JLineImpl(appName: String, val autoAddHistory: Boolean)
extends Readline with Util {
val name = "JLine"
val reader = new ConsoleReader
val history = new JLineHistory(reader)
reader.addCompleter(jlCompleter)
reader.setHistoryEnabled(false) // we'll do it manually
val self = this
// Need to use a Scala existential type as the parameter to the
// complete() method, below, because Scala will type the java.util.List
// parameter as List[_], and will then complain when we try to add a
// String to the list. The existential type gets around that problem by
// supplying (by force) type information for the list. See Chapter 29
// (section 29.3) in the "Programming in Scala" book.
type JList = java.util.List[T] forSome {type T}
type JSList = java.util.List[String]
object jlCompleter extends JLineCompleter with CompleterHelper {
def complete(buf: String,
cursor: Int,
completions: java.util.List[CharSequence]): Int = {
import grizzled.parsing.StringToken
import grizzled.string.GrizzledString._
def save(scalaCompletions: List[String]) = {
// Hiding this in a method, and casting the incoming
// java.util.List parameter, keeps Scala's type
// checker from bitching.
val javaCompletions = completions.asInstanceOf[JSList]
for (s <- scalaCompletions)
javaCompletions.add(s)
}
def mapTokens(tokens: List[StringToken]): List[CompletionToken] = {
def within(token: StringToken) = {
val end = token.start + token.string.length
(cursor >= token.start) && (cursor <= end)
}
def before(token: StringToken) = cursor < token.start
def after(token: StringToken) =
cursor > (token.start + token.string.length)
tokens match {
case Nil =>
List(Cursor)
case token :: Nil if (before(token)) =>
List(Cursor, Delim, LineToken(token.string))
case token :: Nil if (within(token)) =>
List(LineToken(token.string), Cursor)
case token :: Nil if (after(token)) =>
List(LineToken(token.string), Delim, Cursor)
case token :: rest if (before(token)) =>
Cursor :: Delim :: LineToken(token.string) :: Delim ::
mapWithDelims(rest)
case token :: rest if (within(token)) =>
LineToken(token.string) :: Cursor :: Delim ::
mapWithDelims(rest)
case token :: rest =>
LineToken(token.string) :: Delim :: mapTokens(rest)
}
}
def findToken(tokens: List[CompletionToken]): String = {
tokens match {
case Nil =>
""
case (Delim | Cursor) :: Nil => ""
case LineToken(s) :: Cursor :: rest => s
case LineToken(s) :: Delim :: Cursor :: rest => ""
case LineToken(s) :: rest => findToken(rest)
case Cursor :: rest => ""
case Delim :: rest => findToken(rest)
}
}
// self.completer is the caller-supplied completer object.
val line = if (buf == null) "" else buf
val delims = self.completer.tokenDelimiters
val tokens = mapTokens(line.toTokens(delims))
assert (tokens contains Cursor)
val tokenToComplete = findToken(tokens)
save(self.completer.complete(tokenToComplete, tokens, line))
if (completions.size == 0)
-1
else if (tokenToComplete.length == 0)
cursor
else
cursor - tokenToComplete.length
}
}
private[readline] def doReadline(prompt: String): Option[String] = {
try {
reader.setPrompt(prompt)
str2opt(reader.readLine)
}
catch {
case e: java.io.EOFException => None
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy