File: xine_frontend_lirc.c

package info (click to toggle)
vdr-plugin-xineliboutput 2.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,476 kB
  • sloc: ansic: 38,688; sh: 438; makefile: 351; cpp: 11
file content (325 lines) | stat: -rw-r--r-- 7,656 bytes parent folder | download | duplicates (3)
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
321
322
323
324
325
/*
 * xine_frontend_lirc.c: Forward (local) lirc keys to VDR (server)
 *
 * See the main source file 'xineliboutput.c' for copyright information and
 * how to reach the author.
 *
 * $Id$
 *
 */
/*
 *
 * Almost directly copied from vdr-1.4.3-2 (lirc.c : cLircRemote)
 *
 */
/*
 * 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.
 *
 */

#include "xine_frontend_lirc.h"

#include <stdlib.h>

#ifdef _WIN32
input_lirc_t *lirc_start(struct frontend_s *fe, const char *lirc_dev, int repeat_emu, int gui_hotkeys)
{
  return NULL;
}
void lirc_stop(input_lirc_t **l)
{
}
#else

#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <pthread.h>
#include <netinet/in.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/un.h>

#include "tools/time_ms.h"

#define LOG_MODULENAME "[lirc]      "
#include "logdefs.h"

#include "xine_frontend.h"

#define REPEATDELAY     350 /* ms */
#define REPEATFREQ      100 /* ms */
#define REPEATTIMEOUT   500 /* ms */
#define RECONNECTDELAY 3000 /* ms */

#define LIRC_KEY_BUF      30
#define LIRC_BUFFER_SIZE 128
#define MIN_LIRCD_CMD_LEN  5

struct input_lirc_s {
  pthread_t   lirc_thread;
  frontend_t *fe;
  char       *lirc_device_name;
  int         fd_lirc;
  uint8_t     lirc_repeat_emu;
  uint8_t     gui_hotkeys;
};

static void lircd_connect(input_lirc_t *this)
{
  union {
    struct sockaddr    sa;
    struct sockaddr_un un;
  } addr;

  if (this->fd_lirc >= 0) {
    close(this->fd_lirc);
    this->fd_lirc = -1;
  }

  if (!this->lirc_device_name) {
    LOGDBG("no lirc device given");
    return;
  }

  addr.un.sun_family = AF_UNIX;
  strncpy(addr.un.sun_path, this->lirc_device_name, sizeof(addr.un.sun_path));
  addr.un.sun_path[sizeof(addr.un.sun_path)-1] = 0;

  if ((this->fd_lirc = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
    LOGERR("lirc error: socket() < 0");
    return;
  }

  if (connect(this->fd_lirc, &addr.sa, sizeof(addr))) {
    LOGERR("lirc error: connect(%s) < 0", this->lirc_device_name);
    close(this->fd_lirc);
    this->fd_lirc = -1;
    return;
  }
}

static int _select(int fd, int timeout)
{
  fd_set set;
  int result;

  FD_ZERO(&set);
  FD_SET(fd, &set);

  if (timeout >= 0) {
    struct timeval tv;
    tv.tv_sec  = timeout / 1000;
    tv.tv_usec = (timeout % 1000) * 1000;
    result = select(FD_SETSIZE, &set, NULL, NULL, &tv) > 0 && FD_ISSET(fd, &set);
  } else {
    result = select(FD_SETSIZE, &set, NULL, NULL, NULL) > 0 && FD_ISSET(fd, &set);
  }

  return result;
}

static void *lirc_receiver_thread(void *this_gen)
{
  input_lirc_t *this = this_gen;
  frontend_t   *fe = this->fe;
  const int   priority = -1;
  int      timeout = -1;
  int      repeat = 0;
  uint64_t FirstTime = time_ms();
  uint64_t LastTime = time_ms();
  char     buf[LIRC_BUFFER_SIZE];
  char     LastKeyName[LIRC_KEY_BUF] = "";

  LOGMSG("lirc forwarding started");

  errno = 0;
  if ((nice(priority) == -1) && errno)
    LOGDBG("LIRC: Can't nice to value: %d", priority);

  lircd_connect(this);

  while (fe->xine_is_finished(fe, 0) != FE_XINE_EXIT && this->fd_lirc >= 0) {
    int ready, ret = -1;

    pthread_testcancel();
    ready = _select(this->fd_lirc, timeout);

    pthread_testcancel();
    if (ready < 0) {
      LOGMSG("LIRC connection lost ?");
      break;
    }

    if (ready) {

      do {
        errno = 0;
        ret = read(this->fd_lirc, buf, sizeof(buf));
        pthread_testcancel();
      } while (ret < 0 && errno == EINTR);

      if (ret <= 0 ) {
        /* try reconnecting */
        LOGERR("LIRC connection lost");
        lircd_connect(this);
        while (this->fd_lirc < 0) {
          pthread_testcancel();
          sleep(RECONNECTDELAY/1000);
          lircd_connect(this);
        }
        if (this->fd_lirc >= 0)
          LOGMSG("LIRC reconnected");
	continue;
      }

      if (ret >= MIN_LIRCD_CMD_LEN) {
        unsigned int count;
        char KeyName[LIRC_KEY_BUF];
        LOGDBG("LIRC: %s", buf);

        if (sscanf(buf, "%*x %x %29s", &count, KeyName) != 2) {
          /* '29' in '%29s' is LIRC_KEY_BUF-1! */
          LOGMSG("unparseable lirc command: %s", buf);
          continue;
        }

        if (this->lirc_repeat_emu)
          if (strcmp(KeyName, LastKeyName) == 0 && elapsed(LastTime) < REPEATDELAY)
            count = repeat + 1;

        if (count == 0) {
          if (strcmp(KeyName, LastKeyName) == 0 && elapsed(FirstTime) < REPEATDELAY)
            continue; /* skip keys coming in too fast */
          if (repeat) {
            alarm(3);
            fe->send_input_event(fe, "LIRC", LastKeyName, 0, 1);
            alarm(0);
          }

          strcpy(LastKeyName, KeyName);
          repeat = 0;
          FirstTime = time_ms();
          timeout = -1;
        }
        else {
          if (elapsed(LastTime) < REPEATFREQ)
            continue; /* repeat function kicks in after a short delay */

          if (elapsed(FirstTime) < REPEATDELAY) {
            if (this->lirc_repeat_emu)
              LastTime = time_ms();
            continue; /* skip keys coming in too fast */
          }
          repeat = 1;
          timeout = REPEATDELAY;
        }
        LastTime = time_ms();

        if (this->gui_hotkeys) {
          if (!strcmp(KeyName, "Quit")) {
            fe->send_event(fe, "QUIT");
            break;
          }
          if (!strcmp(KeyName, "PowerOff")) {
            fe->send_event(fe, "POWER_OFF");
            break;
          }
          if (!strcmp(KeyName, "Fullscreen")) {
            if (!repeat)
              fe->send_event(fe, "TOGGLE_FULLSCREEN");
            continue;
          }
          if (!strcmp(KeyName, "Deinterlace")) {
            if (!repeat)
              fe->send_event(fe, "TOGGLE_DEINTERLACE");
            continue;
          }
        }

        alarm(3);
        fe->send_input_event(fe, "LIRC", KeyName, repeat, 0);
        alarm(0);

      }

    }
    if (repeat && (!ready || ret < MIN_LIRCD_CMD_LEN)) { /* the last one was a repeat, so let's generate a release */
      if (elapsed(LastTime) >= REPEATTIMEOUT) {
        alarm(3);
        fe->send_input_event(fe, "LIRC", LastKeyName, 0, 1);
        alarm(0);
        repeat = 0;
        *LastKeyName = 0;
        timeout = -1;
      }
    }
  }


  if (this->fd_lirc >= 0)
    close(this->fd_lirc);
  this->fd_lirc = -1;
  pthread_exit(NULL);
  return NULL; /* never reached */
}

input_lirc_t *lirc_start(struct frontend_s *fe, const char *lirc_dev, int repeat_emu, int gui_hotkeys)
{
  int err;
  input_lirc_t *this;

  if (!lirc_dev) {
    return NULL;
  }

  this = calloc(1, sizeof(*this));
  if (!this) {
    return NULL;
  }

  this->fe               = fe;
  this->lirc_device_name = strdup(lirc_dev);
  this->lirc_repeat_emu  = repeat_emu;
  this->gui_hotkeys      = gui_hotkeys;
  this->fd_lirc          = -1;

  if ((err = pthread_create (&this->lirc_thread,
                             NULL, lirc_receiver_thread,
                             (void*)this)) != 0) {
    fprintf(stderr, "can't create new thread for lirc (%s)\n",
            strerror(err));

    free(this->lirc_device_name);
    free(this);
    this = NULL;
  }

  return this;
}

void lirc_stop(input_lirc_t **plirc)
{
  if (*plirc) {
    input_lirc_t *this = *plirc;
    void *p;

    pthread_cancel (this->lirc_thread);
    pthread_join (this->lirc_thread, &p);

    if (this->fd_lirc >= 0)
      close(this->fd_lirc);
    this->fd_lirc = -1;

    free(this->lirc_device_name);
    free(this);
  }
}

#endif /* WIN32 */