]>
git.saurik.com Git - apt.git/blob - apt-pkg/sourcelist.cc
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: sourcelist.cc,v 1.3 2002/08/15 20:51:37 niemeyer Exp $
4 /* ######################################################################
8 ##################################################################### */
10 // Include Files /*{{{*/
11 #include <apt-pkg/sourcelist.h>
12 #include <apt-pkg/error.h>
13 #include <apt-pkg/fileutl.h>
14 #include <apt-pkg/strutl.h>
15 #include <apt-pkg/configuration.h>
24 // Global list of Items supported
25 static pkgSourceList::Type
*ItmList
[10];
26 pkgSourceList::Type
**pkgSourceList::Type::GlobalList
= ItmList
;
27 unsigned long pkgSourceList::Type::GlobalListLen
= 0;
29 // Type::Type - Constructor /*{{{*/
30 // ---------------------------------------------------------------------
31 /* Link this to the global list of items*/
32 pkgSourceList::Type::Type()
34 ItmList
[GlobalListLen
] = this;
38 // Type::GetType - Get a specific meta for a given type /*{{{*/
39 // ---------------------------------------------------------------------
41 pkgSourceList::Type
*pkgSourceList::Type::GetType(const char *Type
)
43 for (unsigned I
= 0; I
!= GlobalListLen
; I
++)
44 if (strcmp(GlobalList
[I
]->Name
,Type
) == 0)
49 // Type::FixupURI - Normalize the URI and check it.. /*{{{*/
50 // ---------------------------------------------------------------------
52 bool pkgSourceList::Type::FixupURI(string
&URI
) const
54 if (URI
.empty() == true)
57 if (URI
.find(':') == string::npos
)
60 URI
= SubstVar(URI
,"$(ARCH)",_config
->Find("APT::Architecture"));
62 // Make sure that the URI is / postfixed
63 if (URI
[URI
.size() - 1] != '/')
69 // Type::ParseLine - Parse a single line /*{{{*/
70 // ---------------------------------------------------------------------
71 /* This is a generic one that is the 'usual' format for sources.list
72 Weird types may override this. */
73 bool pkgSourceList::Type::ParseLine(vector
<metaIndex
*> &List
,
75 unsigned long const &CurLine
,
76 string
const &File
) const
78 for (;Buffer
!= 0 && isspace(*Buffer
); ++Buffer
); // Skip whitespaces
80 // Parse option field if it exists
81 // e.g.: [ option1=value1 option2=value2 ]
82 map
<string
, string
> Options
;
83 if (Buffer
!= 0 && Buffer
[0] == '[')
85 ++Buffer
; // ignore the [
86 for (;Buffer
!= 0 && isspace(*Buffer
); ++Buffer
); // Skip whitespaces
87 while (*Buffer
!= ']')
89 // get one option, e.g. option1=value1
91 if (ParseQuoteWord(Buffer
,option
) == false)
92 return _error
->Error(_("Malformed line %lu in source list %s ([option] unparseable)"),CurLine
,File
.c_str());
94 if (option
.length() < 3)
95 return _error
->Error(_("Malformed line %lu in source list %s ([option] too short)"),CurLine
,File
.c_str());
97 // accept options even if the last has no space before the ]-end marker
98 if (option
.at(option
.length()-1) == ']')
100 for (; *Buffer
!= ']'; --Buffer
);
101 option
.resize(option
.length()-1);
104 size_t const needle
= option
.find('=');
105 if (needle
== string::npos
)
106 return _error
->Error(_("Malformed line %lu in source list %s ([%s] is not an assignment)"),CurLine
,File
.c_str(), option
.c_str());
108 string
const key
= string(option
, 0, needle
);
109 string
const value
= string(option
, needle
+ 1, option
.length());
111 if (key
.empty() == true)
112 return _error
->Error(_("Malformed line %lu in source list %s ([%s] has no key)"),CurLine
,File
.c_str(), option
.c_str());
114 if (value
.empty() == true)
115 return _error
->Error(_("Malformed line %lu in source list %s ([%s] key %s has no value)"),CurLine
,File
.c_str(),option
.c_str(),key
.c_str());
117 Options
[key
] = value
;
119 ++Buffer
; // ignore the ]
120 for (;Buffer
!= 0 && isspace(*Buffer
); ++Buffer
); // Skip whitespaces
127 if (ParseQuoteWord(Buffer
,URI
) == false)
128 return _error
->Error(_("Malformed line %lu in source list %s (URI)"),CurLine
,File
.c_str());
129 if (ParseQuoteWord(Buffer
,Dist
) == false)
130 return _error
->Error(_("Malformed line %lu in source list %s (dist)"),CurLine
,File
.c_str());
132 if (FixupURI(URI
) == false)
133 return _error
->Error(_("Malformed line %lu in source list %s (URI parse)"),CurLine
,File
.c_str());
135 // Check for an absolute dists specification.
136 if (Dist
.empty() == false && Dist
[Dist
.size() - 1] == '/')
138 if (ParseQuoteWord(Buffer
,Section
) == true)
139 return _error
->Error(_("Malformed line %lu in source list %s (absolute dist)"),CurLine
,File
.c_str());
140 Dist
= SubstVar(Dist
,"$(ARCH)",_config
->Find("APT::Architecture"));
141 return CreateItem(List
, URI
, Dist
, Section
, Options
);
144 // Grab the rest of the dists
145 if (ParseQuoteWord(Buffer
,Section
) == false)
146 return _error
->Error(_("Malformed line %lu in source list %s (dist parse)"),CurLine
,File
.c_str());
150 if (CreateItem(List
, URI
, Dist
, Section
, Options
) == false)
153 while (ParseQuoteWord(Buffer
,Section
) == true);
159 // SourceList::pkgSourceList - Constructors /*{{{*/
160 // ---------------------------------------------------------------------
162 pkgSourceList::pkgSourceList()
166 pkgSourceList::pkgSourceList(string File
)
171 // SourceList::~pkgSourceList - Destructor /*{{{*/
172 // ---------------------------------------------------------------------
174 pkgSourceList::~pkgSourceList()
176 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
181 // SourceList::ReadMainList - Read the main source list from etc /*{{{*/
182 // ---------------------------------------------------------------------
184 bool pkgSourceList::ReadMainList()
186 // CNC:2003-03-03 - Multiple sources list support.
195 // CNC:2003-11-28 - Entries in sources.list have priority over
196 // entries in sources.list.d.
197 string Main
= _config
->FindFile("Dir::Etc::sourcelist");
198 string Parts
= _config
->FindDir("Dir::Etc::sourceparts");
200 if (FileExists(Main
) == true)
201 Res
&= ReadAppend(Main
);
202 else if (DirectoryExists(Parts
) == false)
203 // Only warn if there are no sources.list.d.
204 _error
->WarningE("DirectoryExists", _("Unable to read %s"), Parts
.c_str());
206 if (DirectoryExists(Parts
) == true)
207 Res
&= ReadSourceDir(Parts
);
208 else if (FileExists(Main
) == false)
209 // Only warn if there is no sources.list file.
210 _error
->WarningE("FileExists", _("Unable to read %s"), Main
.c_str());
215 // CNC:2003-03-03 - Needed to preserve backwards compatibility.
216 // SourceList::Reset - Clear the sourcelist contents /*{{{*/
217 // ---------------------------------------------------------------------
219 void pkgSourceList::Reset()
221 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
223 SrcList
.erase(SrcList
.begin(),SrcList
.end());
226 // CNC:2003-03-03 - Function moved to ReadAppend() and Reset().
227 // SourceList::Read - Parse the sourcelist file /*{{{*/
228 // ---------------------------------------------------------------------
230 bool pkgSourceList::Read(string File
)
233 return ReadAppend(File
);
236 // SourceList::ReadAppend - Parse a sourcelist file /*{{{*/
237 // ---------------------------------------------------------------------
239 bool pkgSourceList::ReadAppend(string File
)
241 // Open the stream for reading
242 ifstream
F(File
.c_str(),ios::in
/*| ios::nocreate*/);
244 return _error
->Errno("ifstream::ifstream",_("Opening %s"),File
.c_str());
246 #if 0 // Now Reset() does this.
247 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
249 SrcList
.erase(SrcList
.begin(),SrcList
.end());
251 // CNC:2003-12-10 - 300 is too short.
255 while (F
.eof() == false)
257 F
.getline(Buffer
,sizeof(Buffer
));
259 _strtabexpand(Buffer
,sizeof(Buffer
));
260 if (F
.fail() && !F
.eof())
261 return _error
->Error(_("Line %u too long in source list %s."),
262 CurLine
,File
.c_str());
266 // CNC:2003-02-20 - Do not break if '#' is inside [].
267 for (I
= Buffer
; *I
!= 0 && *I
!= '#'; I
++)
269 for (I
++; *I
!= 0 && *I
!= ']'; I
++);
272 const char *C
= _strstrip(Buffer
);
275 if (C
[0] == '#' || C
[0] == 0)
280 if (ParseQuoteWord(C
,LineType
) == false)
281 return _error
->Error(_("Malformed line %u in source list %s (type)"),CurLine
,File
.c_str());
283 Type
*Parse
= Type::GetType(LineType
.c_str());
285 return _error
->Error(_("Type '%s' is not known on line %u in source list %s"),LineType
.c_str(),CurLine
,File
.c_str());
287 if (Parse
->ParseLine(SrcList
, C
, CurLine
, File
) == false)
293 // SourceList::FindIndex - Get the index associated with a file /*{{{*/
294 // ---------------------------------------------------------------------
296 bool pkgSourceList::FindIndex(pkgCache::PkgFileIterator File
,
297 pkgIndexFile
*&Found
) const
299 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
301 vector
<pkgIndexFile
*> *Indexes
= (*I
)->GetIndexFiles();
302 for (vector
<pkgIndexFile
*>::const_iterator J
= Indexes
->begin();
303 J
!= Indexes
->end(); J
++)
305 if ((*J
)->FindInCache(*File
.Cache()) == File
)
316 // SourceList::GetIndexes - Load the index files into the downloader /*{{{*/
317 // ---------------------------------------------------------------------
319 bool pkgSourceList::GetIndexes(pkgAcquire
*Owner
, bool GetAll
) const
321 for (const_iterator I
= SrcList
.begin(); I
!= SrcList
.end(); I
++)
322 if ((*I
)->GetIndexes(Owner
,GetAll
) == false)
327 // CNC:2003-03-03 - By Anton V. Denisov <avd@altlinux.org>.
328 // SourceList::ReadSourceDir - Read a directory with sources files
329 // Based on ReadConfigDir() /*{{{*/
330 // ---------------------------------------------------------------------
332 bool pkgSourceList::ReadSourceDir(string Dir
)
334 vector
<string
> const List
= GetListOfFilesInDir(Dir
, "list", true);
337 for (vector
<string
>::const_iterator I
= List
.begin(); I
!= List
.end(); I
++)
338 if (ReadAppend(*I
) == false)