这个函数的主要功能是根据模块ID寻找硬件模块动态链接库德地址,然后调用load去打开动态链接库并从中获取硬件模块结构体地址。首先得到是根据固定的符号HAL_MODULE_INFO_SYM寻找到hw_module_t结构体,然后又hw_moule_t中hw_module_methods_t结构体成员函数提供的open结构打开相应的模块,并初始化。由于用户调用open一般都会传入一个指向hw_device_t指针的指针。这样open函数就将对模块的操作函数结构保存在了这个hw_device_t的结构体里面,用户通过它和模块交互
代码@/hardware/libhardware/hardware.c
int hw_get_module(const char *id, const struct hw_module_t **module)
120 {
121 int status;
122 int i;
123 const struct hw_module_t *hmi = NULL;
124 char prop[PATH_MAX];
125 char path[PATH_MAX];
/* Loop through the configuration variants looking for a module */
135 for (i=0 ; i<HAL_VARIANT_KEYS_COUNT+1 ; i++) {
/*
*这个地方我们来看一下下面将要用到的一个数组variant_keys,因为HAL_VARIANT_KEYS_COUNT这个就是
*数组variant_keys的大小。
*
*44 static const char *variant_keys[] = {
* 45 "ro.hardware", /* This goes first so that it can pick up a different
* 46 file on the emulator. */
* 47 "ro.product.board",
* 48 "ro.board.platform",
* 49