-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwin32_rfdmap.h
117 lines (98 loc) · 4.75 KB
/
win32_rfdmap.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*
* Copyright (c), Microsoft Open Technologies, Inc.
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include <errno.h>
#define INCL_WINSOCK_API_PROTOTYPES 0 // Important! Do not include Winsock API definitions to avoid conflicts with API entry points defined below.
#include <WinSock2.h>
#include "ws2tcpip.h"
#include <map>
#include <queue>
using namespace std;
/* In UNIX File Descriptors increment by one for each new one. Windows handles
* do not follow the same rule. Additionally UNIX uses a 32-bit int to
* represent a FD while Windows_x64 uses a 64-bit value to represent a handle.
* There is no documented guarantee that a Windows SOCKET value will be
* entirely constrained in 32-bits (though it seems to be currently). SOCKETs
* should be treated as an opaque value and not be cast to a 32-bit int. In
* order to not break existing code that relies on the maximum FD value to
* indicate the number of handles that have been created (and other UNIXisms),
* this code maps SOCKET handles to a virtual FD number starting at 3 (0,1 and
* 2 are reserved for stdin, stdout and stderr).
*/
#define INVALID_FD -1
typedef int RFD; // Redis File Descriptor
typedef struct {
SOCKET socket;
void* state;
int flags;
SOCKADDR_STORAGE socketAddrStorage;
} SocketInfo;
class RFDMap {
public:
static RFDMap& getInstance();
private:
RFDMap();
RFDMap(RFDMap const&); // Don't implement to guarantee singleton semantics
void operator=(RFDMap const&); // Don't implement to guarantee singleton semantics
private:
map<SOCKET, RFD> SocketToRFDMap;
map<int, RFD> CrtFDToRFDMap;
map<RFD, SocketInfo> RFDToSocketInfoMap;
map<RFD, int> RFDToCrtFDMap;
queue<RFD> RFDRecyclePool;
private:
CRITICAL_SECTION mutex;
const static int FIRST_RESERVED_RFD_INDEX = 0;
const static int LAST_RESERVED_RFD_INDEX = 2;
int next_available_rfd = LAST_RESERVED_RFD_INDEX + 1;
private:
/* Gets the next available Redis File Descriptor. Redis File Descriptors
* are always non-negative integers, with the first three being reserved
* for stdin(0), stdout(1) and stderr(2). */
RFD getNextRFDAvailable();
public:
/* Adds a socket to SocketToRFDMap and to RFDToSocketInfoMap.
* Returns the RFD value for the socket.
* Returns INVALID_RFD if the socket is already added to the collection. */
RFD addSocket(SOCKET socket);
/* Removes a socket from SocketToRFDMap. */
void removeSocketToRFD(SOCKET socket);
/* Removes a RFD from RFDToSocketInfoMap.
* It frees the associated RFD adding it to RFDRecyclePool. */
void removeRFDToSocketInfo(RFD rfd);
/* Adds a CRT fd (used with low-level CRT posix file functions) to RFDToCrtFDMap.
* Returns the RFD value for the crt_fd.
* Returns the existing RFD if the crt_fd is already present in the collection. */
RFD addCrtFD(int crt_fd);
/* Removes a socket from RFDToCrtFDMap.
* It frees the associated RFD adding it to RFDRecyclePool. */
void removeCrtFD(int crt_fd);
/* Returns the socket associated with a RFD.
* Returns INVALID_SOCKET if the socket is not found. */
SOCKET lookupSocket(RFD rfd);
/* Returns a pointer to the socket info structure associated with a RFD.
* Return NULL if the info socket info structure is not found. */
SocketInfo* lookupSocketInfo(RFD rfd);
/* Returns the crt_fd associated with a RFD.
* Returns INVALID_FD if the crt_fd is not found. */
int lookupCrtFD(RFD rfd);
};