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 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
|
/***************************************************************************
** xmode2.c ****************************************************************
****************************************************************************
*
* xmode2 - shows the ir waveform of an IR signal
*
* patched together on Feb. 18th 1999 by
* Heinrich Langos <heinrich@mad.scientist.com>
*
* This program is based on the smode2.c file by Sinkovics Zoltan
* <sinko@szarvas.hu> which is a part of the LIRC distribution. It is
* just a conversion from svga to X with some basic support for resizing.
* I copied most of this comment.
*
* This program is based on the mode2.c file which is a part of the
* LIRC distribution. The main purpose of this program is to check
* operation of LIRC receiver hardware, and to see the IR waveform of
* the remote controller without an expensive oscilloscope. The time
* division is variable from 1 ms/div to extremely high values (integer
* type) but there is no point increasing this value above 20 ms/div,
* because one pulse is about 1 ms. I think this kind of presentation
* is much more exciting than the simple pulse&space output showed by
* mode2.
*
* Usage: xmode2 [-t (ms/div)] , default division is 5 ms/div
*
*
* compile: gcc -o xmode2 xmode2.c -L/usr/X11R6/lib -lX11
*
* version 0.01 Feb 18 1999
* initial release
*
* version 0.02 Aug 24 1999
* using select() to make the whole thing more responsive
* */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <limits.h>
#include <errno.h>
#include <syslog.h>
#include <time.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include "lirc_private.h"
const char* const MSG_USE_RAW =
"Please use the --raw option to access the device directly instead.";
const char* const MSG_BAD_DRIVER =
"This program does not work for this driver and hardware.\n"
"(the driver is not a LIRC_MODE2 type driver)\n"
" You can test this receiver using mode2(1).";
const char* const MSG_MODE2_DRIVER =
"This program is only intended for receivers supporting the\n"
" pulse/space layer. Note that this is no error, but this program\n"
" simply makes no sense for your receiver.\n"
" You can test this receiver using mode2(1).";
static const logchannel_t logchannel = LOG_APP;
Display* d1;
Window w0, w1; /*w0 = root */
char w1_wname[] = "xmode2";
char w1_iname[] = "xmode2";
char font1_name[] = "-misc-fixed-*-r-*-*-12-*-*-*-*-*-iso8859-1";
int w1_x = 0, w1_y = 0;
unsigned int w1_w = 640, w1_h = 480, w1_border = 0;
XFontStruct* f1_str;
XColor xc1, xc2;
Colormap cm1;
XGCValues gcval1;
GC gc1, gc2;
XSetWindowAttributes winatt1;
long event_mask1;
XEvent event_return1;
static int point = 0;
static int showText = 0;
static int div_ = 5;
static int dmode = 0;
static struct stat s;
static int use_stdin = 0;
static int use_raw_access = 0;
static const char* device = "";
static char* geometry = NULL;
static struct option options[] = {
{"help", no_argument, NULL, 'h'},
{"version", no_argument, NULL, 'v'},
{"debug", required_argument, NULL, 'D'},
{"device", required_argument, NULL, 'd'},
{"driver", required_argument, NULL, 'H'},
{"keep-root", required_argument, NULL, 'k'},
{"geometry", required_argument, NULL, 'g'},
{"timediv", required_argument, NULL, 't'},
{"mode", no_argument, NULL, 'm'},
{"raw", no_argument, NULL, 'r'},
{"plugindir", required_argument, NULL, 'U'},
{"driver-options", required_argument, NULL, 'A'},
{0, 0, 0, 0}
};
static const char* const help =
"\nUsage: xmode2 [options]\n"
"\nOptions:\n"
" -d --device=device\t\tRead from given device\n"
" -H --driver=driver\t\tUse given driver\n"
" -U --plugindir=dir\t\tLoad drivers from given dir\n"
" -g --geometry=geometry\twindow geometry\n"
" -t --timediv=value\t\tms per unit\n"
" -m --mode\t\t\tEnable alternative display mode\n"
" -k --keep-root\t\tKeep root privileges\n"
" -r --raw\t\t\tAccess device directly\n"
" -O --options-file\t\tUse alternative lirc_options.conf file\n"
" -A --driver-options=key:value[|key:value...]\n"
"\t\t\t\tSet driver options\n"
" -D --loglevel=level\t\t'error', 'info', 'notice',... or 3..10\n"
" -h --help\t\t\tDisplay usage summary\n"
" -v --version\t\tDisplay version\n\n"
"The window responds to the following keys:\n"
" .1, .2, .5, 1, 2 & 5 Set the timebase (ms)\n"
" m to Toggle the display mode\n"
" q to Quit\n";
static void add_defaults(void)
{
const char* const device = options_getstring("lircd:device");
const char* const driver = options_getstring("lircd:driver");
const char* const lircd_level = options_getstring("lircd:debug");
const char* const plugindir = options_getstring("lircd:plugindir");
char level[12];
if (lircd_level != NULL) {
strncpy(level, lircd_level, sizeof(level) - 1);
} else {
snprintf(level, sizeof(level), " %d", lirc_log_defaultlevel());
}
const char* const defaults[] = {
"xmode2:plugindir", plugindir ? plugindir : PLUGINDIR,
"xmode2:debug", level,
"xmode2:device", device ? device : LIRC_DRIVER_DEVICE,
"xmode2:driver", driver ? driver : "default",
"xmode2:analyse", "False",
"xmode2:force", "False",
"xmode2:dynamic-codes", "False",
"xmode2:list_namespace","False",
"xmode2:disable-namespace", "False",
(const char*)NULL, (const char*)NULL
};
options_add_defaults(defaults);
}
static void parse_options(int argc, char** const argv)
{
int c;
add_defaults();
char driver[64];
const char* const optstring = "g:hvdD:U:H:t:mrA:";
strcpy(driver, "default");
while ((c = getopt_long(argc, argv, optstring, options, NULL)) != -1) {
switch (c) {
case 'D':
if (string2loglevel(optarg) == LIRC_BADLEVEL) {
fprintf(stderr, "Bad debug level: %s\n", optarg);
exit(EXIT_FAILURE);
}
options_set_opt("xmode2:debug", optarg);
break;
case 'h':
puts(help);
exit(EXIT_SUCCESS);
case 'H':
options_set_opt("xmode2:driver", optarg);
break;
case 'v':
printf("%s %s\n", progname, VERSION);
exit(EXIT_SUCCESS);
case 'd':
options_set_opt("xmode2:device", optarg);
break;
case 'g':
geometry = optarg;
break;
case 't': /* timediv */
div_ = strtol(optarg, NULL, 10);
break;
case 'k':
unsetenv("SUDO_USER");
break;
case 'm':
dmode = 1;
break;
case 'r':
use_raw_access = 1;
break;
case 'U':
options_set_opt("xmode2:plugindir", optarg);
break;
case 'A':
options_set_opt("lircd:driver-options", optarg);
break;
default:
printf("Usage: %s [options]\n", progname);
exit(EXIT_FAILURE);
}
}
if (optind < argc) {
fprintf(stderr, "%s: too many arguments\n", progname);
exit(EXIT_FAILURE);
}
options_set_opt("lircd:plugindir",
options_getstring("xmode2:plugindir"));
strncpy(driver,
options_getstring("xmode2:driver"),
sizeof(driver) - 1);
if (hw_choose_driver(driver) != 0) {
fprintf(stderr, "Driver `%s' not found", driver);
fputs(" (wrong or missing -U/--plugindir?)\n", stderr);
fputs("\nAvailable drivers:\n", stderr);
hw_print_drivers(stderr);
exit(EXIT_FAILURE);
}
}
void initscreen(char* geometry)
{
d1 = XOpenDisplay(0);
if (d1 == NULL) {
puts("Can't open display.");
exit(0);
}
if (geometry != NULL)
XParseGeometry(geometry, &w1_x, &w1_y, &w1_w, &w1_h);
/*Aufbau der XWindowsAttribStr */
w0 = DefaultRootWindow(d1);
winatt1.background_pixel = BlackPixel(d1, 0);
winatt1.backing_store = WhenMapped;
winatt1.event_mask = KeyPressMask | StructureNotifyMask | ExposureMask;
w1 = XCreateWindow(d1, w0, w1_x, w1_y, w1_w, w1_h, w1_border, CopyFromParent, InputOutput, CopyFromParent,
CWBackPixel | CWBackingStore | CWEventMask, &winatt1);
XStoreName(d1, w1, w1_wname);
XSetIconName(d1, w1, w1_iname);
XMapWindow(d1, w1);
cm1 = DefaultColormap(d1, 0);
if (!XAllocNamedColor(d1, cm1, "blue", &xc1, &xc2))
puts("couldn't allocate blue color");
f1_str = XLoadQueryFont(d1, font1_name);
if (f1_str == NULL) {
puts("could't load font");
exit(EXIT_FAILURE);
}
gcval1.foreground = xc1.pixel;
gcval1.font = f1_str->fid;
gcval1.line_style = LineSolid;
gc1 = XCreateGC(d1, w1, GCForeground | GCLineStyle, &gcval1);
gcval1.foreground = WhitePixel(d1, 0);
gc2 = XCreateGC(d1, w1, GCForeground | GCLineStyle | GCFont, &gcval1);
}
void closescreen(void)
{
XUnmapWindow(d1, w1);
XCloseDisplay(d1);
}
void drawGrid(int div)
{
char textbuffer[80];
int x;
XClearWindow(d1, w1);
for (x = 0; x < (int)w1_w; x += 10)
XDrawLine(d1, w1, gc1, x, 0, x, w1_h);
sprintf(textbuffer, "%5.3f ms/div", div/100.0);
XDrawString(d1, w1, gc2, w1_w - 100, 10, textbuffer, strlen(textbuffer));
XFlush(d1);
}
int main(int argc, char** argv)
{
fd_set rfds;
int xfd, maxfd;
int fd;
uint32_t mode;
lirc_t data = 0;
lirc_t x1, y1, dx;
int result;
char textbuffer[80];
const char* opt;
char logpath[256];
const loglevel_t level = options_get_app_loglevel("xmode2");
hw_choose_driver(NULL);
options_load(argc, argv, NULL, parse_options);
lirc_log_get_clientlog("xmode2", logpath, sizeof(logpath));
(void)unlink(logpath);
lirc_log_set_file(logpath);
lirc_log_open("xmode2", 0, level);
device = options_getstring("xmode2:device");
if (strcmp(device, LIRCD) == 0) {
fputs("Refusing to connect to lircd socket\n", stderr);
return EXIT_FAILURE;
}
if (use_raw_access) {
printf("Using raw access on device %s\n", device);
} else {
printf("Using driver %s on device %s\n",
options_getstring("xmode2:driver"),
device);
}
if (!isatty(STDIN_FILENO)) {
use_stdin = 1;
fd = STDIN_FILENO;
} else if (use_raw_access) {
fd = open(device, O_RDONLY);
if (fd == -1) {
perrorf("Error opening %s", device ? device : "Null");
exit(EXIT_FAILURE);
}
;
if ((fstat(fd, &s) != -1) && (S_ISFIFO(s.st_mode))) {
/* can't do ioctls on a pipe */
} else if ((fstat(fd, &s) != -1) && (!S_ISCHR(s.st_mode))) {
fprintf(stderr,
"%s is not a character device\n", device);
fputs("Use the -d option to specify the correct device\n",
stderr);
close(fd);
exit(EXIT_FAILURE);
} else if (ioctl(fd, LIRC_GET_REC_MODE, &mode) == -1) {
fputs(MSG_MODE2_DRIVER, stderr);
exit(EXIT_FAILURE);
}
} else {
curr_driver->open_func(device);
opt = options_getstring("lircd:driver-options");
if (drv_handle_options(opt) != 0) {
fprintf(stderr,
"Cannot set driver (%s) options (%s)\n",
curr_driver->name, opt);
return EXIT_FAILURE;
}
if (curr_driver->init_func && !curr_driver->init_func()) {
fputs("Cannot initialize hardware\n", stderr);
exit(EXIT_FAILURE);
}
fd = curr_driver->fd; /* please compiler */
mode = curr_driver->rec_mode;
if (mode != LIRC_MODE_MODE2) {
if (strcmp(curr_driver->name, "default") == 0) {
puts(MSG_USE_RAW);
} else {
puts(MSG_BAD_DRIVER);
}
exit(EXIT_FAILURE);
}
}
if (geteuid() == 0)
drop_root_cli(setuid);
initscreen(geometry);
xfd = XConnectionNumber(d1);
maxfd = fd > xfd ? fd : xfd;
y1 = 20;
x1 = 0;
drawGrid(div_);
while (1) {
while (XPending(d1) > 0) {
XNextEvent(d1, &event_return1);
switch (event_return1.type) {
case KeyPress:
if (1 == XLookupString(&event_return1.xkey,
textbuffer,
sizeof(textbuffer),
NULL, NULL)) {
switch (textbuffer[0]) {
case 'q':
closescreen();
exit(1);
case 'm':
dmode = !dmode;
break;
/*
* Switch the time-base, the screen is not cleared because it is useful to see
* the IR data with different time-bases on the same screen. The new time-base
* text is drawn to the screen and the waveform is set to start on a new line.
*/
case '.':
point = 1; /* Remember the decimal point */
break;
case '1':
div_ = 100; /* 1ms, 1000us per division / 10 pixels per division. */
showText = 1;
break;
case '2':
div_ = 200;
showText = 1;
break;
case '5':
div_ = 500;
showText = 1;
break;
}
if (showText) {
showText = 0;
if (point) {
point = 0;
div_ /= 10;
}
y1 += 25;
sprintf(textbuffer, "%5.3f ms/div", div_ / 100.0);
XDrawString(d1, w1, gc2,
w1_w - 100,
y1,
textbuffer,
strlen(textbuffer));
y1 += 5;
x1 = 0;
}
}
break;
case Expose:
case ConfigureNotify:
switch (event_return1.type) {
case Expose:
break;
case ConfigureNotify:
if ((int) w1_w == event_return1.xconfigure.width &&
(int) w1_h == event_return1.xconfigure.height)
continue;
w1_w = event_return1.xconfigure.width;
w1_h = event_return1.xconfigure.height;
break;
}
y1 = 20;
x1 = 0;
drawGrid(div_);
break;
default:
break;
}
}
FD_ZERO(&rfds);
FD_SET(fd, &rfds);
FD_SET(xfd, &rfds);
select(maxfd + 1, &rfds, NULL, NULL, NULL);
if (FD_ISSET(fd, &rfds)) {
if (use_stdin) {
static int space = 1;
unsigned long scan;
if (space)
result = fscanf(stdin, "space %ld\n", &scan);
else
result = fscanf(stdin, "pulse %ld\n", &scan);
if (result == 1) {
data = (lirc_t)scan;
if (!space)
data |= PULSE_BIT;
} else {
fd = STDOUT_FILENO;
}
space = !space;
} else {
/*
* Must use the driver read function, the UDP driver reformats the data!
*/
data = curr_driver->readdata(0);
if (data == 0) {
fprintf(stderr, "readdata() failed\n");
result = 0;
} else {
result = 1;
}
}
if (result != 0) {
if lirc_log_is_enabled_for(LIRC_DEBUG) {
if (data & PULSE_BIT)
printf("%.8x\t", data);
else
printf("%.8x\n", data);
}
dx = (data & PULSE_MASK) / (div_);
if (dx > 400) {
if (!dmode)
y1 += 15;
else
y1++;
x1 = 0;
} else {
if (x1 == 0) {
if (!dmode)
XDrawLine(d1, w1, gc2, x1, y1 + 10, x1 + 10, y1 + 10);
x1 += 10;
if (!dmode)
XDrawLine(d1, w1, gc2, x1, y1 + 10, x1, y1);
}
if (x1 < (int) w1_w) {
if (dmode) {
if (data & PULSE_BIT)
XDrawLine(d1, w1, gc2, x1, y1, x1 + dx, y1);
x1 += dx;
} else {
XDrawLine(d1, w1, gc2,
x1, ((data & PULSE_BIT) ? y1 : y1 + 10),
x1 + dx, ((data & PULSE_BIT) ? y1 : y1 + 10));
x1 += dx;
XDrawLine(d1, w1, gc2,
x1, ((data & PULSE_BIT) ? y1 : y1 + 10),
x1, ((data & PULSE_BIT) ? y1 + 10 : y1));
}
}
}
if (y1 > (lirc_t) w1_h) {
x1 = 0;
drawGrid(div_);
}
}
XFlush(d1);
}
}
exit(EXIT_SUCCESS);
}
|