blob: bb8b05759836489e553a79742f542bace3e3f277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// $Id: pkgrecords.cc,v 1.2 1998/08/19 06:16:10 jgg Exp $
/* ######################################################################
Package Records - Allows access to complete package description records
directly from the file.
##################################################################### */
/*}}}*/
// Include Files /*{{{*/
#ifdef __GNUG__
#pragma implementation "apt-pkg/pkgrecords.h"
#endif
#include <apt-pkg/pkgrecords.h>
#include <apt-pkg/debrecords.h>
#include <apt-pkg/error.h>
#include <apt-pkg/configuration.h>
/*}}}*/
// Records::pkgRecords - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* This will create the necessary structures to access the status files */
pkgRecords::pkgRecords(pkgCache &Cache) : Cache(Cache), Files(0)
{
string ListDir = _config->FindDir("Dir::State::lists");
Files = new PkgFile[Cache.HeaderP->PackageFileCount];
for (pkgCache::PkgFileIterator I = Cache.FileBegin();
I.end() == false; I++)
{
// We can not initialize if the cache is out of sync.
if (I.IsOk() == false)
{
_error->Error("Package file %s is out of sync.",I.FileName());
return;
}
// Create the file
Files[I->ID].File = new FileFd(ListDir + I.FileName(),FileFd::ReadOnly);
if (_error->PendingError() == true)
return;
// Create the parser
Files[I->ID].Parse = new debRecordParser(*Files[I->ID].File);
if (_error->PendingError() == true)
return;
}
}
/*}}}*/
// Records::~pkgRecords - Destructor /*{{{*/
// ---------------------------------------------------------------------
/* */
pkgRecords::~pkgRecords()
{
delete [] Files;
}
/*}}}*/
// Records::Lookup - Get a parser for the package version file /*{{{*/
// ---------------------------------------------------------------------
/* */
pkgRecords::Parser &pkgRecords::Lookup(pkgCache::VerFileIterator &Ver)
{
PkgFile &File = Files[Ver.File()->ID];
File.Parse->Jump(Ver);
return *File.Parse;
}
/*}}}*/
// Records::Pkgfile::~PkgFile - Destructor /*{{{*/
// ---------------------------------------------------------------------
/* */
pkgRecords::PkgFile::~PkgFile()
{
delete Parse;
delete File;
}
/*}}}*/
|