is IO::Handle
This class has been available in Rakudo since version 2017.06.
The IO::CatHandle
class provides a means to create an IO::Handle
that seamlessly gathers input from multiple IO::Handle
and IO::Pipe
sources.
All of the IO::Handle
's methods are implemented, and while attempt to use write methods will (currently) throw an exception; an IO::CatHandle
is usable anywhere a read-only IO::Handle
can be used.
Methods§
method new§
method new(*, :, : = True,: = ["\n", "\r\n"], Str :, Bool :)
Creates a new IO::CatHandle
object.
The @handles
positional argument indicates a source of handles for the IO::CatHandle
to read from and can deal with a mixed collection of Cool
, IO::Path
, and IO::Handle
(including IO::Pipe
) objects. As input from IO::CatHandle
is processed (so operations won't happen during .new
call, but only when @handles
' data is needed), it will walk through the @handles
list, processing each argument as follows:
IO::Path
objects will be opened for reading using theIO::CatHandle
's (invocant's) attributes foropen
calls;un-opened
IO::Handle
objects will be opened in the same fashion asIO::Path
objects;and already opened
IO::Handle
objects will have all of their attributes set to the attributes of the invocantIO::CatHandle
.
In short, all the @handles
end up as IO::Handle
objects opened in the same mode and with the same attributes as the invocant IO::CatHandle
.
See .on-switch
method for details on the :&on-switch
named argument, which by default is not set.
The :$encoding
named argument specifies the handle's encoding and accepts the same values as IO::Handle.encoding
. Set :$bin
named argument to True
if you wish the handle to be in binary mode. Attempting to specify both a defined :$encoding
and a True
:$bin
is a fatal error resulting in X::IO::BinaryAndEncoding
exception thrown. If neither :$encoding
is set nor :$bin
set to a true value, the handle will default to utf8
encoding.
The :$chomp
and :$nl-in
arguments have the same meaning as in IO::Handle
and take and default to the same values.
method chomp§
method chomp(IO::CatHandle:) is rw
Sets the invocant's $.chomp
attribute to the assigned value. All source handles, including the active one will use the provided $.chomp
value.
(my = 'foo'.IO).spurt: "A\nB\nC\n";(my = 'bar'.IO).spurt: "D\nE\n";with IO::CatHandle.new: ,
method nl-in§
method nl-in(IO::CatHandle:) is rw
Sets the invocant's $.nl-in
attribute to the assigned value, which can be a Str
or a List
of Str
, where each Str
object represents the end-of-line string. All source handles, including the active one will use the provided $.nl-in
value. Note that source handle boundary is always counted as a new line break.
(my = 'foo'.IO).spurt: "A\nB\nC";(my = 'bar'.IO).spurt: "DxEx";with IO::CatHandle.new: ,
method close§
method close(IO::CatHandle: --> True)
Closes the currently active source handle, as well as any already-open source handles, and empties the source handle queue. Unlike a regular IO::Handle
, an explicit call to .close
is often not necessary on an IO::CatHandle
, as merely exhausting all the input closes all the handles that need to be closed.
with IO::CatHandle.new:
method comb§
method comb(IO::CatHandle: |args --> Seq)
Read the handle and processes its contents the same way Str.comb
does, taking the same arguments. Implementations may slurp the contents of all the source handles in their entirety when this method is called.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';IO::CatHandle.new(, ).comb(2).raku.say;# OUTPUT: «("fo", "ob", "ar").Seq»
method DESTROY§
method DESTROY(IO::CatHandle:)
Calls .close
. This method isn't to be used directly, but is something that's called during garbage collection.
method encoding§
multi method encoding(IO::CatHandle:)multi method encoding(IO::CatHandle: )
Sets the invocant's $.encoding
attribute to the provided value. Valid values are the same as those accepted by IO::Handle.encoding
(use value Nil
to switch to binary mode). All source handles, including the active one will use the provided $.encoding
value.
(my = 'foo'.IO).spurt: 'I ♥ Raku';(my = 'bar'.IO).spurt: 'meow';with IO::CatHandle.new: ,
method eof§
method eof(IO::CatHandle: --> Bool)
Returns True
if the read operations have exhausted the source handle queue, including the contents of the last handle. Note: calling this method may cause one or more .on-switch
calls, while the source handle queue is examined, and the source handle queue may get exhausted.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';with IO::CatHandle.new: :on-switch, ,
The same caveats for non-seekable handles and empty files that apply to IO::Handle.eof apply here.
method get§
method get(IO::CatHandle: --> Bool)
Returns a single line of input from the handle, with the new line string defined by the value(s) of $.nl-in
attribute, which will be removed from the line if $.chomp
attribute is set to True
. Returns Nil
when there is no more input. It is an error to call this method when the handle is in binary mode, resulting in X::IO::BinaryMode
exception being thrown.
(my = 'foo'.IO).spurt: "a\nb\nc";(my = 'bar'.IO).spurt: "d\ne";my = IO::CatHandle.new: , ;.say while = .get; # OUTPUT: «abcde»
method getc§
method getc(IO::CatHandle: --> Bool)
Returns a single character of input from the handle. All the caveats described in IO::Handle.getc
apply. Returns Nil
when there is no more input. It is an error to call this method when the handle is in binary mode, resulting in X::IO::BinaryMode
exception being thrown.
(my = 'foo'.IO).spurt: 'I ♥ Raku';(my = 'bar'.IO).spurt: 'meow';my = IO::CatHandle.new: , ;.say while = .getc; # OUTPUT: «I ♥ Rakumeow»
method handles§
Defines as:
method handles(IO::CatHandle: --> Seq)
Returns a Seq
containing the currently-active handle, as well as all the remaining source handles produced by calling next-handle. If the invocant has already been fully-consumed, returns an empty Seq
.
This method is especially handy when working with IO::ArgFiles
, where you want to treat each filehandle separately:
# print at most the first 2 lines of each file in $*ARGFILES:.say for flat .handles.map: *.lines: 2
It is acceptable to call this method multiple times; .handles.head
is a valid idiom for obtaining the currently-active handle. If, between reification of the elements of the returned Seq
the handles get switched by some other means, the next element produced by the Seq
would be the next handle of the invocant, not the handle that would've been produced if no switching occurred:
(my := 'file1'.IO).spurt: "1a\n1b\n1c";(my := 'file2'.IO).spurt: "2a\n2b\n2c";(my := 'file3'.IO).spurt: "3a\n3b\n3c";my := IO::CatHandle.new: , , ;for .handles# OUTPUT: «(1a 1b)(3a 3b)»
Likewise, reifying the returned Seq
consumes the invocant's source handles and once it is fully reified the invocant becomes fully-consumed.
method IO§
method IO(IO::CatHandle:)
Alias for .path
method lines§
method lines(IO::CatHandle: = Inf, : --> Seq)
Same as IO::Handle.lines
. Note that a boundary between source handles is considered to be a newline break.
(my = 'foo'.IO).spurt: "foo\nbar";(my = 'bar'.IO).spurt: 'meow';IO::CatHandle.new(, ).lines.raku.say;# OUTPUT: «("foo", "bar", "meow").Seq»
Note: if :$close
is False
, fully-consumed handles are still going to be closed.
method lock§
method lock(IO::CatHandle: Bool : = False, Bool : = False --> True)
Same as IO::Handle.lock
. Returns Nil
if the source handle queue has been exhausted.
Locks only the currently active source handle. The .on-switch
Callable
can be used to conveniently lock/unlock the handles as they're being processed by the CatHandle.
method native-descriptor§
method native-descriptor(IO::CatHandle: --> Int)
Returns the native-descriptor of the currently active source handle or Nil
if the source handle queue has been exhausted.
Since the CatHandle
closes a source handle, once it's done with it, it's possible for successive source handles to have the same native descriptor, if they were passed to .new as Cool
or IO::Path
objects.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';with IO::CatHandle.new: , ,
method next-handle§
method next-handle(IO::CatHandle: --> IO::Handle)
Switches the active source handle to the next handle in the source handle queue, which is the sources given in @handles
attribute to .new
. The return value is the currently active source handle or Nil
if the source handle queue has been exhausted.
Coerces Cool
source "handles" to IO::Path
; opens IO::Path
and unopened IO::Handle
source handles for reading using the invocant's $.nl-in
, $.chomp
, and $.encoding
attributes; those same attributes of already-opened IO::Handle
objects will be changed to the values of the invocant's attributes.
This method is called automatically whenever CatHandle's methods require a switch to the next source handle, triggers .on-switch
Callable
to be called, and is called once during .new call. The .on-switch
will continue to be triggered each time this method is called, even after the source handle queue has been exhausted. Note that generally reaching the EOF of the currently active source handle does not trigger the .next-handle
call, but rather further read operations that need more data do.
(my = 'foo'.IO).spurt: "a\nb";(my = 'bar'.IO).spurt: "c\nd";with IO::CatHandle.new: :on-switch, ,
method on-switch§
has is rw
One of the attributes that can be set during .new
call and changed later by assigning to. By default is not specified. Takes a Callable
with .count
of 0
, 1
, 2
, or Inf
. Gets called every time .next-handle
is, which happens once during .new
call and then each time a source handle is switched to the next one in the queue, or when the .next-handle
method is called manually.
If the .count
of &.on-switch
is 0
, it receives no arguments; if it's 1
, it receives the currently active handle, and if it's 2
or Inf
, it receives the currently active handle, and the last active handle as positional arguments (in that order). On the very first &.on-switch
execution, the "last active handle" argument is Nil
. Upon source handle queue exhaustion the "currently active handle" argument is Nil
, and all the executions made afterwards have both arguments as Nil
.
(my = 'foo'.IO).spurt: "A\nB\nC";(my = 'bar'.IO).spurt: "D\nE";my ;my = IO::CatHandle.new: :on-switch, , ;say ": $_" for .lines;# OUTPUT:# foo:1 A# foo:2 B# foo:3 C# bar:1 D# bar:2 E
my ;sub on-switch (, )(my = 'foo'.IO).spurt: "A\nB\nC";(my = 'bar'.IO).spurt: "D\nE";my = IO::CatHandle.new: :, , ;.lines.raku.say; # OUTPUT: «("", "B", "C", "", "E").Seq».raku.say; # OUTPUT: «["A\nB\nC", "D\nE"]»
method open§
method open(IO::CatHandle: --> IO::CatHandle)
Returns the invocant. The intent of this method is to merely make CatHandle workable with things that open IO::Handle
. You never have to call this method intentionally.
method opened§
method opened(IO::CatHandle: --> Bool)
Returns True
if the invocant has any source handles, False
otherwise.
say IO::CatHandle.new .opened; # OUTPUT: «False»say IO::CatHandle.new().opened; # OUTPUT: «True»(my = 'foo'.IO).spurt: "A\nB\nC";with IO::CatHandle.new:
method path§
method path(IO::CatHandle:)
Returns the value of .path
attribute of the currently active source handle, or Nil
if the source handle queue has been exhausted. Basically, if your CatHandle is based on files, this is the way to get the path of the file the CatHandle is currently reading from.
(my = 'foo'.IO).spurt: "A\nB\nC";(my = 'bar'.IO).spurt: "D\nE";my ;my = IO::CatHandle.new: :on-switch, , ;say ": $_" for .lines;# OUTPUT:# foo:1 A# foo:2 B# foo:3 C# bar:1 D# bar:2 E
method read§
method read(IO::CatHandle: Int(Cool) = 65536 --> Buf)
Reads up to $bytes
bytes from the handle and returns them in a Buf
. $bytes
defaults to an implementation-specific value (in Rakudo, the value of $*DEFAULT-READ-ELEMS
, which by default is set to 65536
). It is permitted to call this method on handles that are not in binary mode.
(my = 'foo'.IO).spurt: 'meow';(my = 'bar'.IO).spurt: Blob.new: 4, 5, 6;with IO::CatHandle.new: :bin, ,# Non-binary mode is OK too:with IO::CatHandle.new: ,
method readchars§
method readchars(IO::CatHandle: Int(Cool) = 65536 --> Str)
Returns a Str
of up to $chars
characters read from the handle. $chars
defaults to an implementation-specific value (in Rakudo, the value of $*DEFAULT-READ-ELEMS
, which by default is set to 65536
). It is NOT permitted to call this method on handles opened in binary mode and doing so will result in X::IO::BinaryMode
exception being thrown.
(my = 'foo'.IO).spurt: 'Raku loves to';(my = 'bar'.IO).spurt: ' meow';with IO::CatHandle.new: ,
method seek§
method seek(IO::CatHandle: |c)
Calls .seek
on the currently active source handle, forwarding it all the arguments, and returns the result. Returns Nil
if the source handle queue has been exhausted. NOTE: this method does NOT perform any source handle switching, so seeking past the end of the current source handle will NOT seek to the next source handle in the queue and seeking past the beginning of the current source handle is a fatal error. Also see .next-handle
, to learn the details on when source handles are switched.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';with IO::CatHandle.new: ,
method tell§
method tell(IO::CatHandle: --> Int)
Calls .tell
on the currently active source handle and returns the result. Returns Nil
if the source handle queue has been exhausted.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';with IO::CatHandle.new: ,
method slurp§
method slurp(IO::CatHandle:)
Reads all of the available input from all the source handles and returns it as a Buf
if the handle is in binary mode or as a Str
otherwise. Returns Nil
if the source handle queue has been exhausted.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';IO::CatHandle.new( , ).slurp.say; # OUTPUT: «foobar»IO::CatHandle.new(:bin, , ).slurp.say; # OUTPUT: «Buf[uint8]:0x<66 6f 6f 62 61 72>»IO::CatHandle.new .slurp.say; # OUTPUT: «Nil»
method split§
method split(IO::CatHandle: |args --> Seq)
Read the handle and processes its contents the same way Str.split
does, taking the same arguments. Implementations may slurp the contents of all the source handles in their entirety when this method is called.
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';IO::CatHandle.new(, ).split(/o+/).raku.say;# OUTPUT: «("f", "bar").Seq»
method Str§
method Str(IO::CatHandle: --> Str)
Calls .Str
on the currently active source handle and returns the result. If the source handle queue has been exhausted, returns an implementation-defined string ('<closed IO::CatHandle>'
in Rakudo).
method Supply§
method Supply(IO::CatHandle: : = 65536 --> Supply)
Returns a Supply
fed with either .read
, if the handle is in binary mode, or with .readchars
, if it isn't, with reads of :$size
bytes or characters. :$size
defaults to an implementation-specific value (in Rakudo, the value of $*DEFAULT-READ-ELEMS
, which by default is set to 65536
).
(my = 'foo'.IO).spurt: 'foo';(my = 'bar'.IO).spurt: 'bar';react whenever IO::CatHandle.new(, ).Supply: :2size# OUTPUT: «foobar»react whenever IO::CatHandle.new(:bin, , ).Supply: :2size# OUTPUT: «Buf[uint8]:0x<66 6f>Buf[uint8]:0x<6f 62>Buf[uint8]:0x<61 72>»
method t§
method t(IO::CatHandle: --> Bool)
Calls .t
, which tells if the handle is a TTY, on the currently active source handle and returns the result. If the source handle queue has been exhausted, returns False
.
(my = 'foo'.IO).spurt: 'foo';with IO::CatHandle.new: ,
method unlock§
method unlock(IO::CatHandle:)
Same as IO::Handle.unlock
. Returns Nil
if the source handle queue has been exhausted.
Unlocks only the currently active source handle. The .on-switch
Callable
can be used to conveniently lock/unlock the handles as they're being processed by the CatHandle.
method words§
method words(IO::CatHandle: = Inf, : --> Seq)
Same as IO::Handle.words
(including the caveat about more data read than needed to make some number of words). Note that a boundary between source handles is considered to be word boundary.
(my = 'foo'.IO).spurt: 'foo bar';(my = 'bar'.IO).spurt: 'meow';IO::CatHandle.new(, ).words.raku.say;# OUTPUT: «("foo", "bar", "meow").Seq»
Note: if :$close
is False
, fully-consumed handles are still going to be closed.