]> git.saurik.com Git - apt.git/blob - apt-pkg/edsp/edsplistparser.h
98dde4bf5ae0eac162d56cce0ce6c7d505d987ac
[apt.git] / apt-pkg / edsp / edsplistparser.h
1 // -*- mode: cpp; mode: fold -*-
2 // Description /*{{{*/
3 /* ######################################################################
4
5 EDSP Package List Parser - This implements the abstract parser
6 interface for the APT specific intermediate format which is passed
7 to external resolvers
8
9 ##################################################################### */
10 /*}}}*/
11 #ifndef PKGLIB_EDSPLISTPARSER_H
12 #define PKGLIB_EDSPLISTPARSER_H
13
14 #include <apt-pkg/deblistparser.h>
15 #include <apt-pkg/md5.h>
16 #include <apt-pkg/pkgcache.h>
17
18 #include <string>
19
20 #ifndef APT_8_CLEANER_HEADERS
21 #include <apt-pkg/pkgcachegen.h>
22 #include <apt-pkg/indexfile.h>
23 #include <apt-pkg/tagfile.h>
24 #endif
25
26 class FileFd;
27
28 class APT_HIDDEN edspListParser : public debListParser
29 {
30 void * const d;
31 public:
32 virtual bool NewVersion(pkgCache::VerIterator &Ver);
33 virtual std::string Description();
34 virtual std::string DescriptionLanguage();
35 virtual MD5SumValue Description_md5();
36 virtual unsigned short VersionHash();
37
38 bool LoadReleaseInfo(pkgCache::RlsFileIterator &FileI,FileFd &File,
39 std::string const &section);
40
41 edspListParser(FileFd *File, std::string const &Arch = "");
42 virtual ~edspListParser();
43
44 protected:
45 virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver);
46
47 };
48
49 #endif