libapt-pkg-dev  v0.9.7.5ubuntu5.4
Debian+Ubuntu APT Package Management
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pkgAcquire::Item Class Referenceabstract

Represents the process by which a pkgAcquire object should {{{ retrieve a file or a collection of files. More...

#include <acquire-item.h>

Inheritance diagram for pkgAcquire::Item:
Collaboration diagram for pkgAcquire::Item:

Public Types

enum  ItemState {
  StatIdle,
  StatFetching,
  StatDone,
  StatError,
  StatAuthError,
  StatTransientNetworkError
}
 The current status of this item. More...
 

Public Member Functions

 Item (pkgAcquire *Owner)
 Initialize an item. More...
 
virtual ~Item ()
 Remove this item from its owner's queue by invoking pkgAcquire::Remove. More...
 
void AddWeakPointer (WeakPointable **weakptr)
 Add a new weak pointer. More...
 
virtual std::string Custom600Headers ()
 Custom headers to be sent to the fetch process. More...
 
virtual std::string DescURI ()=0
 A "descriptive" URI-like string. More...
 
virtual void Done (std::string Message, unsigned long long Size, std::string Hash, pkgAcquire::MethodConfig *Cnf)
 Invoked by the acquire worker when the object was fetched successfully. More...
 
virtual void Failed (std::string Message, pkgAcquire::MethodConfig *Cnf)
 Invoked by the acquire worker when the object couldn't be fetched. More...
 
virtual void Finished ()
 Invoked by the worker when the download is completely done. More...
 
pkgAcquireGetOwner ()
 
virtual std::string HashSum ()
 HashSum. More...
 
virtual bool IsTrusted ()
 
void RemoveWeakPointer (WeakPointable **weakptr)
 Remove the weak pointer from the list of weak pointers. More...
 
void ReportMirrorFailure (std::string FailCode)
 Report mirror problem. More...
 
virtual std::string ShortDesc ()
 Short item description. More...
 
virtual void Start (std::string Message, unsigned long long Size)
 Invoked when the worker starts to fetch this object. More...
 

Public Attributes

bool Complete
 If true, the entire object has been successfully fetched. More...
 
std::string DestFile
 The name of the file into which the retrieved object will be written. More...
 
std::string ErrorText
 Contains a textual description of the error encountered if Status is StatError or StatAuthError. More...
 
unsigned long long FileSize
 The size of the object to fetch. More...
 
unsigned long ID
 A client-supplied unique identifier. More...
 
bool Local
 If true, the URI of this object is "local". More...
 
const char * Mode
 If not NULL, contains the name of a subprocess that is operating on this object (for instance, "gzip" or "gpgv"). More...
 
unsigned long long PartialSize
 How much of the object was already fetched. More...
 
unsigned int QueueCounter
 The number of fetch queues into which this item has been inserted. More...
 
enum pkgAcquire::Item::ItemState Status
 
std::string UsedMirror
 

Protected Member Functions

void Dequeue ()
 Remove this item from its owner's queue. More...
 
void QueueURI (ItemDesc &Item)
 Insert this item into its owner's queue. More...
 
void Rename (std::string From, std::string To)
 Rename a file without modifying its timestamp. More...
 

Protected Attributes

pkgAcquireOwner
 The acquire object with which this item is associated. More...
 

Detailed Description

Represents the process by which a pkgAcquire object should {{{ retrieve a file or a collection of files.

By convention, Item subclasses should insert themselves into the acquire queue when they are created by calling QueueURI(), and remove themselves by calling Dequeue() when either Done() or Failed() is invoked. Item objects are also responsible for notifying the download progress indicator (accessible via Owner->Log) of their status.

See Also
pkgAcquire

Member Enumeration Documentation

The current status of this item.

Enumerator
StatIdle 

The item is waiting to be downloaded.

StatFetching 

The item is currently being downloaded.

StatDone 

The item has been successfully downloaded.

StatError 

An error was encountered while downloading this item.

StatAuthError 

The item was downloaded but its authenticity could not be verified.

StatTransientNetworkError 

The item was could not be downloaded because of a transient network error (e.g.

network down)

Constructor & Destructor Documentation

pkgAcquire::Item::Item ( pkgAcquire Owner)

Initialize an item.

Adds the item to the list of items known to the acquire process, but does not place it into any fetch queues (you must manually invoke QueueURI() to do so).

Initializes all fields of the item other than Owner to 0, false, or the empty string.

Parameters
OwnerThe new owner of this item.
virtual pkgAcquire::Item::~Item ( )
virtual

Remove this item from its owner's queue by invoking pkgAcquire::Remove.

Member Function Documentation

void WeakPointable::AddWeakPointer ( WeakPointable **  weakptr)
inlineinherited

Add a new weak pointer.

References WeakPointable::pointers.

virtual std::string pkgAcquire::Item::Custom600Headers ( )
inlinevirtual

Custom headers to be sent to the fetch process.

Returns
a string containing RFC822-style headers that are to be inserted into the 600 URI Acquire message sent to the fetch subprocess. The headers are inserted after a newline-less line, so they should (if nonempty) have a leading newline and no trailing newline.

Reimplemented in pkgAcqFile, pkgAcqMetaClearSig, pkgAcqMetaIndex, pkgAcqMetaSig, pkgAcqIndexTrans, pkgAcqIndex, pkgAcqDiffIndex, and pkgAcqSubIndex.

void pkgAcquire::Item::Dequeue ( )
inlineprotected

Remove this item from its owner's queue.

References pkgAcquire::Dequeue(), and Owner.

Here is the call graph for this function:

virtual std::string pkgAcquire::Item::DescURI ( )
pure virtual

A "descriptive" URI-like string.

Returns
a URI that should be used to describe what is being fetched.

Implemented in pkgAcqFile, pkgAcqArchive, pkgAcqMetaIndex, pkgAcqMetaSig, pkgAcqIndex, pkgAcqIndexDiffs, pkgAcqDiffIndex, and pkgAcqSubIndex.

Referenced by ShortDesc().

Here is the caller graph for this function:

virtual void pkgAcquire::Item::Done ( std::string  Message,
unsigned long long  Size,
std::string  Hash,
pkgAcquire::MethodConfig Cnf 
)
virtual

Invoked by the acquire worker when the object was fetched successfully.

Note that the object might not have been written to DestFile; check for the presence of an Alt-Filename entry in Message to find the file to which it was really written.

Done is often used to switch from one stage of the processing to the next (e.g. fetching, unpacking, copying). It is one branch of the continuation of the fetch process.

Parameters
MessageData from the acquire method. Use LookupTag() to parse it.
SizeThe size of the object that was fetched.
HashThe HashSum of the object that was fetched.
CnfThe method via which the object was fetched.
See Also
pkgAcqMethod

Reimplemented in pkgAcqFile, pkgAcqArchive, pkgAcqMetaIndex, pkgAcqMetaSig, pkgAcqIndex, pkgAcqIndexDiffs, pkgAcqDiffIndex, and pkgAcqSubIndex.

virtual void pkgAcquire::Item::Failed ( std::string  Message,
pkgAcquire::MethodConfig Cnf 
)
virtual

Invoked by the acquire worker when the object couldn't be fetched.

This is a branch of the continuation of the fetch process.

Parameters
MessageAn RFC822-formatted message from the acquire method describing what went wrong. Use LookupTag() to parse it.
CnfThe method via which the worker tried to fetch this object.
See Also
pkgAcqMethod

Reimplemented in pkgAcqFile, pkgAcqArchive, pkgAcqMetaClearSig, pkgAcqMetaIndex, pkgAcqMetaSig, pkgAcqIndexTrans, pkgAcqIndex, pkgAcqIndexDiffs, pkgAcqDiffIndex, and pkgAcqSubIndex.

virtual void pkgAcquire::Item::Finished ( )
inlinevirtual

Invoked by the worker when the download is completely done.

Reimplemented in pkgAcqArchive.

pkgAcquire* pkgAcquire::Item::GetOwner ( )
inline
Returns
the acquire process with which this item is associated.

References Owner.

virtual std::string pkgAcquire::Item::HashSum ( )
inlinevirtual

HashSum.

Returns
the HashSum of this object, if applicable; otherwise, an empty string.

Reimplemented in pkgAcqFile, pkgAcqArchive, and pkgAcqIndex.

virtual bool pkgAcquire::Item::IsTrusted ( )
inlinevirtual
Returns
true if this object is being fetched from a trusted source.

Reimplemented in pkgAcqArchive.

void pkgAcquire::Item::QueueURI ( ItemDesc Item)
inlineprotected

Insert this item into its owner's queue.

Parameters
ItemDescMetadata about this item (its URI and description).

References pkgAcquire::Enqueue(), and Owner.

Here is the call graph for this function:

void WeakPointable::RemoveWeakPointer ( WeakPointable **  weakptr)
inlineinherited

Remove the weak pointer from the list of weak pointers.

References WeakPointable::pointers.

void pkgAcquire::Item::Rename ( std::string  From,
std::string  To 
)
protected

Rename a file without modifying its timestamp.

Many item methods call this as their final action.

Parameters
FromThe file to be renamed.
ToThe new name of #From. If #To exists it will be overwritten.
void pkgAcquire::Item::ReportMirrorFailure ( std::string  FailCode)

Report mirror problem.

This allows reporting mirror failures back to a centralized server. The apt-report-mirror-failure script is called for this

Parameters
FailCodeA short failure string that is send
virtual std::string pkgAcquire::Item::ShortDesc ( )
inlinevirtual

Short item description.

Returns
a brief description of the object being fetched.

Reimplemented in pkgAcqArchive.

References DescURI().

Here is the call graph for this function:

virtual void pkgAcquire::Item::Start ( std::string  Message,
unsigned long long  Size 
)
virtual

Invoked when the worker starts to fetch this object.

Parameters
MessageRFC822-formatted data from the worker process. Use LookupTag() to parse it.
SizeThe size of the object being fetched.
See Also
pkgAcqMethod

Member Data Documentation

bool pkgAcquire::Item::Complete

If true, the entire object has been successfully fetched.

Subclasses should set this to true when appropriate.

std::string pkgAcquire::Item::DestFile

The name of the file into which the retrieved object will be written.

std::string pkgAcquire::Item::ErrorText

Contains a textual description of the error encountered if Status is StatError or StatAuthError.

unsigned long long pkgAcquire::Item::FileSize

The size of the object to fetch.

unsigned long pkgAcquire::Item::ID

A client-supplied unique identifier.

This field is initalized to 0; it is meant to be filled in by clients that wish to use it to uniquely identify items.

Todo:
it's unused in apt itself
bool pkgAcquire::Item::Local

If true, the URI of this object is "local".

The only effect of this field is to exclude the object from the download progress indicator's overall statistics.

const char* pkgAcquire::Item::Mode

If not NULL, contains the name of a subprocess that is operating on this object (for instance, "gzip" or "gpgv").

pkgAcquire* pkgAcquire::Item::Owner
protected

The acquire object with which this item is associated.

Referenced by Dequeue(), GetOwner(), and QueueURI().

unsigned long long pkgAcquire::Item::PartialSize

How much of the object was already fetched.

unsigned int pkgAcquire::Item::QueueCounter

The number of fetch queues into which this item has been inserted.

There is one queue for each source from which an item could be downloaded.

See Also
pkgAcquire
enum pkgAcquire::Item::ItemState pkgAcquire::Item::Status
std::string pkgAcquire::Item::UsedMirror

The documentation for this class was generated from the following file: