1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/* rinstallprogress.cc
*
* Copyright (c) 2000, 2001 Conectiva S/A
* 2002 Michael Vogt
*
* Author: Alfredo K. Kojima <kojima@conectiva.com.br>
* Michael Vogt <mvo@debian.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#include "config.h"
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <iostream>
#include <cstdio>
#include <apt-pkg/error.h>
#include <apt-pkg/install-progress.h>
#ifdef HAVE_RPM
#include <apt-pkg/configuration.h>
#endif
#include "rinstallprogress.h"
#include "i18n.h"
std::string RInstallProgress::finishMsg = _("\nSuccessfully applied all changes. You can close the window now.");
std::string RInstallProgress::errorMsg = _("\nNot all changes and updates succeeded. For further details of the failure, please expand the 'Details' panel below.");
std::string RInstallProgress::incompleteMsg =
_("\nSuccessfully installed all packages of the current medium. "
"To continue the installation with the next medium close "
"this window.");
const char* RInstallProgress::getResultStr(pkgPackageManager::OrderResult res)
{
int size;
switch( res ) {
case 0: // completed
return finishMsg.c_str();
break;
case 1: // failed
return errorMsg.c_str();
break;
case 2: // incomplete
return incompleteMsg.c_str();
break;
}
return "Unknown install result.";
}
pkgPackageManager::OrderResult RInstallProgress::start(pkgPackageManager *pm,
int numPackages,
int numPackagesTotal)
{
void *dummy;
pkgPackageManager::OrderResult res;
int ret;
pid_t _child_id;
//cout << "RInstallProgress::start()" << endl;
#ifdef HAVE_RPM
_config->Set("RPM::Interactive", "false");
res = pm->DoInstallPreFork();
if (res == pkgPackageManager::Failed)
return res;
/*
* This will make a pipe from where we can read child's output
*/
int fd[2];
pipe(fd);
_child_id = fork();
if (_child_id == 0) {
// make the write end of the pipe to the child become the new stdout
// and stderr (for the child)
dup2(fd[1], 1);
dup2(1, 2);
close(fd[0]);
close(fd[1]);
APT::Progress::PackageManagerProgressFd progress(-1);
res = pm->DoInstallPostFork(&progress);
// dump errors into cerr (pass it to the parent process)
_error->DumpErrors();
_exit(res);
}
// this is where we read stuff from the child
_childin = fd[0];
close(fd[1]);
// make it nonblocking
fcntl(_childin, F_SETFL, O_NONBLOCK);
_donePackages = 0;
_numPackages = numPackages;
_numPackagesTotal = numPackagesTotal;
#else
res = pm->DoInstallPreFork();
if (res == pkgPackageManager::Failed)
return res;
_child_id = fork();
if (_child_id == 0) {
APT::Progress::PackageManagerProgressFd progress(-1);
res = pm->DoInstallPostFork(&progress);
_exit(res);
}
#endif
startUpdate();
while (waitpid(_child_id, &ret, WNOHANG) == 0)
updateInterface();
res = (pkgPackageManager::OrderResult) WEXITSTATUS(ret);
finishUpdate();
#ifdef HAVE_RPM
close(_childin);
#endif
return res;
}
// vim:sts=4:sw=4
|