C ++ apt-get работает над stdout of popen - PullRequest
1 голос
/ 25 апреля 2011

Это может звучать как глупый вопрос, я новичок в C ++.

В Debian я пытаюсь вызвать apt-get install с помощью popen.Мне нужно проанализировать вывод этой программы.К сожалению, я не могу прочитать полный вывод apt-get.

В какой-то момент apt-get может запросить ввод данных пользователем (спрашивая, должны ли быть установлены зависимости).Моя программа не может вывести эту строку.

Поскольку последняя строка (см. Примеры ниже, строка, пропущенная в моей программе: «Хотите продолжить [Y / n]?») Не выводится?

Когда я запускаюКоманда apt-get вручную, вывод консоли выглядит следующим образом:

$ sudo apt-get install python-wxtools
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  python-wxgtk2.8 python-wxversion
Suggested packages:
  wx2.8-doc wx2.8-examples ruby wish tk8.5 tcsh csh octave3.0 mksh pdksh
  python-xml editra
The following NEW packages will be installed:
  python-wxgtk2.8 python-wxtools python-wxversion
0 upgraded, 3 newly installed, 0 to remove and 8 not upgraded.
Need to get 5,942kB of archives.
After this operation, 25.0MB of additional disk space will be used.
Do you want to continue [Y/n]? 

ПРИМЕЧАНИЕ: без новой строки в конце последней строки.

когда я использую свою собственную программу, последняястрока отсутствует (вывод)

$ sudo ./test/popen 
g++ -Wall -o test/popen test/popen.cpp
test/popen.cpp: In function ‘int main(int, char**, char**)’:
test/popen.cpp:22: warning: comparison between signed and unsigned integer expressions
apt-get install python-wxtools
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  python-wxgtk2.8 python-wxversion
Suggested packages:
  wx2.8-doc wx2.8-examples ruby wish tk8.5 tcsh csh octave3.0 mksh pdksh
  python-xml editra
The following NEW packages will be installed:
  python-wxgtk2.8 python-wxtools python-wxversion
0 upgraded, 3 newly installed, 0 to remove and 8 not upgraded.
Need to get 5,942kB of archives.
After this operation, 25.0MB of additional disk space will be used.

ПРИМЕЧАНИЕ: новая строка в конце вывода

Моя эталонная реализация popen выглядит следующим образом в c ++:

// $Id: popen.cpp 126 2011-04-25 18:48:02Z wus $

#include <iostream>
#include <stdio.h>

using namespace std;

/**
 * run debians apt-get and check output
 */
int main(int argc, char **argv, char **envp) { 

    FILE *fp;
    char buffer[9];
    // must use a package which asks for dependencies
    char command[255] = "apt-get install python-wxtools";
    cout << command << endl;

    // Execute command, open /dev/stdout for reading
    fp = popen(command, "r");

    // read output character by character
    while (fread(buffer, 1, 1, fp) != EOF) {
        cout << buffer;
    }

    // close
    pclose(fp);
}

Iпопробуйте это сделать в системе Linux

$ uname -a
Linux shell1 2.6.35-28-server #50-Ubuntu SMP Fri Mar 18 18:59:25 UTC 2011 x86_64 GNU/Linux

$ gcc --version
gcc (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Ответы [ 2 ]

0 голосов
/ 30 апреля 2011

Проблема была не во входной буферизации, а в выходной буферизации cout. Ручные промывки решили проблему:

while (fread(buffer, 1, 1, fp) != EOF) {
    cout << buffer << flush;
}
0 голосов
/ 25 апреля 2011

Попробуйте добавить параметр -y к apt-get. Это заставит его предположить, что пользователь говорит «да» всему, что должно заставить его «просто работать». Я думаю, что сейчас это не удается, потому что он хочет подсказать пользователю, но понимает, что нет ввода с клавиатуры (возможно, путем вызова isatty(3)), поэтому он сдается.

...