当输出打印到 ruby​​ 中的 stdout 时,如何使用回调

发布于 2024-12-11 21:30:33 字数 390 浏览 2 评论 0原文

我正在编写用于监视服务器状态的脚本。 我可以用 javascript 编写代码,但我必须用 ruby​​ 编写。

在javascript中,可以使用node.js来完成,如下所示。

var iostat = require('child_process').spawn("iostat", ["-w 1"]);
iostat.stdout.on('data', function (data) {
    console.log(data);
});

此代码每秒执行 iostat 命令并输出到控制台。 我怎样才能在红宝石中实现同样的事情? 换句话说,我想在用 ruby​​ 打印 stdout 时使用回调。

I am writing scripts for watching servers status.
I can write the code in javascript, but I have to write it in ruby.

In javascript,it can be done using node.js like this.

var iostat = require('child_process').spawn("iostat", ["-w 1"]);
iostat.stdout.on('data', function (data) {
    console.log(data);
});

This code executes iostat command and output to console every second.
How can I implement the same thing in ruby?
In other words, I want to use callback when stdout was printed in ruby.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小鸟爱天空丶 2024-12-18 21:30:33

可能有更好的方法来做到这一点,但你可以这样做:

module PutsWatcher
  def puts(string)
    super("***#{string}***")
  end
end

$stdout.extend PutsWatcher

puts "here"
# => "***here***"

如果你在 IRB 或 Pry 中执行此操作,会有点奇怪,因为它们会在你自己的基础上自行生成输出(即 nil 在你执行 puts 之后),但这是来自 pry 的复制/粘贴:

pry(main)> module PutsWatcher
pry(main)*   def puts(string)
pry(main)*     super("***#{string}***")
pry(main)*   end
pry(main)* end
=> nil
pry(main)> $stdout.extend PutsWatcher
***=> #<IO:<STDOUT>>
***
pry(main)> puts "yo"
***yo***
***=> nil
***
pry(main)> 

顺便说一句,我不建议你这样做......修补核心类通常是一个坏主意。我提到它纯粹是出于学术目的。

There are probably better ways to do this, but you can do things like this:

module PutsWatcher
  def puts(string)
    super("***#{string}***")
  end
end

$stdout.extend PutsWatcher

puts "here"
# => "***here***"

It's a little weird if you do this in IRB or Pry, because they produce output themselves, on top of your own (i.e. the nil after you do puts), but here's a copy/paste from pry:

pry(main)> module PutsWatcher
pry(main)*   def puts(string)
pry(main)*     super("***#{string}***")
pry(main)*   end
pry(main)* end
=> nil
pry(main)> $stdout.extend PutsWatcher
***=> #<IO:<STDOUT>>
***
pry(main)> puts "yo"
***yo***
***=> nil
***
pry(main)> 

By the way, I'm not advising you do this... patching core classes is generally a bad idea. I mention it purely for academic purposes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文