blob: 59c759f9db689c28fff28390ea8dcf0ce97c8ec0 (
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
|
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
/* ######################################################################
EDSP Package List Parser - This implements the abstract parser
interface for the APT specific intermediate format which is passed
to external resolvers
##################################################################### */
/*}}}*/
#ifndef PKGLIB_EDSPLISTPARSER_H
#define PKGLIB_EDSPLISTPARSER_H
#include <apt-pkg/deblistparser.h>
#include <apt-pkg/fileutl.h>
#include <apt-pkg/md5.h>
#include <apt-pkg/pkgcache.h>
#include <string>
#ifndef APT_8_CLEANER_HEADERS
#include <apt-pkg/indexfile.h>
#include <apt-pkg/pkgcachegen.h>
#include <apt-pkg/tagfile.h>
#endif
namespace APT {
class StringView;
}
class APT_HIDDEN edspLikeListParser : public debListParser
{
public:
virtual bool NewVersion(pkgCache::VerIterator &Ver) APT_OVERRIDE;
virtual std::vector<std::string> AvailableDescriptionLanguages() APT_OVERRIDE;
virtual APT::StringView Description_md5() APT_OVERRIDE;
virtual unsigned short VersionHash() APT_OVERRIDE;
edspLikeListParser(FileFd *File);
virtual ~edspLikeListParser();
};
class APT_HIDDEN edspListParser : public edspLikeListParser
{
FileFd extendedstates;
FileFd preferences;
protected:
virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver) APT_OVERRIDE;
public:
edspListParser(FileFd *File);
virtual ~edspListParser();
};
class APT_HIDDEN eippListParser : public edspLikeListParser
{
protected:
virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver) APT_OVERRIDE;
public:
eippListParser(FileFd *File);
virtual ~eippListParser();
};
#endif
|