]>
git.saurik.com Git - apt.git/blob - apt-private/private-show.cc
2 #include <apt-pkg/error.h>
3 #include <apt-pkg/cachefile.h>
4 #include <apt-pkg/cachefilter.h>
5 #include <apt-pkg/cacheset.h>
6 #include <apt-pkg/init.h>
7 #include <apt-pkg/progress.h>
8 #include <apt-pkg/sourcelist.h>
9 #include <apt-pkg/cmndline.h>
10 #include <apt-pkg/strutl.h>
11 #include <apt-pkg/fileutl.h>
12 #include <apt-pkg/pkgrecords.h>
13 #include <apt-pkg/srcrecords.h>
14 #include <apt-pkg/version.h>
15 #include <apt-pkg/policy.h>
16 #include <apt-pkg/tagfile.h>
17 #include <apt-pkg/algorithms.h>
18 #include <apt-pkg/sptr.h>
19 #include <apt-pkg/pkgsystem.h>
20 #include <apt-pkg/indexfile.h>
21 #include <apt-pkg/metaindex.h>
25 #include "private-output.h"
26 #include "private-cacheset.h"
32 // DisplayRecord - Displays the complete record for the package /*{{{*/
33 // ---------------------------------------------------------------------
34 bool DisplayRecord(pkgCacheFile
&CacheFile
, pkgCache::VerIterator V
,
37 pkgCache
*Cache
= CacheFile
.GetPkgCache();
38 if (unlikely(Cache
== NULL
))
41 // Find an appropriate file
42 pkgCache::VerFileIterator Vf
= V
.FileList();
43 for (; Vf
.end() == false; ++Vf
)
44 if ((Vf
.File()->Flags
& pkgCache::Flag::NotSource
) == 0)
49 // Check and load the package list file
50 pkgCache::PkgFileIterator I
= Vf
.File();
51 if (I
.IsOk() == false)
52 return _error
->Error(_("Package file %s is out of sync."),I
.FileName());
56 if (PkgF
.Open(I
.FileName(), FileFd::ReadOnly
, FileFd::Extension
) == false)
59 pkgTagFile
TagF(&PkgF
);
61 TFRewriteData RW
[] = {
64 {"Description-md5",0},
68 if (TagF
.Jump(Tags
, V
.FileList()->Offset
) == false ||
69 TFRewrite(stdout
,Tags
,&Zero
,RW
) == false)
71 _error
->Error("Internal Error, Unable to parse a package record");
75 // write the description
76 pkgRecords
Recs(*Cache
);
77 // FIXME: show (optionally) all available translations(?)
78 pkgCache::DescIterator Desc
= V
.TranslatedDescription();
79 if (Desc
.end() == false)
81 pkgRecords::Parser
&P
= Recs
.Lookup(Desc
.FileList());
82 out
<< "Description: " << P
.LongDesc();
85 // write a final newline (after the description)
86 out
<< std::endl
<< std::endl
;
91 bool ShowPackage(CommandLine
&CmdL
) /*{{{*/
93 pkgCacheFile CacheFile
;
94 CacheSetHelperVirtuals
helper(true, GlobalError::NOTICE
);
95 APT::VersionList::Version
const select
= APT::VersionList::CANDIDATE
;
96 APT::VersionList
const verset
= APT::VersionList::FromCommandLine(CacheFile
, CmdL
.FileList
+ 1, select
, helper
);
97 for (APT::VersionList::const_iterator Ver
= verset
.begin(); Ver
!= verset
.end(); ++Ver
)
98 if (DisplayRecord(CacheFile
, Ver
, c1out
) == false)
101 for (APT::PackageSet::const_iterator Pkg
= helper
.virtualPkgs
.begin();
102 Pkg
!= helper
.virtualPkgs
.end(); ++Pkg
)
104 c1out
<< "Package: " << Pkg
.FullName(true) << std::endl
;
105 c1out
<< "State: " << _("not a real package (virtual)") << std::endl
;
106 // FIXME: show providers, see private-cacheset.h
107 // CacheSetHelperAPTGet::showVirtualPackageErrors()
110 if (verset
.empty() == true)
112 if (helper
.virtualPkgs
.empty() == true)
113 return _error
->Error(_("No packages found"));
115 _error
->Notice(_("No packages found"));