]>
git.saurik.com Git - apt.git/blob - apt-pkg/sourcelist.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: sourcelist.cc,v 1.25 2004/06/07 23:08:00 mdz Exp $
4 /* ######################################################################
8 ##################################################################### */
10 // Include Files /*{{{*/
12 #pragma implementation "apt-pkg/sourcelist.h"
15 #include <apt-pkg/sourcelist.h>
16 #include <apt-pkg/error.h>
17 #include <apt-pkg/fileutl.h>
18 #include <apt-pkg/strutl.h>
19 #include <apt-pkg/configuration.h>
28 // Global list of Items supported
29 static pkgSourceList::Type
*ItmList
[10];
30 pkgSourceList::Type
**pkgSourceList::Type::GlobalList
= ItmList
;
31 unsigned long pkgSourceList::Type::GlobalListLen
= 0;
33 // Type::Type - Constructor /*{{{*/
34 // ---------------------------------------------------------------------
35 /* Link this to the global list of items*/
36 pkgSourceList::Type::Type()
38 ItmList
[GlobalListLen
] = this;
42 // Type::GetType - Get a specific meta for a given type /*{{{*/
43 // ---------------------------------------------------------------------
45 pkgSourceList::Type
*pkgSourceList::Type::GetType(const char *Type
)
47 for (unsigned I
= 0; I
!= GlobalListLen
; I
++)
48 if (strcmp(GlobalList
[I
]->Name
,Type
) == 0)
53 // Type::FixupURI - Normalize the URI and check it.. /*{{{*/
54 // ---------------------------------------------------------------------
56 bool pkgSourceList::Type::FixupURI(string
&URI
) const
58 if (URI
.empty() == true)
61 if (URI
.find(':') == string::npos
)
64 URI
= SubstVar(URI
,"$(ARCH)",_config
->Find("APT::Architecture"));
66 // Make sure that the URI is / postfixed
67 if (URI
[URI
.size() - 1] != '/')
73 // Type::ParseLine - Parse a single line /*{{{*/
74 // ---------------------------------------------------------------------
75 /* This is a generic one that is the 'usual' format for sources.list
76 Weird types may override this. */
77 bool pkgSourceList::Type::ParseLine(vector
<metaIndex
*> &List
,
79 unsigned long CurLine
,
86 if (ParseQuoteWord(Buffer
,URI
) == false)
87 return _error
->Error(_("Malformed line %lu in source list %s (URI)"),CurLine
,File
.c_str());
88 if (ParseQuoteWord(Buffer
,Dist
) == false)
89 return _error
->Error(_("Malformed line %lu in source list %s (dist)"),CurLine
,File
.c_str());
91 if (FixupURI(URI
) == false)
92 return _error
->Error(_("Malformed line %lu in source list %s (URI parse)"),CurLine
,File
.c_str());
94 // Check for an absolute dists specification.
95 if (Dist
.empty() == false && Dist
[Dist
.size() - 1] == '/')
97 if (ParseQuoteWord(Buffer
,Section
) == true)
98 return _error
->Error(_("Malformed line %lu in source list %s (Absolute dist)"),CurLine
,File
.c_str());
99 Dist
= SubstVar(Dist
,"$(ARCH)",_config
->Find("APT::Architecture"));
100 return CreateItem(List
,URI
,Dist
,Section
);
103 // Grab the rest of the dists
104 if (ParseQuoteWord(Buffer
,Section
) == false)
105 return _error
->Error(_("Malformed line %lu in source list %s (dist parse)"),CurLine
,File
.c_str());
109 if (CreateItem(List
,URI
,Dist
,Section
) == false)
112 while (ParseQuoteWord(Buffer
,Section
) == true);
118 // SourceList::pkgSourceList - Constructors /*{{{*/
119 // ---------------------------------------------------------------------
121 pkgSourceList::pkgSourceList()
125 pkgSourceList::pkgSourceList(string File
)
130 // SourceList::~pkgSourceList - Destructor /*{{{*/
131 // ---------------------------------------------------------------------
133 pkgSourceList::~pkgSourceList()
135 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
140 // SourceList::ReadMainList - Read the main source list from etc /*{{{*/
141 // ---------------------------------------------------------------------
143 bool pkgSourceList::ReadMainList()
145 return Read(_config
->FindFile("Dir::Etc::sourcelist"));
148 // SourceList::Read - Parse the sourcelist file /*{{{*/
149 // ---------------------------------------------------------------------
151 bool pkgSourceList::Read(string File
)
153 // Open the stream for reading
154 ifstream
F(File
.c_str(),ios::in
/*| ios::nocreate*/);
156 return _error
->Errno("ifstream::ifstream",_("Opening %s"),File
.c_str());
158 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
160 SrcList
.erase(SrcList
.begin(),SrcList
.end());
164 while (F
.eof() == false)
166 F
.getline(Buffer
,sizeof(Buffer
));
168 _strtabexpand(Buffer
,sizeof(Buffer
));
169 if (F
.fail() && !F
.eof())
170 return _error
->Error(_("Line %u too long in source list %s."),
171 CurLine
,File
.c_str());
175 for (I
= Buffer
; *I
!= 0 && *I
!= '#'; I
++);
178 const char *C
= _strstrip(Buffer
);
181 if (C
[0] == '#' || C
[0] == 0)
186 if (ParseQuoteWord(C
,LineType
) == false)
187 return _error
->Error(_("Malformed line %u in source list %s (type)"),CurLine
,File
.c_str());
189 Type
*Parse
= Type::GetType(LineType
.c_str());
191 return _error
->Error(_("Type '%s' is not known on line %u in source list %s"),LineType
.c_str(),CurLine
,File
.c_str());
193 // Vendor name specified
198 if (ParseQuoteWord(C
,VendorID
) == false)
199 return _error
->Error(_("Malformed line %u in source list %s (vendor id)"),CurLine
,File
.c_str());
201 if (VendorID
.length() < 2 || VendorID
.end()[-1] != ']')
202 return _error
->Error(_("Malformed line %u in source list %s (vendor id)"),CurLine
,File
.c_str());
203 VendorID
= string(VendorID
,1,VendorID
.size()-2);
205 // for (vector<const Vendor *>::const_iterator iter = VendorList.begin();
206 // iter != VendorList.end(); iter++)
208 // if ((*iter)->GetVendorID() == VendorID)
210 // if (_config->FindB("Debug::sourceList", false))
211 // std::cerr << "Comparing VendorID \"" << VendorID << "\" with \"" << (*iter)->GetVendorID() << '"' << std::endl;
217 // if (Verifier == 0)
218 // return _error->Error(_("Unknown vendor ID '%s' in line %u of source list %s"),
219 // VendorID.c_str(),CurLine,File.c_str());
222 if (Parse
->ParseLine(SrcList
,C
,CurLine
,File
) == false)
228 // SourceList::FindIndex - Get the index associated with a file /*{{{*/
229 // ---------------------------------------------------------------------
231 bool pkgSourceList::FindIndex(pkgCache::PkgFileIterator File
,
232 pkgIndexFile
*&Found
) const
234 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
236 vector
<pkgIndexFile
*> *Indexes
= (*I
)->GetIndexFiles();
237 for (vector
<pkgIndexFile
*>::const_iterator J
= Indexes
->begin();
238 J
!= Indexes
->end(); J
++)
240 if ((*J
)->FindInCache(*File
.Cache()) == File
)
251 // SourceList::GetIndexes - Load the index files into the downloader /*{{{*/
252 // ---------------------------------------------------------------------
254 bool pkgSourceList::GetIndexes(pkgAcquire
*Owner
, bool GetAll
) const
256 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
257 if ((*I
)->GetIndexes(Owner
,GetAll
) == false)