2001-05-17 06:02:47 -04:00
|
|
|
#
|
|
|
|
# shell/filter.rb -
|
2007-03-22 11:25:58 -04:00
|
|
|
# $Release Version: 0.7 $
|
2001-05-17 06:02:47 -04:00
|
|
|
# $Revision$
|
2007-03-22 11:25:58 -04:00
|
|
|
# by Keiju ISHITSUKA(keiju@ruby-lang.org)
|
2001-05-17 06:02:47 -04:00
|
|
|
#
|
|
|
|
# --
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
class Shell
|
|
|
|
#
|
|
|
|
# Filter
|
|
|
|
# A method to require
|
|
|
|
# each()
|
|
|
|
#
|
|
|
|
class Filter
|
|
|
|
include Enumerable
|
|
|
|
|
|
|
|
def initialize(sh)
|
|
|
|
@shell = sh # parent shell
|
|
|
|
@input = nil # input filter
|
|
|
|
end
|
|
|
|
|
|
|
|
attr_reader :input
|
|
|
|
|
|
|
|
def input=(filter)
|
|
|
|
@input = filter
|
|
|
|
end
|
|
|
|
|
|
|
|
def each(rs = nil)
|
|
|
|
rs = @shell.record_separator unless rs
|
|
|
|
if @input
|
|
|
|
@input.each(rs){|l| yield l}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def < (src)
|
|
|
|
case src
|
|
|
|
when String
|
|
|
|
cat = Cat.new(@shell, src)
|
|
|
|
cat | self
|
|
|
|
when IO
|
|
|
|
self.input = src
|
|
|
|
self
|
|
|
|
else
|
2004-03-21 07:21:11 -05:00
|
|
|
Shell.Fail Error::CantApplyMethod, "<", to.class
|
2001-05-17 06:02:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def > (to)
|
|
|
|
case to
|
|
|
|
when String
|
|
|
|
dst = @shell.open(to, "w")
|
|
|
|
begin
|
|
|
|
each(){|l| dst << l}
|
|
|
|
ensure
|
|
|
|
dst.close
|
|
|
|
end
|
|
|
|
when IO
|
|
|
|
each(){|l| to << l}
|
|
|
|
else
|
2004-03-21 07:21:11 -05:00
|
|
|
Shell.Fail Error::CantApplyMethod, ">", to.class
|
2001-05-17 06:02:47 -04:00
|
|
|
end
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def >> (to)
|
|
|
|
begin
|
|
|
|
Shell.cd(@shell.pwd).append(to, self)
|
2003-02-07 14:00:21 -05:00
|
|
|
rescue CantApplyMethod
|
2004-03-21 07:21:11 -05:00
|
|
|
Shell.Fail Error::CantApplyMethod, ">>", to.class
|
2001-05-17 06:02:47 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def | (filter)
|
|
|
|
filter.input = self
|
|
|
|
if active?
|
|
|
|
@shell.process_controller.start_job filter
|
|
|
|
end
|
|
|
|
filter
|
|
|
|
end
|
|
|
|
|
|
|
|
def + (filter)
|
|
|
|
Join.new(@shell, self, filter)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_a
|
|
|
|
ary = []
|
|
|
|
each(){|l| ary.push l}
|
|
|
|
ary
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
str = ""
|
|
|
|
each(){|l| str.concat l}
|
|
|
|
str
|
|
|
|
end
|
|
|
|
|
|
|
|
def inspect
|
|
|
|
if @shell.debug.kind_of?(Integer) && @shell.debug > 2
|
|
|
|
super
|
|
|
|
else
|
|
|
|
to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|