]>
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/strutl.h>
20 #include <apt-pkg/metaindex.h>
25 // SrcRecords::pkgSrcRecords - Constructor /*{{{*/
26 // ---------------------------------------------------------------------
27 /* Open all the source index files */
28 pkgSrcRecords::pkgSrcRecords(pkgSourceList
&List
) : d(NULL
), Files(0), Current(0)
30 for (pkgSourceList::const_iterator I
= List
.begin(); I
!= List
.end(); ++I
)
32 std::vector
<pkgIndexFile
*> *Indexes
= (*I
)->GetIndexFiles();
33 for (std::vector
<pkgIndexFile
*>::const_iterator J
= Indexes
->begin();
34 J
!= Indexes
->end(); ++J
)
36 Parser
* P
= (*J
)->CreateSrcParser();
37 if (_error
->PendingError() == true)
44 // Doesn't work without any source index files
45 if (Files
.empty() == true)
47 _error
->Error(_("You must put some 'source' URIs"
48 " in your sources.list"));
55 // SrcRecords::~pkgSrcRecords - Destructor /*{{{*/
56 // ---------------------------------------------------------------------
58 pkgSrcRecords::~pkgSrcRecords()
60 // Blow away all the parser objects
61 for(std::vector
<Parser
*>::iterator I
= Files
.begin(); I
!= Files
.end(); ++I
)
65 // SrcRecords::Restart - Restart the search /*{{{*/
66 // ---------------------------------------------------------------------
67 /* Return all of the parsers to their starting position */
68 bool pkgSrcRecords::Restart()
70 Current
= Files
.begin();
71 for (std::vector
<Parser
*>::iterator I
= Files
.begin();
72 I
!= Files
.end(); ++I
)
78 // SrcRecords::Find - Find the first source package with the given name /*{{{*/
79 // ---------------------------------------------------------------------
80 /* This searches on both source package names and output binary names and
81 returns the first found. A 'cursor' like system is used to allow this
82 function to be called multiple times to get successive entries */
83 pkgSrcRecords::Parser
*pkgSrcRecords::Find(const char *Package
,bool const &SrcOnly
)
85 if (Current
== Files
.end())
90 // Step to the next record, possibly switching files
91 while ((*Current
)->Step() == false)
93 if (_error
->PendingError() == true)
96 if (Current
== Files
.end())
101 if (_error
->PendingError() == true)
105 if ((*Current
)->Package() == Package
)
111 // Check for a binary hit
112 const char **I
= (*Current
)->Binaries();
113 for (; I
!= 0 && *I
!= 0; ++I
)
114 if (strcmp(Package
,*I
) == 0)
119 // Parser::BuildDepType - Convert a build dep to a string /*{{{*/
120 // ---------------------------------------------------------------------
122 const char *pkgSrcRecords::Parser::BuildDepType(unsigned char const &Type
)
124 const char *fields
[] = {"Build-Depends",
125 "Build-Depends-Indep",
127 "Build-Conflicts-Indep"};
128 if (unlikely(Type
>= sizeof(fields
)/sizeof(fields
[0])))