Znav | ||||
---|---|---|---|---|
|
IcePatch2 includes a pair of C++ classes that simplify the task of writing your own patch client, along with a Microsoft Foundation Classes (MFC) example that shows how to use these classes. You can find the MFC example in the subdirectory demo/IcePatch2/MFC
of your Ice distribution.
The remainder of this section discusses the classes. To incorporate them into a custom patch client, your program must include the header file IcePatch2/ClientUtil.h
and link with the IcePatch2
library.
On this page:
Table of Contents | ||
---|---|---|
|
Performing a Patch
The Patcher
class encapsulates all of the patching logic required by a client:
Wiki Markup |
---|
{zcode:cpp} namespace IcePatch2 { class Patcher : ... { public: Patcher(const Ice::CommunicatorPtr& communicator, const PatcherFeedbackPtr& feedback); Patcher(const FileServerPrx& server, const PatcherFeedbackPtr& feedback, const std::string& dataDir, bool thorough, Ice::Int chunkSize, Ice::Int remove); bool prepare(); bool patch(const std::string& dir); void finish(); }; typedef IceUtil::Handle<Patcher> PatcherPtr; } {zcode} |
Ztop |
---|
Constructing a Patcher
The constructors provide two ways of configuring a Patcher
instance. The first form obtains the following IcePatch2 configuration properties from the supplied communicator:
IcePatch2.InstanceName
IcePatch2.Endpoints
IcePatch2.Directory
IcePatch2.Thorough
IcePatch2.ChunkSize
IcePatch2.Remove
The second constructor accepts arguments that correspond to each of these properties.
Both constructors also accept a PatcherFeedback
object, which allows the client to monitor the progress of the patch.
Ztop |
---|
Executing the Patch
Patcher
provides three methods that reflect the three stages of a patch:
bool prepare()
The first stage of a patch includes reading the contents of the checksum file (if present), retrieving the file information from the server, and examining the local data directory to compose the list of files that require updates. ThePatcherFeedback
object is notified incrementally about each local task and has the option of aborting the patch at any time. This method returns true if patch preparation completed successfully, or false if thePatcherFeedback
object aborted the patch. If an error occurs,prepare
raises an exception in the form of astd::string
containing a description of the problem.
bool patch(const std::string& dir)
The second stage of a patch updates the files in the local data directory. If thedir
argument is an empty string or"."
,patch
updates the entire data directory. Otherwise,patch
updates only those files whose path names begin with the path indir
. For each file requiring an update,Patcher
downloads its compressed data from the server and writes it to the local data directory. ThePatcherFeedback
object is notified about the progress of each file and, as in the preparation stage, may abort the patch if necessary. This method returns true if patching completed successfully, or false if thePatcherFeedback
object aborted the patch. If an error occurs,patch
raises an exception in the form of astd::string
containing a description of the problem.
void finish()
The final stage of a patch writes a new checksum file to the local data directory. If an error occurs,finish
raises an exception in the form of astd::string
containing a description of the problem.
The code below demonstrates a simple patch client:
Wiki Markup |
---|
{zcode:cpp} #include <IcePatch2/ClientUtil.h> ... Ice::CommunicatorPtr communicator = ...; IcePatch2::PatcherFeedbackPtr feedback = new MyPatcherFeedbackI; IcePatch2::PatcherPtr patcher = new IcePatch2::Patcher(communicator, feedback); try { bool aborted = !patcher->prepare(); if(!aborted) aborted = !patcher->patch(""); if(!aborted) patcher->finish(); if(aborted) cerr << "Patch aborted" << endl; } catch(const string& reason) { cerr << "Patch error: " << reason << endl; } {zcode} |
For a more sophisticated example, see demo/IcePatch2/MFC
in your Ice distribution.
Ztop |
---|
Monitoring Patch Progress
The class PatcherFeedback
is an abstract base class that allows you to monitor the progress of a Patcher
object. The class declaration is shown below:
Wiki Markup |
---|
{zcode:cpp} namespace IcePatch2 { class PatcherFeedback : ... { public: virtual bool noFileSummary(const std::string& reason) = 0; virtual bool checksumStart() = 0; virtual bool checksumProgress(const std::string& path) = 0; virtual bool checksumEnd() = 0; virtual bool fileListStart() = 0; virtual bool fileListProgress(Ice::Int percent) = 0; virtual bool fileListEnd() = 0; virtual bool patchStart( const std::string& path, Ice::Long size, Ice::Long updated, Ice::Long total) = 0; virtual bool patchProgress( Ice::Long pos, Ice::Long size, Ice::Long updated, Ice::Long total) = 0; virtual bool patchEnd() = 0; }; typedef IceUtil::Handle<PatcherFeedback> PatcherFeedbackPtr; } {zcode} |
Each of these methods returns a boolean value:
- true allows
Patcher
to continue - false directs
Patcher
to abort the patch.
The methods are described below.
bool noFileSummary(const std::string& reason)
Invoked when the local checksum file cannot be found. Returning true initiates a thorough patch, while returning false causesPatcher::prepare
to return false.
bool checksumStart()
bool checksumProgress(const std::string& path)
bool checksumEnd()
Invoked byPatcher::prepare
during a thorough patch. ThechecksumProgress
method is invoked as each file's checksum is being computed.
bool fileListStart()
bool fileListProgress(Ice::Int percent)
bool fileListEnd()
Invoked byPatcher::prepare
when collecting the list of files to be updated. Thepercent
argument tofileListProgress
indicates how much of the collection process has completed so far.
bool patchStart(const std::string& path, Ice::Long size, Ice::Long updated, Ice::Long total)
bool patchProgress(Ice::Long pos, Ice::Long size, Ice::Long updated, Ice::Long total)
bool patchEnd()
For each file that requires updating,Patcher::patch
invokespatchStart
to indicate the beginning of the patch,patchProgress
one or more times as chunks of the file are downloaded and written, and finallypatchEnd
to signal the completion of the file's patch. Thepath
argument supplies the path name of the file, andsize
provides the file's compressed size. Thepos
argument denotes the number of bytes written so far, whileupdated
andtotal
represent the cumulative number of bytes updated so far and the total number of bytes to be updated, respectively, of the entire patch operation.Ztop
See Also
Zret |
---|
Znav | ||||
---|---|---|---|---|
|