2002-09-29 13:40:45 +02:00
|
|
|
/*
|
|
|
|
* lirc.c: LIRC remote control
|
|
|
|
*
|
|
|
|
* See the main source file 'vdr.c' for copyright information and
|
|
|
|
* how to reach the author.
|
|
|
|
*
|
|
|
|
* LIRC support added by Carsten Koch <Carsten.Koch@icem.de> 2000-06-16.
|
|
|
|
*
|
2013-01-31 12:13:39 +01:00
|
|
|
* $Id: lirc.c 2.3 2013/01/31 12:13:39 kls Exp $
|
2002-09-29 13:40:45 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lirc.h"
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2013-01-30 13:03:00 +01:00
|
|
|
#define REPEATDELAY 300 // ms
|
2006-05-28 08:49:52 +02:00
|
|
|
#define REPEATFREQ 100 // ms
|
2006-01-27 16:03:32 +01:00
|
|
|
#define RECONNECTDELAY 3000 // ms
|
2002-09-29 13:40:45 +02:00
|
|
|
|
2005-07-31 11:38:40 +02:00
|
|
|
cLircRemote::cLircRemote(const char *DeviceName)
|
2002-09-29 13:40:45 +02:00
|
|
|
:cRemote("LIRC")
|
2003-10-18 12:29:08 +02:00
|
|
|
,cThread("LIRC remote control")
|
2002-09-29 13:40:45 +02:00
|
|
|
{
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
strcpy(addr.sun_path, DeviceName);
|
2006-01-27 16:03:32 +01:00
|
|
|
if (Connect()) {
|
|
|
|
Start();
|
|
|
|
return;
|
2002-09-29 13:40:45 +02:00
|
|
|
}
|
|
|
|
f = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cLircRemote::~cLircRemote()
|
|
|
|
{
|
2005-01-14 14:21:52 +01:00
|
|
|
int fh = f;
|
|
|
|
f = -1;
|
2002-09-29 13:40:45 +02:00
|
|
|
Cancel();
|
2005-01-14 14:21:52 +01:00
|
|
|
if (fh >= 0)
|
|
|
|
close(fh);
|
2002-09-29 13:40:45 +02:00
|
|
|
}
|
|
|
|
|
2006-01-27 16:03:32 +01:00
|
|
|
bool cLircRemote::Connect(void)
|
|
|
|
{
|
|
|
|
if ((f = socket(AF_UNIX, SOCK_STREAM, 0)) >= 0) {
|
|
|
|
if (connect(f, (struct sockaddr *)&addr, sizeof(addr)) >= 0)
|
|
|
|
return true;
|
|
|
|
LOG_ERROR_STR(addr.sun_path);
|
|
|
|
close(f);
|
|
|
|
f = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
LOG_ERROR_STR(addr.sun_path);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-04-12 14:37:57 +02:00
|
|
|
bool cLircRemote::Ready(void)
|
|
|
|
{
|
|
|
|
return f >= 0;
|
|
|
|
}
|
|
|
|
|
2002-09-29 13:40:45 +02:00
|
|
|
void cLircRemote::Action(void)
|
|
|
|
{
|
2004-12-19 18:08:09 +01:00
|
|
|
cTimeMs FirstTime;
|
|
|
|
cTimeMs LastTime;
|
2013-01-31 12:13:39 +01:00
|
|
|
cTimeMs ThisTime;
|
2002-09-29 13:40:45 +02:00
|
|
|
char buf[LIRC_BUFFER_SIZE];
|
|
|
|
char LastKeyName[LIRC_KEY_BUF] = "";
|
2013-01-31 12:13:39 +01:00
|
|
|
bool pressed = false;
|
2002-09-29 13:40:45 +02:00
|
|
|
bool repeat = false;
|
2003-04-06 15:43:41 +02:00
|
|
|
int timeout = -1;
|
2002-09-29 13:40:45 +02:00
|
|
|
|
2005-08-15 12:30:21 +02:00
|
|
|
while (Running() && f >= 0) {
|
2002-09-29 13:40:45 +02:00
|
|
|
|
2005-08-15 12:30:21 +02:00
|
|
|
bool ready = cFile::FileReady(f, timeout);
|
|
|
|
int ret = ready ? safe_read(f, buf, sizeof(buf)) : -1;
|
2003-04-06 15:43:41 +02:00
|
|
|
|
2005-08-15 12:30:21 +02:00
|
|
|
if (ready && ret <= 0 ) {
|
2006-01-27 16:03:32 +01:00
|
|
|
esyslog("ERROR: lircd connection broken, trying to reconnect every %.1f seconds", float(RECONNECTDELAY) / 1000);
|
2005-08-15 12:30:21 +02:00
|
|
|
close(f);
|
|
|
|
f = -1;
|
2006-01-27 16:03:32 +01:00
|
|
|
while (Running() && f < 0) {
|
|
|
|
cCondWait::SleepMs(RECONNECTDELAY);
|
|
|
|
if (Connect()) {
|
|
|
|
isyslog("reconnected to lircd");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2005-08-15 12:30:21 +02:00
|
|
|
}
|
2003-04-25 13:46:56 +02:00
|
|
|
|
2011-03-08 15:38:58 +01:00
|
|
|
if (ready && ret > 0) {
|
|
|
|
buf[ret - 1] = 0;
|
2005-08-15 12:30:21 +02:00
|
|
|
int count;
|
|
|
|
char KeyName[LIRC_KEY_BUF];
|
2005-09-02 12:52:37 +02:00
|
|
|
if (sscanf(buf, "%*x %x %29s", &count, KeyName) != 2) { // '29' in '%29s' is LIRC_KEY_BUF-1!
|
|
|
|
esyslog("ERROR: unparseable lirc command: %s", buf);
|
|
|
|
continue;
|
|
|
|
}
|
2013-01-31 12:13:39 +01:00
|
|
|
int Delta = ThisTime.Elapsed(); // the time between two subsequent LIRC events
|
|
|
|
ThisTime.Set();
|
2005-08-15 12:30:21 +02:00
|
|
|
if (count == 0) {
|
2006-05-28 08:49:52 +02:00
|
|
|
if (strcmp(KeyName, LastKeyName) == 0 && FirstTime.Elapsed() < REPEATDELAY)
|
2005-08-15 12:30:21 +02:00
|
|
|
continue; // skip keys coming in too fast
|
|
|
|
if (repeat)
|
|
|
|
Put(LastKeyName, false, true);
|
|
|
|
strcpy(LastKeyName, KeyName);
|
2013-01-31 12:13:39 +01:00
|
|
|
pressed = true;
|
2005-08-15 12:30:21 +02:00
|
|
|
repeat = false;
|
|
|
|
FirstTime.Set();
|
|
|
|
timeout = -1;
|
|
|
|
}
|
2013-01-30 13:03:00 +01:00
|
|
|
else if (FirstTime.Elapsed() < REPEATDELAY)
|
|
|
|
continue; // repeat function kicks in after a short delay
|
|
|
|
else if (LastTime.Elapsed() < REPEATFREQ)
|
|
|
|
continue; // skip same keys coming in too fast
|
2005-08-15 12:30:21 +02:00
|
|
|
else {
|
|
|
|
repeat = true;
|
2013-01-31 12:13:39 +01:00
|
|
|
timeout = Delta * 10 / 9;
|
2005-08-15 12:30:21 +02:00
|
|
|
}
|
2013-01-31 12:13:39 +01:00
|
|
|
if (pressed)
|
|
|
|
LastTime.Set();
|
|
|
|
Put(KeyName, repeat);
|
2005-08-15 12:30:21 +02:00
|
|
|
}
|
2013-01-31 12:13:39 +01:00
|
|
|
else if (pressed && repeat) { // the last one was a repeat, so let's generate a release
|
|
|
|
Put(LastKeyName, false, true);
|
|
|
|
pressed = false;
|
|
|
|
repeat = false;
|
|
|
|
*LastKeyName = 0;
|
|
|
|
timeout = -1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
pressed = false;
|
|
|
|
repeat = false;
|
|
|
|
*LastKeyName = 0;
|
|
|
|
timeout = -1;
|
2005-08-15 12:30:21 +02:00
|
|
|
}
|
|
|
|
}
|
2002-09-29 13:40:45 +02:00
|
|
|
}
|