]>
git.saurik.com Git - apt.git/blob - apt-private/private-update.cc
1 // Include files /*{{{*/
4 #include <apt-pkg/acquire-item.h>
5 #include <apt-pkg/cachefile.h>
6 #include <apt-pkg/cmndline.h>
7 #include <apt-pkg/error.h>
8 #include <apt-pkg/fileutl.h>
9 #include <apt-pkg/sourcelist.h>
10 #include <apt-pkg/update.h>
11 #include <apt-pkg/acquire.h>
12 #include <apt-pkg/configuration.h>
14 #include <apt-private/acqprogress.h>
15 #include <apt-private/private-cachefile.h>
16 #include <apt-private/private-output.h>
17 #include <apt-private/private-update.h>
25 // DoUpdate - Update the package lists /*{{{*/
26 // ---------------------------------------------------------------------
28 bool DoUpdate(CommandLine
&CmdL
)
30 if (CmdL
.FileSize() != 1)
31 return _error
->Error(_("The update command takes no arguments"));
35 // Get the source list
36 if (Cache
.BuildSourceList() == false)
38 pkgSourceList
*List
= Cache
.GetSourceList();
40 // Create the progress
41 AcqTextStatus
Stat(ScreenWidth
,_config
->FindI("quiet",0));
43 // Just print out the uris an exit if the --print-uris flag was used
44 if (_config
->FindB("APT::Get::Print-URIs") == true)
46 // force a hashsum for compatibility reasons
47 _config
->CndSet("Acquire::ForceHash", "md5sum");
51 if (Fetcher
.Setup(&Stat
) == false)
54 // Populate it with the source selection and get all Indexes
56 if (List
->GetIndexes(&Fetcher
,true) == false)
59 std::string compExt
= APT::Configuration::getCompressionTypes()[0];
60 pkgAcquire::UriIterator I
= Fetcher
.UriBegin();
61 for (; I
!= Fetcher
.UriEnd(); ++I
)
63 std::string FileName
= flNotDir(I
->Owner
->DestFile
);
64 if(compExt
.empty() == false &&
65 APT::String::Endswith(FileName
, compExt
))
66 FileName
= FileName
.substr(0, FileName
.size() - compExt
.size() - 1);
67 c1out
<< '\'' << I
->URI
<< "' " << FileName
<< ' ' <<
68 I
->Owner
->FileSize
<< ' ' << I
->Owner
->HashSum() << std::endl
;
74 if (_config
->FindB("APT::Get::Download",true) == true)
75 ListUpdate(Stat
, *List
);
78 if (_config
->FindB("pkgCacheFile::Generate", true) == true)
80 pkgCacheFile::RemoveCaches();
81 if (Cache
.BuildCaches() == false)
85 // show basic stats (if the user whishes)
86 if (_config
->FindB("APT::Cmd::Show-Update-Stats", false) == true)
90 for (pkgCache::PkgIterator I
= Cache
->PkgBegin(); I
.end() != true; ++I
)
92 pkgDepCache::StateCache
&state
= Cache
[I
];
93 if (I
->CurrentVer
!= 0 && state
.Upgradable() && state
.CandidateVer
!= NULL
)
97 "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n",
98 "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n",
101 c1out
<< _("All packages are up to date.") << std::endl
;
103 ioprintf(c1out
, msg
, upgradable
);