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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
/*
* GraphLCD driver library
*
* network.c - Network output device
* Output goes to a network client.
*
* This file is released under the GNU General Public License. Refer
* to the COPYING file distributed with this package.
*
* (c) 2004 Andreas Regel <andreas.regel AT powarman.de>
* (c) 2011 Wolfgang Astleitner <mrwastl AT users.sourceforge.net>
*/
#include <stdio.h>
#include <syslog.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <cstring>
#include "common.h"
#include "config.h"
#include "network.h"
namespace GLCD
{
cDriverNetwork::cDriverNetwork(cDriverConfig * config)
: config(config)
{
oldConfig = new cDriverConfig(*config);
childTid = 0;
running = false;
clientConnected = false;
}
cDriverNetwork::~cDriverNetwork()
{
delete oldConfig;
}
int cDriverNetwork::Init()
{
width = config->width;
if (width <= 0)
width = 240;
height = config->height;
if (height <= 0)
height = 128;
lineSize = (width + 7) / 8;
for (unsigned int i = 0; i < config->options.size(); i++)
{
if (config->options[i].name == "")
{
}
}
newLCD = new unsigned char[lineSize * height];
if (newLCD)
memset(newLCD, 0, lineSize * height);
oldLCD = new unsigned char[lineSize * height];
if (oldLCD)
memset(oldLCD, 0, lineSize * height);
*oldConfig = *config;
// clear display
Clear();
running = true;
if (pthread_create(&childTid, NULL, (void *(*) (void *)) &ServerThread, (void *)this) != 0)
{
syslog(LOG_ERR, "%s: error creating server thread.\n", config->name.c_str());
running = false;
return 1;
}
syslog(LOG_INFO, "%s: network driver initialized.\n", config->name.c_str());
return 0;
}
int cDriverNetwork::DeInit()
{
// stop server thread
running = false;
usleep(3000000); // wait 3 seconds
pthread_cancel(childTid);
childTid = 0;
if (newLCD)
delete[] newLCD;
if (oldLCD)
delete[] oldLCD;
return 0;
}
int cDriverNetwork::CheckSetup()
{
if (config->width != oldConfig->width ||
config->height != oldConfig->height)
{
DeInit();
Init();
return 0;
}
if (config->upsideDown != oldConfig->upsideDown ||
config->invert != oldConfig->invert)
{
oldConfig->upsideDown = config->upsideDown;
oldConfig->invert = config->invert;
return 1;
}
return 0;
}
void cDriverNetwork::Clear()
{
memset(newLCD, 0, lineSize * height);
}
void cDriverNetwork::SetPixel(int x, int y, uint32_t data)
{
if (x >= width || y >= height)
return;
int pos = x % 8;
if (config->upsideDown)
{
x = width - 1 - x;
y = height - 1 - y;
pos = 7 - pos; // reverse bit position
}
if (data == GLCD::cColor::White)
newLCD[lineSize * y + x / 8] |= (1 << pos);
else
newLCD[lineSize * y + x / 8] &= ( 0xFF ^ (1 << pos) );
}
#if 0
void cDriverNetwork::Set8Pixels(int x, int y, unsigned char data)
{
if (x >= width || y >= height)
return;
if (!config->upsideDown)
{
// normal orientation
newLCD[lineSize * y + x / 8] |= data;
}
else
{
// upside down orientation
x = width - 1 - x;
y = height - 1 - y;
newLCD[lineSize * y + x / 8] |= ReverseBits(data);
}
}
#endif
void cDriverNetwork::Refresh(bool refreshAll)
{
int i;
bool refresh;
refresh = false;
if (CheckSetup() > 0)
refresh = true;
for (i = 0; i < lineSize * height; i++)
{
if (newLCD[i] != oldLCD[i])
{
refresh = true;
break;
}
}
if (refresh && clientConnected)
{
char msg[1024];
int x;
int y;
int sent;
sprintf(msg, "update begin %d %d\r\n", width, height);
sent = send(clientSocket, msg, strlen(msg), 0);
if (sent == -1)
{
syslog(LOG_ERR, "%s: error sending message: %s.\n", config->name.c_str(), strerror(errno));
clientConnected = false;
return;
}
for (y = 0; y < height; y++)
{
sprintf(msg, "update line %d ", y);
for (x = 0; x < lineSize; x++)
{
char tmp[3];
sprintf(tmp, "%02X", newLCD[y * lineSize + x]);
strcat(msg, tmp);
oldLCD[i] = newLCD[i];
}
strcat(msg, "\r\n");
sent = send(clientSocket, msg, strlen(msg), 0);
if (sent == -1)
{
syslog(LOG_ERR, "%s: error sending message: %s.\n", config->name.c_str(), strerror(errno));
clientConnected = false;
return;
}
}
sprintf(msg, "update end\r\n");
sent = send(clientSocket, msg, strlen(msg), 0);
if (sent == -1)
{
syslog(LOG_ERR, "%s: error sending message: %s.\n", config->name.c_str(), strerror(errno));
clientConnected = false;
return;
}
}
}
void * cDriverNetwork::ServerThread(cDriverNetwork * Driver)
{
int serverSocket;
struct sockaddr_in address;
socklen_t addrlen;
int clientSocket;
fd_set set;
fd_set setsave;
struct timeval timeout;
serverSocket = socket(AF_INET, SOCK_STREAM, 0);
if (serverSocket == -1)
{
syslog(LOG_ERR, "%s: error creating server socket.\n", Driver->config->name.c_str());
return NULL;
}
int y = 1;
setsockopt(serverSocket, SOL_SOCKET, SO_REUSEADDR, &y, sizeof(int));
address.sin_family = AF_INET;
address.sin_addr.s_addr = INADDR_ANY;
address.sin_port = htons(2003);
if (bind(serverSocket, (struct sockaddr *) &address, sizeof(address)) != 0)
{
syslog(LOG_ERR, "%s: error port %d is already used.\n", Driver->config->name.c_str(), 2003);
return NULL;
}
listen(serverSocket, 1);
addrlen = sizeof(struct sockaddr_in);
FD_ZERO(&set);
FD_SET(serverSocket, &set);
setsave = set;
while (Driver->running)
{
set = setsave;
timeout.tv_sec = 1;
timeout.tv_usec = 0;
if (select(FD_SETSIZE, &set, NULL, NULL, &timeout) < 0)
{
syslog(LOG_ERR, "%s: error during select.\n", Driver->config->name.c_str());
break;
}
if (FD_ISSET(serverSocket, &set))
{
clientSocket = accept(serverSocket, (struct sockaddr *) &address, &addrlen);
if (clientSocket > 0)
{
Driver->clientSocket = clientSocket;
Driver->clientConnected = true;
}
}
}
close(serverSocket);
return NULL;
}
} // end of namespace
|