|
@@ -333,6 +333,12 @@ void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd, char *line)
|
|
|
'status: /var/cache/apt/archives/krecipes_0.8.1-0ubuntu1_i386.deb : error : trying to overwrite `/usr/share/doc/kde/HTML/en/krecipes/krectip.png', which is also in package krecipes-data
|
|
'status: /var/cache/apt/archives/krecipes_0.8.1-0ubuntu1_i386.deb : error : trying to overwrite `/usr/share/doc/kde/HTML/en/krecipes/krectip.png', which is also in package krecipes-data
|
|
|
and conffile-prompt like this
|
|
and conffile-prompt like this
|
|
|
'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
|
|
'status: conffile-prompt: conffile : 'current-conffile' 'new-conffile' useredited distedited
|
|
|
|
|
+
|
|
|
|
|
+ Newer versions of dpkg sent also:
|
|
|
|
|
+ 'processing: install: pkg'
|
|
|
|
|
+ 'processing: configure: pkg'
|
|
|
|
|
+ 'processing: remove: pkg'
|
|
|
|
|
+ 'processing: trigproc: trigger'
|
|
|
|
|
|
|
|
*/
|
|
*/
|
|
|
char* list[5];
|
|
char* list[5];
|
|
@@ -351,6 +357,34 @@ void pkgDPkgPM::ProcessDpkgStatusLine(int OutStatusFd, char *line)
|
|
|
char *pkg = list[1];
|
|
char *pkg = list[1];
|
|
|
char *action = _strstrip(list[2]);
|
|
char *action = _strstrip(list[2]);
|
|
|
|
|
|
|
|
|
|
+ // 'processing' from dpkg looks like
|
|
|
|
|
+ // 'processing: action: pkg'
|
|
|
|
|
+ if(strncmp(list[0], "processing", strlen("processing")) == 0)
|
|
|
|
|
+ {
|
|
|
|
|
+ char s[200];
|
|
|
|
|
+ map<string,string>::iterator iter;
|
|
|
|
|
+ char *pkg_or_trigger = _strstrip(list[2]);
|
|
|
|
|
+ action =_strstrip( list[1]);
|
|
|
|
|
+ iter = PackageProcessingOps.find(action);
|
|
|
|
|
+ if(iter == PackageProcessingOps.end())
|
|
|
|
|
+ {
|
|
|
|
|
+ if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
|
|
|
|
|
+ std::clog << "ignoring unknwon action: " << action << std::endl;
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ snprintf(s, sizeof(s), _(iter->second.c_str()), pkg_or_trigger);
|
|
|
|
|
+
|
|
|
|
|
+ status << "pmstatus:" << pkg_or_trigger
|
|
|
|
|
+ << ":" << (PackagesDone/float(PackagesTotal)*100.0)
|
|
|
|
|
+ << ":" << s
|
|
|
|
|
+ << endl;
|
|
|
|
|
+ if(OutStatusFd > 0)
|
|
|
|
|
+ write(OutStatusFd, status.str().c_str(), status.str().size());
|
|
|
|
|
+ if (_config->FindB("Debug::pkgDPkgProgressReporting",false) == true)
|
|
|
|
|
+ std::clog << "send: '" << status.str() << "'" << endl;
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
if(strncmp(action,"error",strlen("error")) == 0)
|
|
if(strncmp(action,"error",strlen("error")) == 0)
|
|
|
{
|
|
{
|
|
|
status << "pmerror:" << list[1]
|
|
status << "pmerror:" << list[1]
|
|
@@ -526,7 +560,7 @@ bool pkgDPkgPM::Go(int OutStatusFd)
|
|
|
|
|
|
|
|
if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
|
|
if (RunScriptsWithPkgs("DPkg::Pre-Install-Pkgs") == false)
|
|
|
return false;
|
|
return false;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
// map the dpkg states to the operations that are performed
|
|
// map the dpkg states to the operations that are performed
|
|
|
// (this is sorted in the same way as Item::Ops)
|
|
// (this is sorted in the same way as Item::Ops)
|
|
|
static const struct DpkgState DpkgStatesOpMap[][7] = {
|
|
static const struct DpkgState DpkgStatesOpMap[][7] = {
|
|
@@ -566,6 +600,12 @@ bool pkgDPkgPM::Go(int OutStatusFd)
|
|
|
},
|
|
},
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
|
|
+ // populate the "processing" map
|
|
|
|
|
+ PackageProcessingOps.insert( make_pair("install",N_("Installing %s")) );
|
|
|
|
|
+ PackageProcessingOps.insert( make_pair("configure",N_("Configuring %s")) );
|
|
|
|
|
+ PackageProcessingOps.insert( make_pair("remove",N_("Removing %s")) );
|
|
|
|
|
+ PackageProcessingOps.insert( make_pair("trigproc",N_("Triggering %s")) );
|
|
|
|
|
+
|
|
|
// init the PackageOps map, go over the list of packages that
|
|
// init the PackageOps map, go over the list of packages that
|
|
|
// that will be [installed|configured|removed|purged] and add
|
|
// that will be [installed|configured|removed|purged] and add
|
|
|
// them to the PackageOps map (the dpkg states it goes through)
|
|
// them to the PackageOps map (the dpkg states it goes through)
|