summaryrefslogtreecommitdiff
path: root/cmdline/apt-cache.cc
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:51:42 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:51:42 +0000
commit83d89a9f6a641adccce898eb0bc675d94bc46465 (patch)
treec4f3eb7e5469264794c6e2e87cef54da9513ca2a /cmdline/apt-cache.cc
parenta05599f12fd30388ee972ed2535d5297afe0c20b (diff)
apt-cdrom
Author: jgg Date: 1998-11-27 01:52:53 GMT apt-cdrom
Diffstat (limited to 'cmdline/apt-cache.cc')
-rw-r--r--cmdline/apt-cache.cc30
1 files changed, 29 insertions, 1 deletions
diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc
index 063add348..3bdeb373c 100644
--- a/cmdline/apt-cache.cc
+++ b/cmdline/apt-cache.cc
@@ -1,6 +1,6 @@
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: apt-cache.cc,v 1.12 1998/11/14 07:20:29 jgg Exp $
+// $Id: apt-cache.cc,v 1.13 1998/11/27 01:52:53 jgg Exp $
/* ######################################################################
apt-cache - Manages the cache files
@@ -219,6 +219,27 @@ bool Stats(pkgCache &Cache)
return true;
}
/*}}}*/
+// Check - Check some things about the cache /*{{{*/
+// ---------------------------------------------------------------------
+/* Debug aide mostly */
+bool Check(pkgCache &Cache)
+{
+ pkgCache::PkgIterator Pkg = Cache.PkgBegin();
+ for (;Pkg.end() != true; Pkg++)
+ {
+ if (Pkg.Section() == 0 && Pkg->VersionList != 0)
+ cout << "Bad section " << Pkg.Name() << endl;
+
+ for (pkgCache::VerIterator Cur = Pkg.VersionList();
+ Cur.end() != true; Cur++)
+ {
+ if (Cur->Priority < 1 || Cur->Priority > 5)
+ cout << "Bad prio " << Pkg.Name() << ',' << Cur.VerStr() << " == " << (int)Cur->Priority << endl;
+ }
+ }
+ return true;
+}
+ /*}}}*/
// Dump - show everything /*{{{*/
// ---------------------------------------------------------------------
/* */
@@ -382,6 +403,7 @@ int ShowHelp()
cout << " dump - Show the entire file in a terse form" << endl;
cout << " dumpavail - Print an available file to stdout" << endl;
cout << " unmet - Show unmet dependencies" << endl;
+ cout << " check - Check the cache a bit" << endl;
cout << endl;
cout << "Options:" << endl;
cout << " -h This help text." << endl;
@@ -487,6 +509,12 @@ int main(int argc,const char *argv[])
UnMet(Cache);
break;
}
+
+ if (strcmp(CmdL.FileList[0],"check") == 0)
+ {
+ Check(Cache);
+ break;
+ }
_error->Error("Invalid operation %s", CmdL.FileList[0]);
break;