[go: up one dir, main page]

Menu

[r13]: / client / fsclient.h  Maximize  Restore  History

Download this file

58 lines (42 with data), 1.1 kB

 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef __CBFS_CLIENT_H__
#define __CBFS_CLIENT_H__
#include <gmp.h>
#include <index.h>
#include <file.h>
#include <node.h>
#include <client.h>
#include <udt.h>
class CCBFile;
class CFSClient: public Client
{
friend class CCBFile;
public:
CCBFile* createFileHandle();
void releaseFileHandle(CCBFile* f);
int ls(vector<CIndexInfo>& filelist);
int stat(const string& filename, CFileAttr& attr);
};
class CCBFile
{
friend class CFSClient;
private:
CCBFile();
virtual ~CCBFile();
public:
int open(const string& filename, const int& mode = 3, char* cert = NULL);
int read(char* buf, const int64_t& offset, const int64_t& size);
int write(const char* buf, const int64_t& offset, const int64_t& size);
int download(const char* localpath, const bool& cont = false);
int upload(const char* localpath, const bool& cont = false);
int close();
private:
CFSClient* m_pFSClient;
string m_strServerIP;
int m_iServerPort;
CGMP m_GMP;
string m_strFileName;
int m_iProtocol; // 1 UDT 2 TCP
UDTSOCKET m_uSock;
int m_tSock;
};
#endif