python - 从 Python 运行 Perl 脚本并将输出写入文件时,为什么文件是空的?

标签 python linux perl

我有以下 Perl 脚本,它采用以太网接口(interface)名称和传输速率作为参数:

#!/usr/bin/perl -w

$prevRXpacks = 0;
$prevTXpacks = 0;
$prevRXbytes = 0;
$prevTXbytes = 0;
$recentRXpacks = 0;
$recentTXpacks = 0;
$recentRXbytes = 0;
$recentTXbytes = 0;
$time_wait_default = 2;
$time_run_default = 0;
$prev = 0;
$overflow = 4 * 1024 * 1024 * 1024;
$k = 1000;
$m = $k * $k;
$format = "";
$format_value = 1;
$hdr_format = "Bytes/s";

if ( defined ($ARGV[0]) && ($ARGV[0] eq "--help") ) {
    print "Usage: $0 <device> [-r runtime] [-d delaytime]\n";
    print " -r     time to run traffic monitor in seconds (default = 0 <- forever)\n";
    print " -d     delay between two records in seconds (default = $time_wait_default)\n";
    print " -k, -K    print transfer rate in kbits/s or KBytes/s\n";
    print " -m, -M    print transfer rate in mbits/s or MBytes/s\n";
    die "\n";
}

open (OUT, "/dev/null");
select (OUT);
if ( !defined($ARGV[0]) || !`/sbin/ifconfig $ARGV[0]` ) {
    close (OUT);
    select (STDOUT);
    die "Usage $0 <device> [-r runtime] [-d delaytime] [-kmKM].\nTry --help for more.\n";
}
close (OUT);
select (STDOUT);

$time_wait = $time_wait_default;
$time_run = $time_run_default;

$i = 1;

while ( defined ($ARGV[$i]) ) {
    if ($ARGV[$i] eq "-d") {
        $time_wait = $ARGV[++$i] || $time_wait_default;
    }
    if ($ARGV[$i] eq "-r") {
        $time_run = $ARGV[++$i] || $time_run_default;
    }
    if ($ARGV[$i] eq "-K") {
        $format = $hdr_format = "KBytes/s";
        $format_value = $k;
    }
    if ($ARGV[$i] eq "-k") {
        $format = $hdr_format = "Kbits/s";
        $format_value = $k/8;
    }
    if ($ARGV[$i] eq "-M")  {
        $format = $hdr_format = "MBytes/s";
        $format_value = $m;
    }
    if ($ARGV[$i] eq "-m") {
        $format = $hdr_format = "Mbits/s";
        $format_value = $m/8;
    }

    $i++;
}

print "Traffic monitoring...\n";

# main loop
$time_loop = $time_run + time();

while ( time() < $time_loop || !$time_run ) {
    $recent = time();
    foreach $_ (`/sbin/ifconfig $ARGV[0]`) {
        if (/RX.*packets/) {
            ($blabla1, $blabla2, $blabla3) = split(/\s+/);
            ($blabla1, $recentRXpacks, $blabla2) = split(/:/, $blabla3);
        }
        if (/TX.*packets/) {
            ($blabla1, $blabla2, $blabla3) = split(/\s+/);
            ($blabla1, $recentTXpacks, $blabla2) = split(/:/, $blabla3);
        }
        if (/RX.*bytes/) {
            ($blabla1, $blabla2, $blabla3) = split(/:/);
            ($recentRXbytes) = split(/ /, $blabla2);
            ($recentTXbytes) = split(/ /, $blabla3);
        }
    }

    if ( ($recent > $prev) && $prev) {
        $interval = $recent - $prev;
#       $interval = $time_wait;

        $RXpacks = round (rate ($prevRXpacks, $recentRXpacks, $interval));
        $TXpacks = round (rate ($prevTXpacks, $recentTXpacks, $interval));
        $RXbytes = round (rate ($prevRXbytes, $recentRXbytes, $interval)/$format_value);
        $TXbytes = round (rate ($prevTXbytes, $recentTXbytes, $interval)/$format_value);

        write;
    }

    $prev = $recent;
    $prevRXpacks = $recentRXpacks;
    $prevTXpacks = $recentTXpacks;
    $prevRXbytes = $recentRXbytes;
    $prevTXbytes = $recentTXbytes;

    $time_delay = $time_wait + time();
    while (time() < $time_delay) {}
}

format STDOUT_TOP =
RX [packets/s]    TX [packets/s]    RX [@<<<<<<<]        TX [@<<<<<<<]
                   $hdr_format,           $hdr_format
.

format STDOUT =
@<<<<<<<<<<<<<<    @<<<<<<<<<<<<<<    @<<<<<<<<<<<<<<<<<<<<<<    @<<<<<<<<<<<<<<<<<<<<<<
$RXpacks,    $TXpacks,    $RXbytes." ".$format,    $TXbytes." ".$format
.

sub rate {
    my ($prev, $recent);
    ($prev, $recent, $interval) = @_;
    if (($recent = $recent - $prev) <0) {
        $recent += $overflow;
    }
    return $recent/$interval;
}

sub round {
    my ($mod, $result);
    $result = int ($_[0]);
    $mod = ($_[0] - $result) ;
    if ( $mod >= 0.5) {
        $result++;
    }
    return $result;
}

我尝试从 Python 运行上述脚本,并使用以下代码将输出写入文件:

#!/usr/bin/python

import sys
import subprocess
import datetime
import os
import time

command = ["perl", "/root/Desktop/myethtraffic.pl", "eth0", "M"]

dir_name = "/root/Desktop/"

logfile = open("/root/Desktop/aa1a.txt", 'w')

proc = subprocess.Popen(command)
for line in proc.stderr:
        logfile.write(line)

文件已创建,但为空。我该如何解决这个问题?

最佳答案

您可以将文件描述符传递给Popen,程序将直接写入文件,而无需读取管道。我有点困惑,因为您试图读取 stderr 而不是 stdout,因此编写了一个示例,将两个管道写入一个文件。

#!/usr/bin/python

import sys
import subprocess
import datetime
import os
import time

command = ["perl","/root/Desktop/myethtraffic.pl", "eth0", "M"]

dir_name = "/root/Desktop/"

logfile = open("/root/Desktop/aa1a.txt", 'w')

proc=subprocess.Popen(command, 
    stdout=open("/root/Desktop/aa1a.txt", 'w'), 
    stderr=subprocess.STDOUT)
proc.wait()

关于python - 从 Python 运行 Perl 脚本并将输出写入文件时,为什么文件是空的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29127196/

相关文章:

regex - Perl 在另一个字符串中间添加字符串

perl - 如何在 Perl 脚本中包含另一个文件中的函数?

python - 编写面向对象的摩尔斯电码翻译器

php - 在 Cygwin 上安装 PHP 就像在真正的 Linux 服务器上一样吗?

linux - 单声道 DllNotFound 错误

linux - 在没有符号的情况下调试时如何跳过(不执行!)GDB 中的调用?

MySQL "command out of sync"

python - 根据 pandas 中每个排序组的第一行创建一列

python - random.shuffle 在用列表乘法制作的列表列表中表现得很奇怪

python - 让所有用户都可以使用本地安装的 anaconda,而无需重新安装所有用户