summaryrefslogtreecommitdiff
path: root/vdr-vdrmanager/select.cpp
blob: 06d9103e3e8cc4734a935d41ff9269269013917a (plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
 * select
 */

#include <sys/select.h>
#include <vdr/plugin.h>
#include <vdr/timers.h>
#include "sock.h"
#include "select.h"
#include "handler.h"
#include "helpers.h"

struct node {
	cVdrmanagerClientSocket * socket;
	node * next;
};

cSelect::cSelect() {
	serversocket = NULL;
	clientsockets = NULL;
	clientsocketcount = 0;
	handler = new cHandler;
	pollfds = NULL;
	stopped = false;
	nexttimer = 0;
	shutdown = 0;
}

cSelect::~cSelect() {
	if (serversocket)
		delete serversocket;

	while (clientsockets) {
		node * next = clientsockets->next;
		delete clientsockets->socket;
		delete clientsockets;
		clientsockets = next;
	}

	if (handler)
		delete handler;

	if (pollfds)
		delete pollfds;
}

void cSelect::SetServerSocket(cVdrmanagerServerSocket * sock) {
	serversocket = sock;
}

void cSelect::AddClientSocket(cVdrmanagerClientSocket * sock) {
	// remember socket
	node * newnode = new node;
	newnode->next = clientsockets;
	newnode->socket = sock;
	clientsockets = newnode;
	clientsocketcount++;
}

void cSelect::RemoveClientSocket(cVdrmanagerClientSocket * sock) {
	node * curnode = clientsockets;
	node * lastnode = NULL;
	while (curnode) {
		if (curnode->socket == sock) {
			// unlink node
			if (lastnode)
				lastnode->next = curnode->next;
			else
				clientsockets = curnode->next;

			// free socket and node
			delete curnode->socket;
			delete curnode;

			clientsocketcount--;
			break;
		}
		lastnode = curnode;
		curnode = curnode->next;
	}

	if (clientsockets) {
		curnode = clientsockets;
		while (curnode) {
			curnode = curnode->next;
		}
	}
}

cVdrmanagerClientSocket * cSelect::GetClientSocket(int sock) {
	node * curnode = clientsockets;
	while (curnode) {
		if (curnode->socket->GetSocket() == sock)
			return curnode->socket;
		curnode = curnode->next;
	}

	return NULL;
}

bool cSelect::Action() {
	for (; !stopped;) {
		if (!Poll())
			return false;
	}

	return true;
}

void cSelect::CreatePollfds() {
	// construct pollfd array
	// we need one pollfd for the eventpipe,
	// the serversocket and each clientsocket
	pollfds = new struct pollfd[clientsocketcount + 1];
	pollfds[0].fd = serversocket->GetSocket();
	pollfds[0].events = POLLIN;

	node * curnode = clientsockets;
	int i = 1;
	while (curnode) {
		pollfds[i].fd = curnode->socket->GetSocket();
		pollfds[i].events = POLLIN;
		if (curnode->socket->WritePending())
			pollfds[i].events |= POLLOUT;
		pollfds[i++].revents = 0;
		curnode = curnode->next;
	}
}

bool cSelect::Poll() {
	// poll for events
	CreatePollfds();
	int rc = 0;
	while ((rc = poll(pollfds, clientsocketcount + 1, -1)) < 0) {
		if (errno != EINTR)
			break;
	}
	if (rc < 0) {
		LOG_ERROR;
		delete pollfds;
		return false;
	}

	// timeout?
	if (rc == 0)
		return true;

	// client requests or outstanding writes
	for (int i = 1; i < clientsocketcount + 1; i++) {
		cVdrmanagerClientSocket * sock = GetClientSocket(pollfds[i].fd);
		if (sock) {
			if (pollfds[i].revents & (POLLIN | POLLHUP)) {
				// client request
				handler->HandleClientRequest(sock);

				// disconnect?
				if (sock->Disconnected()) {
					RemoveClientSocket(sock);
				}
			} else if (pollfds[i].revents & POLLOUT) {
				// possibly outstanding writes
				sock->Flush();
			}
		}
	}

	// new client?
	if (pollfds[0].revents & POLLIN) {
		// get client socket
		cVdrmanagerClientSocket * sock = serversocket->Accept();
		if (sock) {
			// Add client socket
			AddClientSocket(sock);
			// Send current data
			handler->HandleNewClient(sock);
		}
	}

	delete pollfds;

	return true;
}