[go: up one dir, main page]

Menu

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

Download this file

79 lines (56 with data), 1.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#ifndef __CBFS_CLIENT_H__
#define __CBFS_CLIENT_H__
#include <routing.h>
#include <gmp.h>
#include <index.h>
#include <file.h>
class CCBFile;
class CFSClient
{
friend class CCBFile;
public:
CFSClient();
CFSClient(const int& protocol);
~CFSClient();
public:
int connect(const string& server, const int& port);
int close();
public:
CCBFile* createFileHandle();
void releaseFileHandle(CCBFile* f);
int stat(const string& filename, CFileAttr& attr);
int ls(vector<string>& filelist);
private:
int lookup(string filename, Node* n);
private:
string m_strServerHost;
int m_iServerPort;
CGMP* m_pGMP;
int m_iProtocol; // 1 UDT 2 TCP
private:
static const int m_iCBFSPort;
};
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