object BasicIO
This object contains factories for scala.sys.process.ProcessIO,
which can be used to control the I/O of a scala.sys.process.Process
when a scala.sys.process.ProcessBuilder is started with the run
command.
It also contains some helper methods that can be used to in the creation of
ProcessIO
.
It is used by other classes in the package in the implementation of various features, but can also be used by client code.
- Source
- BasicIO.scala
- Alphabetic
- By Inheritance
- BasicIO
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
val
BufferSize: Int(8192)
Size of the buffer used in all the functions that copy data
-
final
val
Newline: String
Used to separate lines in the
processFully
function that takesAppendable
. -
def
apply(withIn: Boolean, log: ProcessLogger): ProcessIO
Creates a
ProcessIO
from aProcessLogger
.Creates a
ProcessIO
from aProcessLogger
. It can attach the process input to stdin.- withIn
True if the process input should be attached to stdin.
- log
A
ProcessLogger
to receive all output, normal and error.- returns
A
ProcessIO
with the characteristics above.
-
def
apply(withIn: Boolean, buffer: StringBuffer, log: Option[ProcessLogger]): ProcessIO
Creates a
ProcessIO
that appends its output to aStringBuffer
.Creates a
ProcessIO
that appends its output to aStringBuffer
. It can attach the process input to stdin, and it will either send the error stream to stderr, or to aProcessLogger
.For example, the
ProcessIO
created by the function below will store the normal output on the buffer provided, and print all error on stderr. The input will be read from stdin.import scala.sys.process.{BasicIO, ProcessLogger} val printer = ProcessLogger(println(_)) def appendToBuffer(b: StringBuffer) = BasicIO(true, b, Some(printer))
- withIn
True if the process input should be attached to stdin.
- buffer
A
StringBuffer
which will receive the process normal output.- log
An optional
ProcessLogger
to which the output should be sent. IfNone
, output will be sent to stderr.- returns
A
ProcessIO
with the characteristics above.
-
def
apply(withIn: Boolean, output: (String) ⇒ Unit, log: Option[ProcessLogger]): ProcessIO
Creates a
ProcessIO
from a functionString => Unit
.Creates a
ProcessIO
from a functionString => Unit
. It can attach the process input to stdin, and it will either send the error stream to stderr, or to aProcessLogger
.For example, the
ProcessIO
created below will print all normal output while ignoring all error output. No input will be provided.import scala.sys.process.BasicIO val errToDevNull = BasicIO(false, println(_), None)
- withIn
True if the process input should be attached to stdin.
- output
A function that will be called with the process output.
- log
An optional
ProcessLogger
to which the output should be sent. IfNone
, output will be sent to stderr.- returns
A
ProcessIO
with the characteristics above.
-
def
close(c: Closeable): Unit
Closes a
Closeable
without throwing an exception -
def
connectToIn(o: OutputStream): Unit
Copy contents of stdin to the
OutputStream
. -
def
getErr(log: Option[ProcessLogger]): (InputStream) ⇒ Unit
Returns a function
InputStream => Unit
given an optionalProcessLogger
.Returns a function
InputStream => Unit
given an optionalProcessLogger
. If no logger is passed, the function will send the output to stderr. This function can be used to create a scala.sys.process.ProcessIO.- log
An optional
ProcessLogger
to which the contents of theInputStream
will be sent.- returns
A function
InputStream => Unit
(used by scala.sys.process.ProcessIO) which will send the data to either the providedProcessLogger
or, ifNone
, to stderr.
-
def
input(connect: Boolean): (OutputStream) ⇒ Unit
Returns a function
OutputStream => Unit
that either reads the content from stdin or does nothing.Returns a function
OutputStream => Unit
that either reads the content from stdin or does nothing. This function can be used by scala.sys.process.ProcessIO. -
def
processFully(processLine: (String) ⇒ Unit): (InputStream) ⇒ Unit
Returns a function
InputStream => Unit
that will call the passed function with all data read.Returns a function
InputStream => Unit
that will call the passed function with all data read. This function can be used to create a scala.sys.process.ProcessIO. TheprocessLine
function will be called with each line read, andNewline
will be appended after each line.- processLine
A function that will be called with all data read from the stream.
- returns
A function
InputStream => Unit
(used by scala.sys.process.ProcessIO which will callprocessLine
with all data read from the stream.
-
def
processFully(buffer: Appendable): (InputStream) ⇒ Unit
Returns a function
InputStream => Unit
that appends all data read to the providedAppendable
.Returns a function
InputStream => Unit
that appends all data read to the providedAppendable
. This function can be used to create a scala.sys.process.ProcessIO. The buffer will be appended line by line.- buffer
An
Appendable
such asStringBuilder
orStringBuffer
.- returns
A function
InputStream => Unit
(used by scala.sys.process.ProcessIO which will append all data read from the stream to the buffer.
-
def
processLinesFully(processLine: (String) ⇒ Unit)(readLine: () ⇒ String): Unit
Calls
processLine
with the result ofreadLine
until the latter returnsnull
or the current thread is interrupted. -
def
standard(in: (OutputStream) ⇒ Unit): ProcessIO
Returns a
ProcessIO
connected to stdout, stderr and the providedin
-
def
standard(connectInput: Boolean): ProcessIO
Returns a
ProcessIO
connected to stdout and stderr, and, optionally, stdin. -
def
toStdErr: (InputStream) ⇒ Unit
Send all the input from the stream to stderr, and closes the input stream afterwards.
-
def
toStdOut: (InputStream) ⇒ Unit
Send all the input from the stream to stdout, and closes the input stream afterwards.
-
def
transferFully(in: InputStream, out: OutputStream): Unit
Copy all input from the input stream to the output stream.
Copy all input from the input stream to the output stream. Closes the input stream once it's all read.
This is the documentation for the Scala standard library.
Package structure
The scala package contains core types like
Int
,Float
,Array
orOption
which are accessible in all Scala compilation units without explicit qualification or imports.Notable packages include:
scala.collection
and its sub-packages contain Scala's collections frameworkscala.collection.immutable
- Immutable, sequential data-structures such asVector
,List
,Range
,HashMap
orHashSet
scala.collection.mutable
- Mutable, sequential data-structures such asArrayBuffer
,StringBuilder
,HashMap
orHashSet
scala.collection.concurrent
- Mutable, concurrent data-structures such asTrieMap
scala.collection.parallel.immutable
- Immutable, parallel data-structures such asParVector
,ParRange
,ParHashMap
orParHashSet
scala.collection.parallel.mutable
- Mutable, parallel data-structures such asParArray
,ParHashMap
,ParTrieMap
orParHashSet
scala.concurrent
- Primitives for concurrent programming such asFutures
andPromises
scala.io
- Input and output operationsscala.math
- Basic math functions and additional numeric types likeBigInt
andBigDecimal
scala.sys
- Interaction with other processes and the operating systemscala.util.matching
- Regular expressionsOther packages exist. See the complete list on the right.
Additional parts of the standard library are shipped as separate libraries. These include:
scala.reflect
- Scala's reflection API (scala-reflect.jar)scala.xml
- XML parsing, manipulation, and serialization (scala-xml.jar)scala.swing
- A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)scala.util.parsing
- Parser combinators (scala-parser-combinators.jar)Automatic imports
Identifiers in the scala package and the
scala.Predef
object are always in scope by default.Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example,
List
is an alias forscala.collection.immutable.List
.Other aliases refer to classes provided by the underlying platform. For example, on the JVM,
String
is an alias forjava.lang.String
.