]>
git.saurik.com Git - apt.git/blob - apt-pkg/cachefilter.cc
1 // -*- mode: cpp; mode: fold -*-
3 /** \file cachefilter.h
4 Collection of functor classes */
6 // Include Files /*{{{*/
9 #include <apt-pkg/cachefilter.h>
10 #include <apt-pkg/error.h>
11 #include <apt-pkg/pkgcache.h>
12 #include <apt-pkg/strutl.h>
22 namespace CacheFilter
{
23 PackageNameMatchesRegEx::PackageNameMatchesRegEx(std::string
const &Pattern
) : d(NULL
) {/*{{{*/
24 pattern
= new regex_t
;
25 int const Res
= regcomp(pattern
, Pattern
.c_str(), REG_EXTENDED
| REG_ICASE
| REG_NOSUB
);
32 regerror(Res
, pattern
, Error
, sizeof(Error
));
33 _error
->Error(_("Regex compilation error - %s"), Error
);
36 bool PackageNameMatchesRegEx::operator() (pkgCache::PkgIterator
const &Pkg
) {/*{{{*/
37 if (unlikely(pattern
== NULL
))
40 return regexec(pattern
, Pkg
.Name(), 0, 0, 0) == 0;
43 bool PackageNameMatchesRegEx::operator() (pkgCache::GrpIterator
const &Grp
) {/*{{{*/
44 if (unlikely(pattern
== NULL
))
47 return regexec(pattern
, Grp
.Name(), 0, 0, 0) == 0;
50 PackageNameMatchesRegEx::~PackageNameMatchesRegEx() { /*{{{*/
58 // CompleteArch to <kernel>-<cpu> tuple /*{{{*/
59 //----------------------------------------------------------------------
60 /* The complete architecture, consisting of <kernel>-<cpu>. */
61 static std::string
CompleteArch(std::string
const &arch
) {
62 if (arch
.find('-') != std::string::npos
) {
63 // ensure that only -any- is replaced and not something like company-
64 std::string complete
= std::string("-").append(arch
).append("-");
65 complete
= SubstVar(complete
, "-any-", "-*-");
66 complete
= complete
.substr(1, complete
.size()-2);
69 else if (arch
== "any") return "*-*";
70 else return "linux-" + arch
;
73 PackageArchitectureMatchesSpecification::PackageArchitectureMatchesSpecification(std::string
const &pattern
, bool const isPattern
) :/*{{{*/
74 literal(pattern
), isPattern(isPattern
), d(NULL
) {
75 complete
= CompleteArch(pattern
);
78 bool PackageArchitectureMatchesSpecification::operator() (char const * const &arch
) {/*{{{*/
79 if (strcmp(literal
.c_str(), arch
) == 0 ||
80 strcmp(complete
.c_str(), arch
) == 0)
82 std::string
const pkgarch
= CompleteArch(arch
);
83 if (isPattern
== true)
84 return fnmatch(complete
.c_str(), pkgarch
.c_str(), 0) == 0;
85 return fnmatch(pkgarch
.c_str(), complete
.c_str(), 0) == 0;
88 bool PackageArchitectureMatchesSpecification::operator() (pkgCache::PkgIterator
const &Pkg
) {/*{{{*/
89 return (*this)(Pkg
.Arch());
92 bool PackageArchitectureMatchesSpecification::operator() (pkgCache::VerIterator
const &Ver
) {/*{{{*/
93 return (*this)(Ver
.ParentPkg());
96 PackageArchitectureMatchesSpecification::~PackageArchitectureMatchesSpecification() { /*{{{*/