如何将/ dev / input / event *中的Linux密钥代码转换为Perl中的ASCII?

时间:2010-03-30 18:27:09

标签: linux perl ascii keycode

我正在编写一个从臭名昭着的/dev/input/event*读取数据的Perl脚本,但我没有找到将内核生成的密钥代码转换为ASCII的方法。

我在谈论这个表here中的linux密钥代码,我似乎找不到能帮助我翻译它们而不将数组硬编码到脚本中的东西。我错过了什么吗?

我想跳过数组部分,因为它似乎不是一个好习惯,所以任何想法? :)

4 个答案:

答案 0 :(得分:9)

不幸的是,我没有在Perl中编程,但这是一个用C编写的简单示例。也许它可能对你有帮助。

/*
 * Based on keytable.c by Mauro Carvalho Chehab
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>

#include <linux/input.h>

#include <string.h>
#include <linux/input.h>
#include <sys/ioctl.h>

#define KEY_RELEASE 0
#define KEY_PRESS 1
#define KEY_KEEPING_PRESSED 2

#include "parse.h"

void prtcode(int codes) {
    struct parse_key *p;

    for (p = keynames; p->name != NULL; p++) {
        if (p->value == (unsigned) codes) {
            printf("scancode %s (0x%02x)\n", p->name, codes);
            return;
        }
    }

    if (isprint(codes)) {
        printf("scancode '%c' (0x%02x)\n", codes, codes);
    } else {
        printf("scancode 0x%02x\n", codes);
    }
}

int main (int argc, char *argv[]) {
    int i, fd;
    struct input_event ev[64];

    if (argc != 2) {
        fprintf(stderr, "usage: %s event-device (/dev/input/eventX)\n", argv[0]);
        return 1;
    }

    if ((fd = open(argv[1], O_RDONLY)) < 0) {
        perror("Couldn't open input device");
        return 1;
    }

    while (1) {
        size_t rb = read(fd, ev, sizeof(ev));

        if (rb < (int) sizeof(struct input_event)) {
            perror("short read");
            return 1;
        }

        for (i = 0; i < (int) (rb / sizeof(struct input_event)); i++) {
            if (EV_KEY == ev[i].type) {
                if ((ev[i].value == KEY_PRESS) || (ev[i].value == KEY_KEEPING_PRESSED)) {
                    prtcode(ev[i].code);
                    printf("type %d code %d value %d\n", ev[i].type, ev[i].code, ev[i].value);
                    printf("\n");
                }
            }
        }
    }

    return 0;
}

要生成parse.h,请将其放入Makefile

parse.h: /usr/include/linux/input.h
    @echo generating parse.h
    @echo -en "struct parse_key {\n\tchar *name;\n\tunsigned int value;\n} " >parse.h
    @echo -en "keynames[] = {\n" >>parse.h

    @more /usr/include/linux/input.h |perl -n \
    -e 'if (m/^\#define\s+(KEY_[^\s]+)\s+(0x[\d\w]+|[\d]+)/) ' \
    -e '{ printf "\t{\"%s\", %s},\n",$$1,$$2; }' \
    -e 'if (m/^\#define\s+(BTN_[^\s]+)\s+(0x[\d\w]+|[\d]+)/) ' \
    -e '{ printf "\t{\"%s\", %s},\n",$$1,$$2; }' \
    >> parse.h
    @echo -en "\t{ NULL, 0}\n};\n" >>parse.h

然后,像这样使用它:

./keytable /dev/input/by-path/platform-i8042-serio-0-event-kbd

答案 1 :(得分:5)

这基本上是一个地图问题。您必须使用密钥代码并查找其ASCII等效代码。你认为“阵列部分”不是一个好习惯吗?

我没有在CPAN上看到这个模块,但这意味着你有机会成为第一个上传它的人。 :)

答案 2 :(得分:1)

示例1仅返回已经来自linux内核的相同密钥代码值。例如,按下'a'键可获得KEY_A 0x1e。你想要的是(以及我想要的)是ascii转换所以如果按下'a'我想看小写为0x61,大写为0x41。

答案 3 :(得分:0)

要从条形码读取器读取条形码,我想念一个简单的应用程序来将纯键击输入字符串。到目前为止,进行完整的键盘翻译要容易得多,因为条形码通常包含大部分数字和一些普通的ascii字符。 因此,也许这个简单的python3脚本可能也对其他入门有所帮助。它需要 if (ContextCompat.CheckSelfPermission(this, Manifest.Permission.WriteExternalStorage) != (int)Permission.Granted) { RequestPermissions(new string[] { Manifest.Permission.ReadExternalStorage, Manifest.Permission.WriteExternalStorage }, 0); } 作为库。 当然,您可能必须改编DependencyService.Get<IOpenFile>().OpenPDf("/storage/emulated/0/Download/test.pdf");。这适用于曼哈顿读者。

python3-evdev