blob: 7284b2421fda61f37f87277abbb18d93f0686149 (
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
|
#ifndef __COPYJOB_H__
#define __COPYJOB_H__
#include <sys/time.h>
#include <Task.h>
#include <Handle.h>
#define COPY_BUFSIZ 4096
class CopyJob : public Task {
public:
CopyJob(Handle *, Handle *, ssize_t = -1, bool = false, bool = false, int = -1);
virtual ~CopyJob();
virtual int Do() throw (GeneralException);
virtual String GetName();
private:
Handle * s, * d;
bool ds, dd;
ssize_t siz, cursiz;
char buffer[COPY_BUFSIZ + 1];
int r, w, tw, shape;
struct timeval start;
};
#endif
|