118 lines
3.5 KiB
C++
118 lines
3.5 KiB
C++
// CkFtpProgress.h: interface for the CkFtpProgress class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _CKFTP2PROGRESS_H
|
|
#define _CKFTP2PROGRESS_H
|
|
|
|
|
|
#include "CkBaseProgress.h"
|
|
|
|
/*
|
|
|
|
To receive progress events (callbacks), create a C++ class that
|
|
inherits this one and provides one or more overriding implementations
|
|
for the events you wish to receive.
|
|
|
|
*/
|
|
|
|
|
|
// When creating an application class that inherits the CkFtp2Progress base class, use the CK_FTP2PROGRESS_API
|
|
// definition to declare the overrides in the class header. This has the effect that if for
|
|
// some unforeseen and unlikely reason the Chilkat event callback API changes, or if new
|
|
// callback methods are added in a future version, then you'll discover them at compile time
|
|
// after updating to the new Chilkat version.
|
|
// For example:
|
|
/*
|
|
class MyProgress : public CkFtp2Progress
|
|
{
|
|
public:
|
|
CK_FTP2PROGRESS_API
|
|
|
|
...
|
|
};
|
|
*/
|
|
#define CK_FTP2PROGRESS_API \
|
|
void BeginDownloadFile(const char *pathUtf8, bool *skip);\
|
|
void EndDownloadFile(const char *pathUtf8, __int64 numBytes);\
|
|
void VerifyDownloadDir(const char *pathUtf8, bool *skip);\
|
|
void BeginUploadFile(const char *pathUtf8, bool *skip);\
|
|
void EndUploadFile(const char *pathUtf8, __int64 numBytes);\
|
|
void VerifyUploadDir(const char *pathUtf8, bool *skip);\
|
|
void VerifyDeleteDir(const char *pathUtf8, bool *skip);\
|
|
void VerifyDeleteFile(const char *pathUtf8, bool *skip);\
|
|
void UploadRate(__int64 byteCount, unsigned long bytesPerSec);\
|
|
void DownloadRate(__int64 byteCount, unsigned long bytesPerSec);
|
|
|
|
|
|
|
|
#if !defined(__sun__) && !defined(__sun)
|
|
#pragma pack (push, 8)
|
|
#endif
|
|
|
|
class CK_VISIBLE_PUBLIC CkFtp2Progress : public CkBaseProgress
|
|
{
|
|
public:
|
|
|
|
CkFtp2Progress() { }
|
|
virtual ~CkFtp2Progress() { }
|
|
|
|
virtual void BeginDownloadFile(const char *pathUtf8, bool *skip)
|
|
{
|
|
bool b = BeginDownloadFile(pathUtf8);
|
|
if (skip) *skip = b;
|
|
}
|
|
virtual bool BeginDownloadFile(const char * /*pathUtf8*/) { return false; }
|
|
|
|
virtual void EndDownloadFile(const char * /*pathUtf8*/, __int64 /*numBytes*/) { }
|
|
|
|
virtual void VerifyDownloadDir(const char *pathUtf8, bool *skip)
|
|
{
|
|
bool b = VerifyDownloadDir(pathUtf8);
|
|
if (skip) *skip = b;
|
|
}
|
|
virtual bool VerifyDownloadDir(const char * /*pathUtf8*/) { return false; }
|
|
|
|
virtual void BeginUploadFile(const char *pathUtf8, bool *skip)
|
|
{
|
|
bool b = BeginUploadFile(pathUtf8);
|
|
if (skip) *skip = b;
|
|
}
|
|
virtual bool BeginUploadFile(const char * /*pathUtf8*/) { return false; }
|
|
|
|
virtual void EndUploadFile(const char * /*pathUtf8*/, __int64 /*numBytes*/) { }
|
|
|
|
virtual void VerifyUploadDir(const char *pathUtf8, bool *skip)
|
|
{
|
|
bool b = VerifyUploadDir(pathUtf8);
|
|
if (skip) *skip = b;
|
|
}
|
|
virtual bool VerifyUploadDir(const char * /*pathUtf8*/) { return false; }
|
|
|
|
virtual void VerifyDeleteDir(const char *pathUtf8, bool *skip)
|
|
{
|
|
bool b = VerifyDeleteDir(pathUtf8);
|
|
if (skip) *skip = b;
|
|
}
|
|
virtual bool VerifyDeleteDir(const char * /*pathUtf8*/) { return false; }
|
|
|
|
virtual void VerifyDeleteFile(const char *pathUtf8, bool *skip)
|
|
{
|
|
bool b = VerifyDeleteFile(pathUtf8);
|
|
if (skip) *skip = b;
|
|
}
|
|
virtual bool VerifyDeleteFile(const char * /*pathUtf8*/) { return false; }
|
|
|
|
virtual void UploadRate(__int64 /*byteCount*/, unsigned long /*bytesPerSec*/) { }
|
|
virtual void DownloadRate(__int64 /*byteCount*/, unsigned long /*bytesPerSec*/) { }
|
|
|
|
|
|
|
|
};
|
|
#if !defined(__sun__) && !defined(__sun)
|
|
#pragma pack (pop)
|
|
#endif
|
|
|
|
|
|
#endif
|