summaryrefslogtreecommitdiff
path: root/apt-private/private-search.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2013-10-22 16:53:32 +0200
committerMichael Vogt <mvo@debian.org>2013-10-22 16:53:32 +0200
commitf62f17b489405432a3125e51471d8a00e78c5170 (patch)
treece2a6e077cb0846e75cbb3d583f4152608100adb /apt-private/private-search.cc
parent9aa9db9c88fca3a9266427b0d5cc9ad53df7207e (diff)
parentc08cf1dc784a98a253296a51433f6de7d16d3125 (diff)
Merge branch 'debian/sid' into ubuntu/master
Conflicts: cmdline/apt-key configure.ac debian/apt.auto-removal.sh debian/changelog debian/control debian/rules po/apt-all.pot po/ar.po po/ast.po po/bg.po po/bs.po po/ca.po po/cs.po po/cy.po po/da.po po/de.po po/dz.po po/el.po po/es.po po/eu.po po/fi.po po/fr.po po/gl.po po/hu.po po/it.po po/ja.po po/km.po po/ko.po po/ku.po po/lt.po po/mr.po po/nb.po po/ne.po po/nl.po po/nn.po po/pl.po po/pt.po po/pt_BR.po po/ro.po po/ru.po po/sk.po po/sl.po po/sv.po po/th.po po/tl.po po/uk.po po/vi.po po/zh_CN.po po/zh_TW.po
Diffstat (limited to 'apt-private/private-search.cc')
-rw-r--r--apt-private/private-search.cc101
1 files changed, 101 insertions, 0 deletions
diff --git a/apt-private/private-search.cc b/apt-private/private-search.cc
new file mode 100644
index 000000000..ff4140fa7
--- /dev/null
+++ b/apt-private/private-search.cc
@@ -0,0 +1,101 @@
+// Includes /*{{{*/
+#include <apt-pkg/error.h>
+#include <apt-pkg/cachefile.h>
+#include <apt-pkg/cachefilter.h>
+#include <apt-pkg/cacheset.h>
+#include <apt-pkg/init.h>
+#include <apt-pkg/progress.h>
+#include <apt-pkg/sourcelist.h>
+#include <apt-pkg/cmndline.h>
+#include <apt-pkg/strutl.h>
+#include <apt-pkg/fileutl.h>
+#include <apt-pkg/pkgrecords.h>
+#include <apt-pkg/srcrecords.h>
+#include <apt-pkg/version.h>
+#include <apt-pkg/policy.h>
+#include <apt-pkg/tagfile.h>
+#include <apt-pkg/algorithms.h>
+#include <apt-pkg/sptr.h>
+#include <apt-pkg/pkgsystem.h>
+#include <apt-pkg/indexfile.h>
+#include <apt-pkg/metaindex.h>
+
+#include <sstream>
+#include <utility>
+#include <cassert>
+#include <locale.h>
+#include <iostream>
+#include <unistd.h>
+#include <errno.h>
+#include <regex.h>
+#include <stdio.h>
+#include <iomanip>
+#include <algorithm>
+#include <map>
+
+#include "private-search.h"
+#include "private-cacheset.h"
+ /*}}}*/
+
+bool FullTextSearch(CommandLine &CmdL) /*{{{*/
+{
+ pkgCacheFile CacheFile;
+ pkgCache *Cache = CacheFile.GetPkgCache();
+ pkgDepCache::Policy *Plcy = CacheFile.GetPolicy();
+ pkgRecords records(CacheFile);
+ if (unlikely(Cache == NULL || Plcy == NULL))
+ return false;
+
+ const char **patterns;
+ patterns = CmdL.FileList + 1;
+
+ std::map<std::string, std::string> output_map;
+ std::map<std::string, std::string>::const_iterator K;
+
+ LocalitySortedVersionSet bag;
+ OpTextProgress progress;
+ progress.OverallProgress(0, 100, 50, _("Sorting"));
+ GetLocalitySortedVersionSet(CacheFile, bag, progress);
+ LocalitySortedVersionSet::iterator V = bag.begin();
+
+ progress.OverallProgress(50, 100, 50, _("Full Text Search"));
+ progress.SubProgress(bag.size());
+ int Done = 0;
+ for ( ;V != bag.end(); V++)
+ {
+ if (Done%500 == 0)
+ progress.Progress(Done);
+ Done++;
+
+ int i;
+ pkgCache::DescIterator Desc = V.TranslatedDescription();
+ pkgRecords::Parser &parser = records.Lookup(Desc.FileList());
+
+ bool all_found = true;
+ for(i=0; patterns[i] != NULL; i++)
+ {
+ // FIXME: use regexp instead of simple find()
+ const char *pattern = patterns[i];
+ all_found &= (
+ strstr(V.ParentPkg().Name(), pattern) != NULL ||
+ parser.ShortDesc().find(pattern) != std::string::npos ||
+ parser.LongDesc().find(pattern) != std::string::npos);
+ }
+ if (all_found)
+ {
+ std::stringstream outs;
+ ListSingleVersion(CacheFile, records, V, outs);
+ output_map.insert(std::make_pair<std::string, std::string>(
+ V.ParentPkg().Name(), outs.str()));
+ }
+ }
+ progress.Done();
+
+ // FIXME: SORT! and make sorting flexible (alphabetic, by pkg status)
+ // output the sorted map
+ for (K = output_map.begin(); K != output_map.end(); K++)
+ std::cout << (*K).second << std::endl;
+
+ return true;
+}
+ /*}}}*/