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