* implement sha256/sha1/md5 checking with proper backward compatibility
[ntk/apt.git] / apt-pkg / deb / debrecords.h
CommitLineData
f55ece0e
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
a7c835af 3// $Id: debrecords.h,v 1.8 2001/03/13 06:51:46 jgg Exp $
f55ece0e
AL
4/* ######################################################################
5
6 Debian Package Records - Parser for debian package records
7
8 This provides display-type parsing for the Packages file. This is
9 different than the the list parser which provides cache generation
10 services. There should be no overlap between these two.
11
12 ##################################################################### */
13 /*}}}*/
f55ece0e
AL
14#ifndef PKGLIB_DEBRECORDS_H
15#define PKGLIB_DEBRECORDS_H
16
f55ece0e 17#include <apt-pkg/pkgrecords.h>
a52f938b 18#include <apt-pkg/indexfile.h>
f55ece0e
AL
19#include <apt-pkg/tagfile.h>
20
21class debRecordParser : public pkgRecords::Parser
22{
b2e465d6 23 FileFd File;
f55ece0e
AL
24 pkgTagFile Tags;
25 pkgTagSection Section;
b2e465d6 26
7e798dd7
AL
27 protected:
28
03e39e59 29 virtual bool Jump(pkgCache::VerFileIterator const &Ver);
a52f938b 30 virtual bool Jump(pkgCache::DescFileIterator const &Desc);
f55ece0e
AL
31
32 public:
7e798dd7
AL
33
34 // These refer to the archive file for the Version
35 virtual string FileName();
36 virtual string MD5Hash();
a7c835af 37 virtual string SHA1Hash();
495e5cb2 38 virtual string SHA256Hash();
36375005 39 virtual string SourcePkg();
c2f2b862 40 virtual string SourceVer();
f55ece0e 41
7e798dd7
AL
42 // These are some general stats about the package
43 virtual string Maintainer();
44 virtual string ShortDesc();
45 virtual string LongDesc();
b2e465d6
AL
46 virtual string Name();
47
48 virtual void GetRec(const char *&Start,const char *&Stop);
f55ece0e 49
b2e465d6 50 debRecordParser(string FileName,pkgCache &Cache);
f55ece0e
AL
51};
52
f55ece0e 53#endif