-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathStreamPipe.h
55 lines (37 loc) · 1.34 KB
/
StreamPipe.h
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
#pragma once
#include "Interface/Pipe.h"
#include "socket_header.h"
#include <vector>
class CStreamPipe : public IPipe
{
public:
CStreamPipe( SOCKET pSocket);
~CStreamPipe();
virtual size_t Read(char *buffer, size_t bsize, int timeoutms);
virtual bool Write(const char *buffer, size_t bsize, int timeoutms, bool flush);
virtual size_t Read(std::string *ret, int timeoutms);
virtual bool Write(const std::string &str, int timeoutms, bool flush);
virtual bool isWritable(int timeoutms);
virtual bool isReadable(int timeoutms);
virtual bool isReadOrWritable(int timeoutms);
virtual bool hasError(void);
virtual void shutdown(void);
virtual size_t getNumWaiters() {
return 0;
};
virtual size_t getNumElements(void){ return 0;};
SOCKET getSocket(void);
virtual void addThrottler(IPipeThrottler *throttler);
virtual void addOutgoingThrottler(IPipeThrottler *throttler);
virtual void addIncomingThrottler(IPipeThrottler *throttler);
virtual _i64 getTransferedBytes(void);
virtual void resetTransferedBytes(void);
virtual bool Flush( int timeoutms=-1 );
bool doThrottle(size_t new_bytes, bool outgoing, bool wait);
private:
SOCKET s;
_i64 transfered_bytes;
bool has_error;
std::vector<IPipeThrottler*> incoming_throttlers;
std::vector<IPipeThrottler*> outgoing_throttlers;
};