]>
git.saurik.com Git - apt.git/blob - apt-pkg/srcrecords.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: srcrecords.cc,v 1.5 2001/02/23 06:41:55 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 // Include Files /*{{{*/
15 #pragma implementation "apt-pkg/srcrecords.h"
18 #include <apt-pkg/srcrecords.h>
19 #include <apt-pkg/error.h>
20 #include <apt-pkg/sourcelist.h>
21 #include <apt-pkg/strutl.h>
26 // SrcRecords::pkgSrcRecords - Constructor /*{{{*/
27 // ---------------------------------------------------------------------
28 /* Open all the source index files */
29 pkgSrcRecords::pkgSrcRecords(pkgSourceList
&List
) : Files(0), Current(0)
31 Files
= new Parser
*[List
.end() - List
.begin() + 1];
33 unsigned int Count
= 0;
34 pkgSourceList::const_iterator I
= List
.begin();
35 for (; I
!= List
.end(); I
++)
37 Files
[Count
] = (*I
)->CreateSrcParser();
38 if (_error
->PendingError() == true)
40 if (Files
[Count
] != 0)
45 // Doesn't work without any source index files
48 _error
->Error(_("Sorry, you must put some 'source' URIs"
49 " in your sources.list"));
56 // SrcRecords::~pkgSrcRecords - Destructor /*{{{*/
57 // ---------------------------------------------------------------------
59 pkgSrcRecords::~pkgSrcRecords()
64 // Blow away all the parser objects
65 for (unsigned int Count
= 0; Files
[Count
] != 0; Count
++)
70 // SrcRecords::Restart - Restart the search /*{{{*/
71 // ---------------------------------------------------------------------
72 /* Return all of the parsers to their starting position */
73 bool pkgSrcRecords::Restart()
76 for (Parser
**I
= Files
; *I
!= 0; I
++)
82 // SrcRecords::Find - Find the first source package with the given name /*{{{*/
83 // ---------------------------------------------------------------------
84 /* This searches on both source package names and output binary names and
85 returns the first found. A 'cursor' like system is used to allow this
86 function to be called multiple times to get successive entries */
87 pkgSrcRecords::Parser
*pkgSrcRecords::Find(const char *Package
,bool SrcOnly
)
94 // Step to the next record, possibly switching files
95 while ((*Current
)->Step() == false)
97 if (_error
->PendingError() == true)
105 if (_error
->PendingError() == true)
109 if ((*Current
)->Package() == Package
)
115 // Check for a binary hit
116 const char **I
= (*Current
)->Binaries();
117 for (; I
!= 0 && *I
!= 0; I
++)
118 if (strcmp(Package
,*I
) == 0)
123 // Parser::BuildDepType - Convert a build dep to a string /*{{{*/
124 // ---------------------------------------------------------------------
126 const char *pkgSrcRecords::Parser::BuildDepType(unsigned char Type
)
128 const char *fields
[] = {"Build-Depends",
129 "Build-Depends-Indep",
131 "Build-Conflicts-Indep"};