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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
// SocketInputBase.cpp
//
// (C) Copyright Seb Wills 2005
#include "../Common/Common.h"
#include "SocketInputBase.h"
#include "DasherInterfaceBase.h"
#include <string.h>
#include <errno.h>
#include <stdarg.h>
#ifdef _WIN32
#include <winsock2.h>
#define DASHER_SOCKET_CLOSE_FUNCTION closesocket
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <unistd.h>
#define DASHER_SOCKET_CLOSE_FUNCTION close
#endif
using namespace Dasher;
static SModuleSettings sSettings[] = {
{LP_SOCKET_PORT, T_LONGSPIN, 0, 65535, 1, 10, _("Port:")},
{SP_SOCKET_INPUT_X_LABEL, T_STRING, -1, -1, -1, -1, _("X label:")},
{LP_SOCKET_INPUT_X_MIN, T_LONGSPIN, -2147480000, 2147480000, 1000, 10000, _("X minimum:")},
{LP_SOCKET_INPUT_X_MAX, T_LONGSPIN, -2147480000, 2147480000, 1000, 10000, _("X maximum:")},
{SP_SOCKET_INPUT_Y_LABEL, T_STRING, -1, -1, -1, -1, _("Y label:")},
{LP_SOCKET_INPUT_Y_MIN, T_LONGSPIN, -2147480000, 2147480000, 1000, 10000, _("Y minimum:")},
{LP_SOCKET_INPUT_Y_MAX, T_LONGSPIN, -2147480000, 2147480000, 1000, 10000, _("Y maximum:")},
{BP_SOCKET_DEBUG, T_BOOL, -1, -1, -1, -1, _("Print socket-related debugging information to console:")}
};
Dasher::CSocketInputBase::CSocketInputBase(CSettingsUser *pCreator, CMessageDisplay *pMsgs)
: CScreenCoordInput(1, _("Socket Input")), CSettingsUserObserver(pCreator), m_pMsgs(pMsgs) {
port = -1;
debug_socket_input = false;
readerRunning = false;
sock = -1;
SetCoordinateCount(2);
for(int i = 0; i < DASHER_SOCKET_INPUT_MAX_COORDINATE_COUNT; i++) {
dasherMaxCoordinateValues[i] = 4096; // the real value will come later when SetMaxCoordinates is invoked
rawMinValues[i] = 0.0; // suitable defaults for BCI2000
rawMaxValues[i] = 512.0;
memset(coordinateNames[i], '\0', DASHER_SOCKET_INPUT_MAX_COORDINATE_LABEL_LENGTH + 1);
dasherCoordinates[i] = 2048; // initialise to mid-range value
}
// initialise using parameter settings:
SetDebug(GetBoolParameter(BP_SOCKET_DEBUG));
SetReaderPort(GetLongParameter(LP_SOCKET_PORT));
SetRawRange(0, ((double)GetLongParameter(LP_SOCKET_INPUT_X_MIN)) / 1000.0, ((double)GetLongParameter(LP_SOCKET_INPUT_X_MAX)) / 1000.0);
SetRawRange(1, ((double)GetLongParameter(LP_SOCKET_INPUT_Y_MIN)) / 1000.0, ((double)GetLongParameter(LP_SOCKET_INPUT_Y_MAX)) / 1000.0);
SetCoordinateLabel(0, GetStringParameter(SP_SOCKET_INPUT_X_LABEL).c_str());
SetCoordinateLabel(1, GetStringParameter(SP_SOCKET_INPUT_Y_LABEL).c_str());
SocketDebugMsg("Socket input is initialised but not yet enabled");
}
Dasher::CSocketInputBase::~CSocketInputBase() {
// Would like to call StopListening(); Can't do this here because by the time this (base class) destructor is called,
// the derived class instance has been deleted, so we can no longer call it's StopListening.
// Instead, you should call StopListening in the derived class's destructor.
}
void Dasher::CSocketInputBase::HandleEvent(int iParameter) {
switch (iParameter) {
case LP_SOCKET_PORT:
SetReaderPort(GetLongParameter(LP_SOCKET_PORT));
break;
case SP_SOCKET_INPUT_X_LABEL:
SetCoordinateLabel(0, GetStringParameter(SP_SOCKET_INPUT_X_LABEL).c_str());
break;
case SP_SOCKET_INPUT_Y_LABEL:
SetCoordinateLabel(1, GetStringParameter(SP_SOCKET_INPUT_Y_LABEL).c_str());
break;
case LP_SOCKET_INPUT_X_MIN:
case LP_SOCKET_INPUT_X_MAX:
SetRawRange(0, ((double)GetLongParameter(LP_SOCKET_INPUT_X_MIN)) / 1000.0, ((double)GetLongParameter(LP_SOCKET_INPUT_X_MAX)) / 1000.0);
break;
case LP_SOCKET_INPUT_Y_MIN:
case LP_SOCKET_INPUT_Y_MAX:
SetRawRange(1, ((double)GetLongParameter(LP_SOCKET_INPUT_Y_MIN)) / 1000.0, ((double)GetLongParameter(LP_SOCKET_INPUT_Y_MAX)) / 1000.0);
break;
case BP_SOCKET_DEBUG:
SetDebug(GetBoolParameter(BP_SOCKET_DEBUG));
break;
default:
break;
}
}
bool Dasher::CSocketInputBase::StartListening() {
struct sockaddr_in name;
// this shouldn't be called if we are already listening, but if it is, let's failsafe
// rather than attempt to bind to the same port twice.
if(readerRunning) {
StopListening();
}
SocketDebugMsg("Socket input: binding to socket and starting to listen.");
if((sock = socket(PF_INET, SOCK_DGRAM, 0)) == -1) {
//TODO This is not a very good error message even in English...???
m_pMsgs->Message(_("Error creating socket"),true);
return false;
}
name.sin_family = AF_INET;
name.sin_port = htons(port);
name.sin_addr.s_addr = htonl(INADDR_ANY);
if(bind(sock, (struct sockaddr *)&name, sizeof(name)) < 0) {
ReportErrnoError(_("Error binding to socket - already in use?"));
DASHER_SOCKET_CLOSE_FUNCTION(sock);
sock = -1;
return false;
}
if(!LaunchReaderThread()) {
// LaunchReaderThread will already have displayed an error message
DASHER_SOCKET_CLOSE_FUNCTION(sock);
sock = -1;
return false;
}
readerRunning = true;
return true;
}
void Dasher::CSocketInputBase::StopListening() {
if(!readerRunning) {
return;
}
CancelReaderThread();
if(sock >= 0) {
DASHER_SOCKET_CLOSE_FUNCTION(sock);
}
readerRunning = false;
SocketDebugMsg("Socket input: stopped listening to socket.");
}
void CSocketInputBase::SetReaderPort(int _port) {
if(_port == port) {
SocketDebugMsg("SetReaderPort called with same value (%d), so ignoring.",port);
return;
}
SocketDebugMsg("Setting socket input port to %d.", _port);
if(readerRunning) {
StopListening();
port = _port;
StartListening();
}
else {
port = _port;
}
}
void CSocketInputBase::SetCoordinateLabel( int iWhichCoordinate, const char *Label) {
DASHER_ASSERT(iWhichCoordinate < DASHER_SOCKET_INPUT_MAX_COORDINATE_COUNT);
if(strlen(Label) > DASHER_SOCKET_INPUT_MAX_COORDINATE_LABEL_LENGTH) {
const char *msg=_("Warning truncating socket input label '%s' to %i characters.");
char *buf(new char[strlen(msg)+strlen(Label)+DASHER_SOCKET_INPUT_MAX_COORDINATE_LABEL_LENGTH]);
sprintf(buf,msg,Label,DASHER_SOCKET_INPUT_MAX_COORDINATE_LABEL_LENGTH);
m_pMsgs->Message(buf, true);
delete buf;
}
strncpy(coordinateNames[iWhichCoordinate], Label, DASHER_SOCKET_INPUT_MAX_COORDINATE_LABEL_LENGTH);
SocketDebugMsg("Socket input: set coordinate %d label to '%s'.", iWhichCoordinate, coordinateNames[iWhichCoordinate]);
}
void CSocketInputBase::SetRawRange(int iWhich, double dMin, double dMax) {
rawMinValues[iWhich] = dMin;
rawMaxValues[iWhich] = dMax;
SocketDebugMsg("Socket input: set coordinate %d input range to: min: %lf, max: %lf.", iWhich, dMin, dMax);
}
// private methods:
void CSocketInputBase::ReadForever() {
// this gets called in its own thread. It reads datagrams and updates the coordinate variables
int numbytes;
while(sock >= 0) {
SocketDebugMsg("Reading from socket...");
if((numbytes = recv(sock, buffer, sizeof(buffer) - 1, 0)) == -1) {
m_pMsgs->Message(_("Socket input: Error reading from socket"),false);
continue;
}
buffer[numbytes] = '\0';
SocketDebugMsg(" received string: '%s'.", buffer);
ParseMessage(buffer);
}
}
// Parse and act on a message received from the socket
// Allowed to modify contents of memory pointed to by message, up to its final '\0'.
void CSocketInputBase::ParseMessage(char *message) {
char *p;
double rawdouble;
// myint dasherCoordinateTemp;
// parse line by line
while((p = strchr(message, '\n')) != NULL) {
*p = '\0';
// Each line is expected to be of the form "Label <value>"
// We run through each coordinate label, checking if this line matches it
for(int i = 0; i < coordinateCount; i++) {
int len = strlen(coordinateNames[i]);
if(strncmp(coordinateNames[i], message, len) == 0) {
SocketDebugMsg("Matched label '%s'...", coordinateNames[i]);
// First len chars match the label of this coordinate. Value should be at the next non-space char.
if(sscanf(message + len, "%lf", &rawdouble) == 1) {
SocketDebugMsg("...parsed value as %lf.", rawdouble);
#ifdef DASHER_SOCKET_INPUT_BCI2000_OVERFLOW_WORKAROUND
// a temporary workaround to undo an integer overflow that occurs in messages sent from BCI2000
if(rawdouble > 32000) {
rawdouble = 0;
}
if(rawdouble > 768 && rawdouble < 32000) {
rawdouble = 768;
}
#endif
// Clipping:
// for clipping purposes, we want to ignore whether Max < Min (which indicates that
// we need to flip the sense of the input)
double actualMax = (rawMaxValues[i] > rawMinValues[i]) ? rawMaxValues[i] : rawMinValues[i];
double actualMin = (rawMaxValues[i] > rawMinValues[i]) ? rawMinValues[i] : rawMaxValues[i];
if(rawdouble < actualMin) {
//TODO: Should these be converted to calls to Message() ? On first occurrence only???
cerr << "Socket input: clipped " << coordinateNames[i] << " value of " << rawdouble << "to configured minimum of " << actualMin << endl;
rawdouble = actualMin;
}
if(rawdouble > actualMax) {
//TODO: Should these be converted to calls to Message() ? On first occurrence only???
cerr << "Socket input: clipped " << message << " value of " << rawdouble << "to configured maximum of " << actualMax << endl;
rawdouble = actualMax;
}
// convert to dasher coordinates:
const bool do_lowpass = false;
if(do_lowpass) {
// initial attempt at putting a low-pass filter in. Not well tested; disabled for now.
double timeconst = 100.0; // no of updates
double newcoord = ((rawdouble - rawMinValues[i]) / (rawMaxValues[i] - rawMinValues[i]) * dasherMaxCoordinateValues[i]);
dasherCoordinates[i] = (myint) ((1 - 1 / timeconst) * (double)dasherCoordinates[i] + (1 / timeconst) * newcoord);
}
else {
// straightforward linear mapping to dasher coordinates:
// Treat X coordinate specially: reverse sense so it has the more intuitive left-to-right direction
double min = (i==0) ? rawMaxValues[i] : rawMinValues[i];
double max = (i==0) ? rawMinValues[i] : rawMaxValues[i];
if(max != min) { // prevent nasty explosion
dasherCoordinates[i] = (myint) ((rawdouble - min) / (max - min) * (double)dasherMaxCoordinateValues[i]);
}
}
SocketDebugMsg("Socket input: new value for coordinate %d rescales to %u in Dasher's internal coordinates (range 0-%d).", i, (unsigned int) dasherCoordinates[i], (int) dasherMaxCoordinateValues[i]);
// don't break out of the for loop in case we get asked to drive two coordinates from same label
} else {
SocketDebugMsg("... but couldn't parse the text following that label as a number.");
}
}
}
message = p + 1; // move on to next line (if there isn't one, we'll point at the terminating '\0')
}
}
void CSocketInputBase::SetDebug(bool _debug) {
if(!_debug) {
SocketDebugMsg("Disabling socket debug messages.");
}
debug_socket_input = _debug;
if(_debug) {
SocketDebugMsg("Enabled socket debug messages.");
}
}
void CSocketInputBase::ReportErrnoError(const std::string &prefix) {
int err = errno; errno=0;
const char *msg = _("Dasher Socket Input error: %s: %s");
char *e = strerror(err);
char *buf(new char[strlen(msg) + prefix.length() + strlen(e)]);
sprintf(buf,msg,prefix.c_str(),e);
m_pMsgs->Message(buf,true);
delete buf;
}
void CSocketInputBase::SocketDebugMsg(const char *pszFormat, ...) {
if(debug_socket_input) {
va_list v;
va_start(v, pszFormat);
vfprintf(stderr, pszFormat, v);
fprintf(stderr, "\n");
va_end(v);
}
}
bool CSocketInputBase::GetSettings(SModuleSettings **pSettings, int *iCount) {
*pSettings = sSettings;
*iCount = sizeof(sSettings) / sizeof(SModuleSettings);
return true;
}
|