当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby PTY模块用法及代码示例


本文简要介绍ruby语言中 PTY模块 的用法。

创建和管理伪终端 (PTY)。另见en.wikipedia.org/wiki/Pseudo_terminal

PTY 允许您使用 ::open ::spawn 分配具有特定命令的新终端。

示例

在此示例中,我们将更改 factor 命令中的缓冲类型,假设 factor 使用 stdio 进行 stdout 缓冲。

如果使用 IO.pipe 而不是 PTY.open ,则此代码将死锁,因为因子的标准输出已完全缓冲。

# start by requiring the standard library PTY
require 'pty'

master, slave = PTY.open
read, write = IO.pipe
pid = spawn("factor", :in=>read, :out=>slave)
read.close     # we dont need the read
slave.close    # or the slave

# pipe "42" to the factor command
write.puts "42"
# output the response from factor
p master.gets #=> "42: 2 3 7\n"

# pipe "144" to factor and print out the response
write.puts "144"
p master.gets #=> "144: 2 2 2 2 3 3\n"
write.close # close the pipe

# The result of read operation when pty slave is closed is platform
# dependent.
ret = begin
        master.gets     # FreeBSD returns nil.
      rescue Errno::EIO # GNU/Linux raises EIO.
        nil
      end
p ret #=> nil

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 PTY模块。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。