]>
Commit | Line | Data |
---|---|---|
b9179170 MV |
1 | // Include Files /*{{{*/ |
2 | #include <config.h> | |
3 | ||
b9179170 MV |
4 | #include <apt-pkg/cachefile.h> |
5 | #include <apt-pkg/cachefilter.h> | |
6 | #include <apt-pkg/cacheset.h> | |
b9179170 | 7 | #include <apt-pkg/cmndline.h> |
b9179170 | 8 | #include <apt-pkg/pkgrecords.h> |
453b82a3 DK |
9 | #include <apt-pkg/progress.h> |
10 | #include <apt-pkg/strutl.h> | |
11 | #include <apt-pkg/configuration.h> | |
12 | #include <apt-pkg/macros.h> | |
13 | #include <apt-pkg/pkgcache.h> | |
14 | #include <apt-pkg/cacheiterators.h> | |
15 | ||
16 | #include <apt-private/private-cacheset.h> | |
17 | #include <apt-private/private-list.h> | |
18 | #include <apt-private/private-output.h> | |
b9179170 | 19 | |
453b82a3 | 20 | #include <iostream> |
b9179170 | 21 | #include <sstream> |
453b82a3 DK |
22 | #include <map> |
23 | #include <string> | |
b9179170 | 24 | #include <utility> |
453b82a3 | 25 | #include <vector> |
b9179170 MV |
26 | |
27 | #include <apti18n.h> | |
28 | /*}}}*/ | |
29 | ||
ee0167c4 | 30 | struct PackageSortAlphabetic /*{{{*/ |
b9179170 MV |
31 | { |
32 | bool operator () (const pkgCache::PkgIterator &p_lhs, | |
33 | const pkgCache::PkgIterator &p_rhs) | |
34 | { | |
35 | const std::string &l_name = p_lhs.FullName(true); | |
36 | const std::string &r_name = p_rhs.FullName(true); | |
37 | return (l_name < r_name); | |
38 | } | |
39 | }; | |
ee0167c4 DK |
40 | /*}}}*/ |
41 | class PackageNameMatcher : public Matcher /*{{{*/ | |
42 | { | |
dd4d9729 MV |
43 | #ifdef PACKAGE_MATCHER_ABI_COMPAT |
44 | #define PackageMatcher PackageNameMatchesFnmatch | |
45 | #endif | |
b9179170 MV |
46 | public: |
47 | PackageNameMatcher(const char **patterns) | |
48 | { | |
9ce3cfc9 | 49 | for(int i=0; patterns[i] != NULL; ++i) |
b9179170 MV |
50 | { |
51 | std::string pattern = patterns[i]; | |
dd4d9729 MV |
52 | #ifdef PACKAGE_MATCHER_ABI_COMPAT |
53 | APT::CacheFilter::PackageNameMatchesFnmatch *cachefilter = NULL; | |
54 | cachefilter = new APT::CacheFilter::PackageNameMatchesFnmatch(pattern); | |
55 | #else | |
b9179170 | 56 | APT::CacheFilter::PackageMatcher *cachefilter = NULL; |
c1a61d1c | 57 | if(_config->FindB("APT::Cmd::Use-Regexp", false) == true) |
b9179170 MV |
58 | cachefilter = new APT::CacheFilter::PackageNameMatchesRegEx(pattern); |
59 | else | |
60 | cachefilter = new APT::CacheFilter::PackageNameMatchesFnmatch(pattern); | |
dd4d9729 | 61 | #endif |
b9179170 MV |
62 | filters.push_back(cachefilter); |
63 | } | |
64 | } | |
65 | virtual ~PackageNameMatcher() | |
66 | { | |
9ce3cfc9 | 67 | for(J=filters.begin(); J != filters.end(); ++J) |
b9179170 MV |
68 | delete *J; |
69 | } | |
70 | virtual bool operator () (const pkgCache::PkgIterator &P) | |
71 | { | |
9ce3cfc9 | 72 | for(J=filters.begin(); J != filters.end(); ++J) |
b9179170 MV |
73 | { |
74 | APT::CacheFilter::PackageMatcher *cachefilter = *J; | |
75 | if((*cachefilter)(P)) | |
76 | return true; | |
77 | } | |
78 | return false; | |
79 | } | |
80 | ||
81 | private: | |
82 | std::vector<APT::CacheFilter::PackageMatcher*> filters; | |
83 | std::vector<APT::CacheFilter::PackageMatcher*>::const_iterator J; | |
dd4d9729 | 84 | #undef PackageMatcher |
b9179170 | 85 | }; |
ee0167c4 | 86 | /*}}}*/ |
c3ccac92 | 87 | static void ListAllVersions(pkgCacheFile &CacheFile, pkgRecords &records,/*{{{*/ |
b9179170 | 88 | pkgCache::PkgIterator P, |
14109555 MV |
89 | std::ostream &outs, |
90 | bool include_summary=true) | |
b9179170 MV |
91 | { |
92 | for (pkgCache::VerIterator Ver = P.VersionList(); | |
796673c3 | 93 | Ver.end() == false; ++Ver) |
14109555 MV |
94 | { |
95 | ListSingleVersion(CacheFile, records, Ver, outs, include_summary); | |
96 | outs << "\n"; | |
97 | } | |
b9179170 | 98 | } |
ee0167c4 | 99 | /*}}}*/ |
b9179170 MV |
100 | // list - list package based on criteria /*{{{*/ |
101 | // --------------------------------------------------------------------- | |
ec4371ac | 102 | bool DoList(CommandLine &Cmd) |
b9179170 MV |
103 | { |
104 | pkgCacheFile CacheFile; | |
105 | pkgCache *Cache = CacheFile.GetPkgCache(); | |
b9179170 MV |
106 | if (unlikely(Cache == NULL)) |
107 | return false; | |
ec4371ac | 108 | pkgRecords records(CacheFile); |
b9179170 MV |
109 | |
110 | const char **patterns; | |
111 | const char *all_pattern[] = { "*", NULL}; | |
112 | ||
113 | if (strv_length(Cmd.FileList + 1) == 0) | |
114 | { | |
115 | patterns = all_pattern; | |
116 | } else { | |
117 | patterns = Cmd.FileList + 1; | |
118 | } | |
119 | ||
120 | std::map<std::string, std::string> output_map; | |
121 | std::map<std::string, std::string>::const_iterator K; | |
122 | ||
e1dc051a MV |
123 | bool includeSummary = _config->FindB("APT::Cmd::List-Include-Summary"); |
124 | ||
b9179170 MV |
125 | PackageNameMatcher matcher(patterns); |
126 | LocalitySortedVersionSet bag; | |
14109555 | 127 | OpTextProgress progress(*_config); |
b9179170 MV |
128 | progress.OverallProgress(0, |
129 | Cache->Head().PackageCount, | |
130 | Cache->Head().PackageCount, | |
131 | _("Listing")); | |
132 | GetLocalitySortedVersionSet(CacheFile, bag, matcher, progress); | |
d6570f85 | 133 | bool ShowAllVersions = _config->FindB("APT::Cmd::All-Versions", false); |
9ce3cfc9 | 134 | for (LocalitySortedVersionSet::iterator V = bag.begin(); V != bag.end(); ++V) |
b9179170 MV |
135 | { |
136 | std::stringstream outs; | |
d6570f85 | 137 | if(ShowAllVersions == true) |
b9179170 | 138 | { |
14109555 | 139 | ListAllVersions(CacheFile, records, V.ParentPkg(), outs, includeSummary); |
b9179170 MV |
140 | output_map.insert(std::make_pair<std::string, std::string>( |
141 | V.ParentPkg().Name(), outs.str())); | |
142 | } else { | |
e1dc051a | 143 | ListSingleVersion(CacheFile, records, V, outs, includeSummary); |
b9179170 MV |
144 | output_map.insert(std::make_pair<std::string, std::string>( |
145 | V.ParentPkg().Name(), outs.str())); | |
146 | } | |
147 | } | |
148 | ||
149 | // FIXME: SORT! and make sorting flexible (alphabetic, by pkg status) | |
150 | // output the sorted map | |
9ce3cfc9 | 151 | for (K = output_map.begin(); K != output_map.end(); ++K) |
b9179170 MV |
152 | std::cout << (*K).second << std::endl; |
153 | ||
154 | ||
d6570f85 MV |
155 | // be nice and tell the user if there is more to see |
156 | if (bag.size() == 1 && ShowAllVersions == false) | |
157 | { | |
158 | // start with -1 as we already displayed one version | |
159 | int versions = -1; | |
160 | pkgCache::VerIterator Ver = *bag.begin(); | |
161 | for ( ; Ver.end() == false; Ver++) | |
162 | versions++; | |
163 | if (versions > 0) | |
164 | _error->Notice(P_("There is %i additional version. Please use the '-a' switch to see it", "There are %i additional versions. Please use the '-a' switch to see them.", versions), versions); | |
165 | } | |
166 | ||
b9179170 MV |
167 | return true; |
168 | } | |
169 |