TDME2
1.9.121
src
tdme
os
network
platform
fallback
KernelEventMechanismPSD.h
Go to the documentation of this file.
1
#pragma once
2
3
#if defined(_WIN32)
4
#include <winsock2.h>
5
#else
6
#include <sys/select.h>
7
#endif
8
9
#include <map>
10
#include <vector>
11
12
#include <
tdme/tdme.h
>
13
#include <
tdme/os/network/fwd-tdme.h
>
14
#include <
tdme/os/network/platform/fallback/fwd-tdme.h
>
15
#include <
tdme/os/network/NIOInterest.h
>
16
17
#include <
tdme/os/threading/Mutex.h
>
18
19
using
std::map;
20
using
std::vector;
21
22
using
tdme::os::threading::Mutex
;
23
24
/**
25
* Fallback/select kernel event mechanism platform specific data
26
* @author Andreas Drewke
27
*/
28
class
tdme::os::network::platform::fallback::KernelEventMechanismPSD
{
29
friend
class
tdme::os::network::KernelEventMechanism
;
30
31
private
:
32
struct
Event
{
33
int
descriptor
;
34
NIOInterest
interest
;
35
void
*
cookie
;
36
};
37
38
/**
39
* @brief Public constructor
40
*/
41
KernelEventMechanismPSD
() :
42
maxFd
(0),
43
fdsMutex
(
"kemfallbackpsdfdmutex"
)
44
{
45
//
46
}
47
48
int
maxFd
;
49
Mutex
fdsMutex
;
50
fd_set
rfds
;
51
fd_set
wfds
;
52
map<int, void*>
fds
;
53
vector<Event>
events
;
54
};
Mutex.h
NIOInterest.h
tdme::os::network::KernelEventMechanism
Interface to kernel event mechanismns.
Definition:
KernelEventMechanism.h:17
tdme::os::network::platform::fallback::KernelEventMechanismPSD
Fallback/select kernel event mechanism platform specific data.
Definition:
KernelEventMechanismPSD.h:28
tdme::os::network::platform::fallback::KernelEventMechanismPSD::KernelEventMechanismPSD
KernelEventMechanismPSD()
Public constructor.
Definition:
KernelEventMechanismPSD.h:41
tdme::os::network::platform::fallback::KernelEventMechanismPSD::maxFd
int maxFd
Definition:
KernelEventMechanismPSD.h:48
tdme::os::network::platform::fallback::KernelEventMechanismPSD::wfds
fd_set wfds
Definition:
KernelEventMechanismPSD.h:51
tdme::os::network::platform::fallback::KernelEventMechanismPSD::rfds
fd_set rfds
Definition:
KernelEventMechanismPSD.h:50
tdme::os::network::platform::fallback::KernelEventMechanismPSD::fds
map< int, void * > fds
Definition:
KernelEventMechanismPSD.h:52
tdme::os::network::platform::fallback::KernelEventMechanismPSD::events
vector< Event > events
Definition:
KernelEventMechanismPSD.h:53
tdme::os::network::platform::fallback::KernelEventMechanismPSD::fdsMutex
Mutex fdsMutex
Definition:
KernelEventMechanismPSD.h:49
tdme::os::threading::Mutex
Mutex implementation.
Definition:
Mutex.h:27
tdme::os::network::NIOInterest
uint8_t NIOInterest
type definiton for network UI interest
Definition:
NIOInterest.h:10
fwd-tdme.h
fwd-tdme.h
tdme::os::network::platform::fallback::KernelEventMechanismPSD::Event
Definition:
KernelEventMechanismPSD.h:32
tdme::os::network::platform::fallback::KernelEventMechanismPSD::Event::interest
NIOInterest interest
Definition:
KernelEventMechanismPSD.h:34
tdme::os::network::platform::fallback::KernelEventMechanismPSD::Event::cookie
void * cookie
Definition:
KernelEventMechanismPSD.h:35
tdme::os::network::platform::fallback::KernelEventMechanismPSD::Event::descriptor
int descriptor
Definition:
KernelEventMechanismPSD.h:33
tdme.h
Generated by
1.9.3