]>
git.saurik.com Git - apt.git/blob - apt-pkg/srcrecords.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: srcrecords.h,v 1.2 1999/04/04 08:07:39 jgg Exp $
4 /* ######################################################################
6 Source Package Records - Allows access to source package records
8 Parses and allows access to the list of source records and searching by
9 source name on that list.
11 ##################################################################### */
13 #ifndef PKGLIB_SRCRECORDS_H
14 #define PKGLIB_SRCRECORDS_H
17 #pragma interface "apt-pkg/srcrecords.h"
20 #include <apt-pkg/fileutl.h>
21 #include <apt-pkg/sourcelist.h>
27 // Describes a single file
35 // Abstract parser for each source record
42 virtual bool Restart() = 0;
43 virtual bool Step() = 0;
44 virtual bool Jump(unsigned long Off
) = 0;
45 virtual unsigned long Offset() = 0;
47 virtual string
Package() = 0;
48 virtual string
Version() = 0;
49 virtual string
Maintainer() = 0;
50 virtual string
Section() = 0;
51 virtual const char **Binaries() = 0;
52 virtual bool Files(vector
<File
> &F
) = 0;
54 Parser(FileFd
*File
) : File(File
) {};
55 virtual ~Parser() {delete File
;};
60 // The list of files and the current parser pointer
69 // Locate a package by name
70 Parser
*Find(const char *Package
,bool SrcOnly
= false);
72 pkgSrcRecords(pkgSourceList
&List
);