gpt4 book ai didi

perl - 将文件句柄与 IO::Select::can_read() 返回的 glob 进行比较

转载 作者:行者123 更新时间:2023-12-02 19:39:48 24 4
gpt4 key购买 nike

我正在尝试通过 perl 中的 IO::Select 管理三个文件句柄。我有 1 个输入句柄、1 个输入/输出句柄和 1 个输出句柄。在处理 Select 的 can_read() 和 can_write() 返回数组时,我在确定哪个文件句柄是哪个文件句柄时遇到了一些麻烦;

下面的例子

关于如何实际比较这两个文件句柄有什么建议吗?我尝试过标量,尝试过引用,没有引用等等。我想不出为什么这不起作用。

#!/usr/bin/perl
use strict;
use warnings;
use IO::Select;

open(INPUT, "/dev/fd/3") or die "Unable to open input! $!";
my $stdin_buf;

# Main loop
while (1)
{
foreach my $read_fh ($select->can_read(10)) # This DOES return INPUT as being readable
{
if ($read_fh == \*INPUT) # THIS fails.
{
read($read_fh, $stdin_buf, 512);
}
}
}

最佳答案

我成功了。这是使用引用和 eq 的组合(我在修复引用之前已经尝试过);

工作代码:

#!/usr/bin/perl
use strict;
use warnings;
use IO::Select;

##############################################
# Asterisk to stream pipe thingie-ma-jig-bob #
# Written by Sean Powell - 10-5-10 #
##############################################

my $extension = $ARGV[0];

if (!$extension || $extension !~ /^\d+$/)
{
print "USAGE: Please provide a decimal extension as the first parameter";
exit(1);
}



my $ffmpeg = "/usr/bin/ffmpeg -f s16le -ar 8000 -ac 1 -i - -ab 64k -f mp3 -";
my $ezstream = "/usr/local/bin/ezstream -c /etc/asterisk/ICES/" . $extension . ".xml";

my $stdin_buf;
my $ffmpeg_buf;
my $last_activity = 0;

open(INPUT, "/dev/fd/3") or die "Unable to open input! $!";
open(FFMPEG, "|$ffmpeg") or die "Unable to fork off ffmpeg! $!";
open(EZSTREAM, "|$ezstream") or die "Unable to fork off ezstream! $!";
open(DEBUG, ">>/root/debug.log") or die "Unable to open debug log! $!";

my ($input_fh, $ffmpeg_fh, $ezstream_fh) = (*INPUT, *FFMPEG, *EZSTREAM);

my $select = new IO::Select(*INPUT);
$select->add(*FFMPEG);
$select->add(*EZSTREAM);

# Main loop
while (1)
{
foreach my $read_fh ($select->can_read(10))
{
print DEBUG "Filehandle can read: $read_fh - $input_fh - $ffmpeg_fh - $ezstream_fh\n";
if ($read_fh eq $input_fh)
{
my $read = read($read_fh, $stdin_buf, 512);
print DEBUG "Read off $read bytes from INPUT\n";
$last_activity = time();
}
if ($read_fh eq $ffmpeg_fh)
{
my $read = read($read_fh, $ffmpeg_buf, 512);
print DEBUG "Read off $read bytes from FFMPEG\n";
$last_activity = time();
}
}

foreach my $write_fh ($select->can_write(10))
{
if ($write_fh eq $ffmpeg_fh && length($stdin_buf) > 0)
{
my $size = length($stdin_buf);
my $wrote = syswrite($write_fh, $stdin_buf, $size);

while ($wrote < $size)
{
$wrote += syswrite($write_fh, $stdin_buf, $size - $wrote, $wrote);
}
print DEBUG "Wrote $wrote bytes to FFMPEG\n";
$last_activity = time();
$stdin_buf = undef;
}

if ($write_fh eq $ezstream_fh && length($ffmpeg_buf) > 0)
{
my $size = length($ffmpeg_buf);
my $wrote = syswrite($write_fh, $ffmpeg_buf, $size);

while ($wrote < $size)
{
$wrote += syswrite($write_fh, $ffmpeg_buf, $size - $wrote, $wrote);
}
$ffmpeg_buf = undef;
print DEBUG "Wrote $wrote bytes to EZSTREAM\n";
$last_activity = time();
}
}
last if (time() - $last_activity > 30);

}
close(INPUT);
close(EZSTREAM);
close(FFMPEG);

关于perl - 将文件句柄与 IO::Select::can_read() 返回的 glob 进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3868068/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com