* apt-pkg/cdrom.cc:
[ntk/apt.git] / apt-pkg / pkgrecords.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 // $Id: pkgrecords.h,v 1.6 2001/03/13 06:51:46 jgg Exp $
4 /* ######################################################################
5
6 Package Records - Allows access to complete package description records
7 directly from the file.
8
9 The package record system abstracts the actual parsing of the
10 package files. This is different than the generators parser in that
11 it is used to access information not generate information. No
12 information touched by the generator should be parable from here as
13 it can always be retreived directly from the cache.
14
15 ##################################################################### */
16 /*}}}*/
17 #ifndef PKGLIB_PKGRECORDS_H
18 #define PKGLIB_PKGRECORDS_H
19
20 #ifdef __GNUG__
21 #pragma interface "apt-pkg/pkgrecords.h"
22 #endif
23
24 #include <apt-pkg/pkgcache.h>
25 #include <apt-pkg/fileutl.h>
26 #include <vector>
27
28 class pkgRecords
29 {
30 public:
31 class Parser;
32
33 private:
34
35 pkgCache &Cache;
36 std::vector<Parser *>Files;
37
38 public:
39
40 // Lookup function
41 Parser &Lookup(pkgCache::VerFileIterator const &Ver);
42 Parser &Lookup(pkgCache::DescFileIterator const &Desc);
43
44 // Construct destruct
45 pkgRecords(pkgCache &Cache);
46 ~pkgRecords();
47 };
48
49 class pkgRecords::Parser
50 {
51 protected:
52
53 virtual bool Jump(pkgCache::VerFileIterator const &Ver) = 0;
54 virtual bool Jump(pkgCache::DescFileIterator const &Desc) = 0;
55
56 public:
57 friend class pkgRecords;
58
59 // These refer to the archive file for the Version
60 virtual string FileName() {return string();};
61 virtual string MD5Hash() {return string();};
62 virtual string SHA1Hash() {return string();};
63 virtual string SourcePkg() {return string();};
64
65 // These are some general stats about the package
66 virtual string Maintainer() {return string();};
67 virtual string ShortDesc() {return string();};
68 virtual string LongDesc() {return string();};
69 virtual string Name() {return string();};
70
71 // The record in binary form
72 virtual void GetRec(const char *&Start,const char *&Stop) {Start = Stop = 0;};
73
74 virtual ~Parser() {};
75 };
76
77 #endif