Linux获取/dev/input目录下的event对应的设备【转】

时间:2023-03-09 02:58:54
Linux获取/dev/input目录下的event对应的设备【转】

转自:https://blog.****.net/qq_21792169/article/details/51458855

当我们在Linux操作系统下使用input子系统时,当我们先插鼠标,在插上摄像头与先插摄像头,在插鼠标,操作系统为两个设备分配的event号不是固定的,先插上的是event0,后插上的是event1 。那么问题来了,我们写应用程序,我们怎么知道那个设备对应那个event接口,我们不可能认为指定使用那个接口,因为有时候插播顺序并不一致,下面我用代码来获取event接口。
使用cat /proc/bus/input/devices  
I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
S: Sysfs=/devices/platform/i8042/serio0/input/input2
U: Uniq=
H: Handlers=kbd event2 
B: EV=120013
B: KEY=4 2000000 3803078 f800d001 feffffdf ffefffff ffffffff fffffffe
B: MSC=10
B: LED=7

I: Bus=0011 Vendor=0002 Product=0005 Version=0000
N: Name="ImPS/2 Generic Wheel Mouse"
P: Phys=isa0060/serio1/input0
S: Sysfs=/devices/platform/i8042/serio1/input/input3
U: Uniq=
H: Handlers=mouse1 event3 
B: EV=7
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=103

主要观察打印信息,Name项是不一样的,我们就可以从这里下手,读取到这个名字,然后在这一类中读取event的值。
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <unistd.h>
  6. #include <string.h>
  7. #include <sys/mman.h>
  8. //#define DBG_PRINTF(...)
  9. #define DBG_PRINTF printf
  10. char *command="cat /proc/bus/input/devices > log.txt" ;
  11. char *file_path="./log.txt";
  12. char  *file_buff;
  13. int number;
  14. int find_event()
  15. {
  16. int iFd;
  17. FILE *tFp;
  18. struct stat tStat;
  19. char *sub_buff="Handlers=mouse1";
  20. /* according  to mouse name find event number*/
  21. char *buff;
  22. tFp=fopen(file_path,"r+");    /* check if have log.txt file */
  23. if(NULL!=tFp)
  24. {
  25. fclose(tFp);
  26. system("rm log.txt");
  27. }
  28. system(command);
  29. /* 打开文件 */
  30. tFp = fopen(file_path, "r+");
  31. if (tFp == NULL)
  32. {
  33. DBG_PRINTF("can't open %s\n", file_path);
  34. return -1;
  35. }
  36. iFd = fileno(tFp);
  37. fstat(iFd, &tStat);
  38. /* mmap the file to mem */
  39. file_buff = (unsigned char *)mmap(NULL , tStat.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, iFd, 0);
  40. if (file_buff== (unsigned char *)-1)
  41. {
  42. DBG_PRINTF("mmap error!\n");
  43. return -1;
  44. }
  45. buff=strstr(file_buff,sub_buff);/* in the mem file_buff  find sub_buff name */
  46. if(NULL==buff)
  47. {
  48. DBG_PRINTF("can't find %s\n",sub_buff);
  49. munmap(file_buff, tStat.st_size);
  50. return -1;
  51. }
  52. number=*(buff+strlen(sub_buff)+6);/* 6== event */
  53. munmap(file_buff, tStat.st_size);
  54. fclose(tFp);
  55. return  0;
  56. }
  57. int main(int argc, char **argv)
  58. {
  59. find_event();
  60. DBG_PRINTF("event%d\n",number-'0');
  61. return 0;
  62. }
遇到同样的问题我们可以采取同样的措施,先映射到内存上,再来查找。也可以直接使用fopen打开文件,然后使用fgets函数来读取到buf中,在使用strstr来查找。

查看CPU信息:cat /proc/cpuinfo  
  
查看内存信息:cat /proc/meminfo  
  
查看USB设备:cat /proc/bus/usb/devices  
  
查看键盘和鼠标:cat /proc/bus/input/devices  
  
查看各分区使用情况:df  
查看体系结构:busybox uname -a  
  
查看中断信息:cat /proc/interrupts