]>
git.saurik.com Git - apt.git/blob - apt-pkg/srcrecords.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: srcrecords.cc,v 1.7.2.2 2003/12/26 16:27:34 mdz 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 /*{{{*/
16 #include <apt-pkg/srcrecords.h>
17 #include <apt-pkg/error.h>
18 #include <apt-pkg/sourcelist.h>
19 #include <apt-pkg/metaindex.h>
20 #include <apt-pkg/indexfile.h>
21 #include <apt-pkg/macros.h>
30 // SrcRecords::pkgSrcRecords - Constructor /*{{{*/
31 // ---------------------------------------------------------------------
32 /* Open all the source index files */
33 pkgSrcRecords::pkgSrcRecords(pkgSourceList
&List
) : d(NULL
), Files(0), Current(0)
35 for (pkgSourceList::const_iterator I
= List
.begin(); I
!= List
.end(); ++I
)
37 std::vector
<pkgIndexFile
*> *Indexes
= (*I
)->GetIndexFiles();
38 for (std::vector
<pkgIndexFile
*>::const_iterator J
= Indexes
->begin();
39 J
!= Indexes
->end(); ++J
)
41 Parser
* P
= (*J
)->CreateSrcParser();
42 if (_error
->PendingError() == true)
49 // Doesn't work without any source index files
50 if (Files
.empty() == true)
52 _error
->Error(_("You must put some 'source' URIs"
53 " in your sources.list"));
60 // SrcRecords::~pkgSrcRecords - Destructor /*{{{*/
61 // ---------------------------------------------------------------------
63 pkgSrcRecords::~pkgSrcRecords()
65 // Blow away all the parser objects
66 for(std::vector
<Parser
*>::iterator I
= Files
.begin(); I
!= Files
.end(); ++I
)
70 // SrcRecords::Restart - Restart the search /*{{{*/
71 // ---------------------------------------------------------------------
72 /* Return all of the parsers to their starting position */
73 bool pkgSrcRecords::Restart()
75 Current
= Files
.begin();
76 for (std::vector
<Parser
*>::iterator I
= Files
.begin();
77 I
!= Files
.end(); ++I
)
78 if ((*I
)->Offset() != 0)
84 // SrcRecords::Find - Find the first source package with the given name /*{{{*/
85 // ---------------------------------------------------------------------
86 /* This searches on both source package names and output binary names and
87 returns the first found. A 'cursor' like system is used to allow this
88 function to be called multiple times to get successive entries */
89 pkgSrcRecords::Parser
*pkgSrcRecords::Find(const char *Package
,bool const &SrcOnly
)
91 if (Current
== Files
.end())
96 // Step to the next record, possibly switching files
97 while ((*Current
)->Step() == false)
99 if (_error
->PendingError() == true)
102 if (Current
== Files
.end())
107 if (_error
->PendingError() == true)
111 if ((*Current
)->Package() == Package
)
117 // Check for a binary hit
118 const char **I
= (*Current
)->Binaries();
119 for (; I
!= 0 && *I
!= 0; ++I
)
120 if (strcmp(Package
,*I
) == 0)
125 // Parser::BuildDepType - Convert a build dep to a string /*{{{*/
126 // ---------------------------------------------------------------------
128 const char *pkgSrcRecords::Parser::BuildDepType(unsigned char const &Type
)
130 const char *fields
[] = {"Build-Depends",
131 "Build-Depends-Indep",
133 "Build-Conflicts-Indep"};
134 if (unlikely(Type
>= sizeof(fields
)/sizeof(fields
[0])))