X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/094a497dd2dba1f47157e07d57f97c338a5ddaa0..36f610f18a9a12c02ba89c6bb84726f7ed3ba7ad:/apt-pkg/sourcelist.h diff --git a/apt-pkg/sourcelist.h b/apt-pkg/sourcelist.h index 57a648b97..bbf2dba4e 100644 --- a/apt-pkg/sourcelist.h +++ b/apt-pkg/sourcelist.h @@ -1,12 +1,17 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: sourcelist.h,v 1.3 1998/07/12 23:58:38 jgg Exp $ +// $Id: sourcelist.h,v 1.7 1999/03/02 18:35:24 jgg Exp $ /* ###################################################################### SourceList - Manage a list of sources The Source List class provides access to a list of sources. It - can read them from a file and generate a list of all the permutations. + can read them from a file and generate a list of all the distinct + sources. + + All sources have a type associated with them that defines the layout + of the archive. The exact format of the file is documented in + files.sgml. ##################################################################### */ /*}}}*/ @@ -32,7 +37,7 @@ class pkgSourceList item */ struct Item { - enum {Deb} Type; + enum {Deb, DebSrc} Type; string URI; string Dist; @@ -42,6 +47,8 @@ class pkgSourceList bool SetURI(string S); string PackagesURI() const; string PackagesInfo() const; + string ReleaseURI() const; + string ReleaseInfo() const; string SiteOnly(string URI) const; string ArchiveInfo(pkgCache::VerIterator Ver) const; string ArchiveURI(string File) const; @@ -56,15 +63,13 @@ class pkgSourceList bool ReadMainList(); bool Read(string File); - string SanitizeURI(string URI); - const_iterator MatchPkgFile(pkgCache::VerIterator Ver); // List accessors inline const_iterator begin() const {return List.begin();}; inline const_iterator end() const {return List.end();}; inline unsigned int size() const {return List.size();}; inline bool empty() const {return List.empty();}; - + pkgSourceList(); pkgSourceList(string File); };