0.1:关键结构体input_event信息:
struct input_event {
struct timeval time
__u16 type
__u16 code
__s32 value
}
type: 设备类型。可以设置为:
sdk封装的解决思路;
type:EV_REL鼠标设备 0x02
code : rel_x 0x00 表示x轴方向 rel_y 0x01 表示y轴方向 (一次鼠标移动会产生两个input event事件)
value: EV_REL type下有正负表示方向
介绍键盘的code
Type为EV_KEY时,value: 0表示按键抬起。1表示按键按下。(4表示持续按下等?)。
问题:因为会出现一次鼠标移动就有两个事件产生,所以就要判断这一时刻到底是哪个事件
方法:
鼠标事件:
上1
下0
左2
右3
键盘事件:
上103
下108
左105
右106
停28
蓝牙键盘
1:2
2:3
3:4
4:5
5:6
w:17
a:30
s:31
d:32
UUID在文件系统中的使用UUID可以持久唯一标识一个硬盘分区。其实方式很简单,就是在文件系统的超级块中使用128位存放UUID。这个UUID是在使用文件系统格式化分区时计算生成的,例如Linux下的文件系统工具mkfs就在格式化分区的同时,生成UUID并把它记录到超级块的固定区域中。
下面是ext2文件系统超级块结构:
struct ext2_super_block
{ __u32 s_inodes_count /* 文件系统中索引节点总数 */
__u32 s_blocks_count /*文件系统中总块数 */
__u32 s_r_blocks_count /* 为超级用户保留的块数 */
__u32 s_free_blocks_count /*文件系统中空闲块总数 */
__u32 s_free_inodes_count /*文件系统中空闲索引节点总数*/
__u32 s_first_data_block /* 文件系统中第一个数据块 */
__u32 s_log_block_size /* 用于计算逻辑块大小 */
__s32 s_log_frag_size /* 用于计算片大小 */
__u32 s_blocks_per_group/* 每组中块数 */
__u32 s_frags_per_group /* 每组中片数 */
__u32 s_inodes_per_group/* 每组中索引节点数 */
__u32 s_mtime /*最后一次安装 *** 作的时间 */
__u32 s_wtime/*最后一次对该超级块进行写 *** 作的时间 */
__u16 s_mnt_count /* 安装计数 */
__s16 s_max_mnt_count/* 最大可安装计数 */
__u16 s_magic /* 用于确定文件系统版本的标志 */
__u16 s_state /* 文件系统的状态*/
__u16 s_errors/* 当检测到有错误时如何处理 */
__u16 s_minor_rev_level /* 次版本号 */
__u32 s_lastcheck /* 最后一次检测文件系统状态的时间 */
__u32 s_checkinterval/* 两次对文件系统状态进行检测的间隔时间 */
__u32 s_rev_level /* 版本号 */
__u16 s_def_resuid /* 保留块的默认用户标识号 */
__u16 s_def_resgid /* 保留块的默认用户组标识号*/
/*
* These fields are for EXT2_DYNAMIC_REV superblocks only.
*
* Note: the difference between the compatible feature set and
* the incompatible feature set is that if there is a bit set
* in the incompatible feature set that the kernel doesn't
* know about, it should refuse to mount the filesystem.
*
* e2fsck's requirements are more strictif it doesn't know
* about a feature in either the compatible or incompatible
* feature set, it must abort and not try to meddle with
* things it doesn't understand...
*/
__u32 s_first_ino /* 第一个非保留的索引节点 */
__u16 s_inode_size /* 索引节点的大小 */
__u16 s_block_group_nr /* 该超级块的块组号 */
__u32 s_feature_compat /* 兼容特点的位图*/
__u32 s_feature_incompat/* 非兼容特点的位图 */
__u32 s_feature_ro_compat /* 只读兼容特点的位图*/
__u8s_uuid[16]/* 128位的文件系统标识号*/
chars_volume_name[16] /* 卷名 */
chars_last_mounted[64]/* 最后一个安装点的路径名 */
__u32 s_algorithm_usage_bitmap/* 用于压缩*/
/*
* Performance hints. Directory preallocation should only
* happen if the EXT2_COMPAT_PREALLOC flag is on.
*/
__u8s_prealloc_blocks /* 预分配的块数*/
__u8s_prealloc_dir_blocks /* 给目录预分配的块数 */
__u16 s_padding1
__u32 s_reserved[204] /* 用null填充块的末尾 */
}
可以看到s_uuid[16]就是存放分区UUID的地方。
这样,无论硬盘分区的标识就永远不会重复,而且只要分区没有被重新格式化,那么标识此分区的UUID永远不变。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)