Author: jgg
Date: 1998-08-19 06:16:08 GMT
Progress meter
# Header location
SUBDIRS = deb contrib
# Header location
SUBDIRS = deb contrib
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: pkgrecords.cc,v 1.1 1998/08/09 00:51:35 jgg Exp $
+// $Id: pkgrecords.cc,v 1.2 1998/08/19 06:16:10 jgg Exp $
/* ######################################################################
Package Records - Allows access to complete package description records
/* ######################################################################
Package Records - Allows access to complete package description records
#include <apt-pkg/pkgrecords.h>
#include <apt-pkg/debrecords.h>
#include <apt-pkg/error.h>
#include <apt-pkg/pkgrecords.h>
#include <apt-pkg/debrecords.h>
#include <apt-pkg/error.h>
+#include <apt-pkg/configuration.h>
/*}}}*/
// Records::pkgRecords - Constructor /*{{{*/
/*}}}*/
// Records::pkgRecords - Constructor /*{{{*/
/* This will create the necessary structures to access the status files */
pkgRecords::pkgRecords(pkgCache &Cache) : Cache(Cache), Files(0)
{
/* 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++)
{
Files = new PkgFile[Cache.HeaderP->PackageFileCount];
for (pkgCache::PkgFileIterator I = Cache.FileBegin();
I.end() == false; I++)
{
- Files[I->ID].File = new FileFd(I.FileName(),FileFd::ReadOnly);
+ // 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;
if (_error->PendingError() == true)
return;
Files[I->ID].Parse = new debRecordParser(*Files[I->ID].File);
if (_error->PendingError() == true)
return;
Files[I->ID].Parse = new debRecordParser(*Files[I->ID].File);
if (_error->PendingError() == true)
return;
INCLUDE := $(BUILD)/include
BIN := $(BUILD)/bin
LIB := $(BIN)
INCLUDE := $(BUILD)/include
BIN := $(BUILD)/bin
LIB := $(BIN)
+OBJ := $(BUILD)/obj/$(SUBDIR)
DEP := $(OBJ)
DOC := $(BUILD)/doc
DEP := $(OBJ)
DOC := $(BUILD)/doc
SRCDIR=@top_srcdir@
SUBDIRS:=./doc ./bin ./obj ./include/apt-pkg ./include/deity
SRCDIR=@top_srcdir@
SUBDIRS:=./doc ./bin ./obj ./include/apt-pkg ./include/deity
+SUBDIRS+=./obj/doc ./obj/apt-pkg ./obj/deity ./obj/gui ./obj/cmdline
BUILD:=$(shell pwd)
export BUILD
BUILD:=$(shell pwd)
export BUILD
# Bring in the default rules
include ../buildlib/defaults.mak
# Bring in the default rules
include ../buildlib/defaults.mak
# Bring in the default rules
include ../buildlib/defaults.mak
# Bring in the default rules
include ../buildlib/defaults.mak