no_proxy environment variable
[ntk/apt.git] / apt-pkg / srcrecords.h
CommitLineData
11e7af84
AL
1// -*- mode: cpp; mode: fold -*-
2// Description /*{{{*/
727f18af 3// $Id: srcrecords.h,v 1.4 1999/07/20 05:53:33 jgg Exp $
11e7af84
AL
4/* ######################################################################
5
6 Source Package Records - Allows access to source package records
7
8 Parses and allows access to the list of source records and searching by
9 source name on that list.
10
11 ##################################################################### */
12 /*}}}*/
13#ifndef PKGLIB_SRCRECORDS_H
14#define PKGLIB_SRCRECORDS_H
15
16#ifdef __GNUG__
17#pragma interface "apt-pkg/srcrecords.h"
18#endif
19
20#include <apt-pkg/fileutl.h>
21#include <apt-pkg/sourcelist.h>
22
23class pkgSrcRecords
24{
25 public:
36f610f1
AL
26
27 // Describes a single file
28 struct File
29 {
30 string MD5Hash;
31 unsigned long Size;
32 string Path;
33 };
11e7af84 34
36f610f1 35 // Abstract parser for each source record
11e7af84
AL
36 class Parser
37 {
38 FileFd *File;
36375005
AL
39 pkgSourceList::const_iterator SrcItem;
40
11e7af84
AL
41 public:
42
36375005
AL
43 inline pkgSourceList::const_iterator Source() const {return SrcItem;};
44
11e7af84
AL
45 virtual bool Restart() = 0;
46 virtual bool Step() = 0;
47 virtual bool Jump(unsigned long Off) = 0;
48 virtual unsigned long Offset() = 0;
49
50 virtual string Package() = 0;
51 virtual string Version() = 0;
52 virtual string Maintainer() = 0;
53 virtual string Section() = 0;
54 virtual const char **Binaries() = 0;
727f18af 55 virtual bool Files(vector<pkgSrcRecords::File> &F) = 0;
11e7af84 56
36375005
AL
57 Parser(FileFd *File,pkgSourceList::const_iterator SrcItem) : File(File),
58 SrcItem(SrcItem) {};
11e7af84
AL
59 virtual ~Parser() {delete File;};
60 };
61
62 private:
63
64 // The list of files and the current parser pointer
65 Parser **Files;
66 Parser **Current;
67
68 public:
69
70 // Reset the search
71 bool Restart();
72
73 // Locate a package by name
74 Parser *Find(const char *Package,bool SrcOnly = false);
75
76 pkgSrcRecords(pkgSourceList &List);
77 ~pkgSrcRecords();
78};
79
80
81#endif