## object\_t ### 概述 ![image](images/object_t_0.png) 对象接口。 ---------------------------------- ### 函数

| 函数名称 | 说明 | | -------- | ------------ | | object\_can\_exec | 检查是否可以执行指定的命令。 | | object\_can\_exec\_by\_path | 检查是否可以执行指定的命令。 | | object\_clone | clone对象。 | | object\_compare | 比较两个对象。 | | object\_copy\_prop | 拷贝指定的属性。 | | object\_create | 创建对象。 | | object\_create\_ex | 创建对象。 | | object\_eval | 计算一个表达式,表达式中引用的变量从prop中获取。 | | object\_exec | 执行指定的命令。 | | object\_exec\_by\_path | 执行指定的命令。 | | object\_foreach\_prop | 遍历所有属性。 | | object\_get\_child\_object | 获取下一级子对象。 | | object\_get\_desc | 获取对象的描述信息。 | | object\_get\_prop | 获取指定属性的值。 | | object\_get\_prop\_bool | 获取指定属性的bool类型的值。 | | object\_get\_prop\_bool\_by\_path | 获取指定属性的bool类型的值。 | | object\_get\_prop\_by\_path | 获取指定path属性的值。 | | object\_get\_prop\_double | 获取指定属性的浮点数类型的值。 | | object\_get\_prop\_float | 获取指定属性的浮点数类型的值。 | | object\_get\_prop\_float\_by\_path | 获取指定属性的浮点数类型的值。 | | object\_get\_prop\_int | 获取指定属性的整数类型的值。 | | object\_get\_prop\_int\_by\_path | 获取指定属性的整数类型的值。 | | object\_get\_prop\_int16 | 获取指定属性的int16类型的值。 | | object\_get\_prop\_int32 | 获取指定属性的int32类型的值。 | | object\_get\_prop\_int64 | 获取指定属性的int64类型的值。 | | object\_get\_prop\_int8 | 获取指定属性的int8类型的值。 | | object\_get\_prop\_object | 获取指定属性的object类型的值。 | | object\_get\_prop\_object\_by\_path | 获取指定属性的object类型的值。 | | object\_get\_prop\_pointer | 获取指定属性的指针类型的值。 | | object\_get\_prop\_pointer\_by\_path | 获取指定属性的指针类型的值。 | | object\_get\_prop\_str | 获取指定属性的字符串类型的值。 | | object\_get\_prop\_str\_by\_path | 获取指定属性的字符串类型的值。 | | object\_get\_prop\_uint16 | 获取指定属性的uint16类型的值。 | | object\_get\_prop\_uint32 | 获取指定属性的uint32类型的值。 | | object\_get\_prop\_uint64 | 获取指定属性的uint64类型的值。 | | object\_get\_prop\_uint8 | 获取指定属性的uint8类型的值。 | | object\_get\_size | 获取对象占用内存的大小。 | | object\_get\_type | 获取对象的类型名称。 | | object\_has\_prop | 检查是否存在指定的属性。 | | object\_has\_prop\_by\_path | 检查是否存在指定的属性。 | | object\_is\_collection | 判断对象是否是集合。 | | object\_notify\_changed | 触发EVT_PROPS_CHANGED事件。 | | object\_ref | 引用计数加1。 | | object\_remove\_prop | 删除指定属性。 | | object\_set\_name | 设置对象的名称。 | | object\_set\_prop | 设置指定属性的值。 | | object\_set\_prop\_bool | 设置指定属性的bool类型的值。 | | object\_set\_prop\_bool\_by\_path | 设置指定属性的bool类型的值。 | | object\_set\_prop\_by\_path | 设置指定属性的值。 | | object\_set\_prop\_double | 设置指定属性的浮点数类型的值。 | | object\_set\_prop\_float | 设置指定属性的浮点数类型的值。 | | object\_set\_prop\_float\_by\_path | 设置指定属性的浮点数类型的值。 | | object\_set\_prop\_int | 设置指定属性的整数类型的值。 | | object\_set\_prop\_int\_by\_path | 设置指定属性的整数类型的值。 | | object\_set\_prop\_int16 | 设置指定属性的int16类型的值。 | | object\_set\_prop\_int32 | 设置指定属性的int32类型的值。 | | object\_set\_prop\_int64 | 设置指定属性的int64类型的值。 | | object\_set\_prop\_int8 | 设置指定属性的int8类型的值。 | | object\_set\_prop\_object | 设置指定属性的object类型的值。 | | object\_set\_prop\_object\_by\_path | 设置指定属性的object类型的值。 | | object\_set\_prop\_pointer | 设置指定属性的指针类型的值。 | | object\_set\_prop\_pointer\_by\_path | 设置指定属性的指针类型的值。 | | object\_set\_prop\_str | 设置指定属性的字符串类型的值。 | | object\_set\_prop\_str\_by\_path | 设置指定属性的字符串类型的值。 | | object\_set\_prop\_uint16 | 设置指定属性的uint16类型的值。 | | object\_set\_prop\_uint32 | 设置指定属性的uint32类型的值。 | | object\_set\_prop\_uint64 | 设置指定属性的uint64类型的值。 | | object\_set\_prop\_uint8 | 设置指定属性的uint8类型的值。 | | object\_unref | 引用计数减1。引用计数为0时,销毁对象。 | ### 属性

| 属性名称 | 类型 | 说明 | | -------- | ----- | ------------ | | name | char* | 对象的名称。 | | ref\_count | int32\_t | 引用计数。 | #### object\_can\_exec 函数 ----------------------- * 函数功能: >

检查是否可以执行指定的命令。 * 函数原型: ``` bool_t object_can_exec (object_t* obj, const char* name, const char* args); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回TRUE表示可以执行,否则表示不可以执行。 | | obj | object\_t* | object对象。 | | name | const char* | 命令的名称。 | | args | const char* | 命令的参数。 | #### object\_can\_exec\_by\_path 函数 ----------------------- * 函数功能: >

检查是否可以执行指定的命令。 * 函数原型: ``` bool_t object_can_exec_by_path (object_t* obj, const char* path, const char* args); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回TRUE表示可以执行,否则表示不可以执行。 | | obj | object\_t* | object对象。 | | path | const char* | 命令的path。 | | args | const char* | 命令的参数。 | #### object\_clone 函数 ----------------------- * 函数功能: >

clone对象。 * 函数原型: ``` object_t* object_clone (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回object对象。 | | obj | object\_t* | object对象。 | #### object\_compare 函数 ----------------------- * 函数功能: >

比较两个对象。 * 函数原型: ``` int object_compare (object_t* obj, object_t* other); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int | 返回比较结果。 | | obj | object\_t* | object对象。 | | other | object\_t* | 比较的object对象。 | #### object\_copy\_prop 函数 ----------------------- * 函数功能: >

拷贝指定的属性。 * 函数原型: ``` ret_t object_copy_prop (object_t* obj, object_t* src, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | 目标对象。 | | src | object\_t* | 源对象。 | | name | const char* | 属性的名称。 | #### object\_create 函数 ----------------------- * 函数功能: >

创建对象。 > 仅供子类调用。 * 函数原型: ``` object_t* object_create (const object_vtable_t* vt); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回object对象。 | | vt | const object\_vtable\_t* | 虚函数表。 | #### object\_create\_ex 函数 ----------------------- * 函数功能: >

创建对象。 > 仅供子类调用。 * 函数原型: ``` object_t* object_create_ex (const object_vtable_t* vt, uint32_t extra_data_size); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回object对象。 | | vt | const object\_vtable\_t* | 虚函数表。 | | extra\_data\_size | uint32\_t | 额外的内存大小。 | #### object\_eval 函数 ----------------------- * 函数功能: >

计算一个表达式,表达式中引用的变量从prop中获取。 * 函数原型: ``` ret_t object_eval (object_t* obj, const char* expr, value_t* v); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | expr | const char* | 表达式。 | | v | value\_t* | 返回计算结果。 | #### object\_exec 函数 ----------------------- * 函数功能: >

执行指定的命令。 * 函数原型: ``` ret_t object_exec (object_t* obj, const char* name, const char* args); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 命令的名称。 | | args | const char* | 命令的参数。 | #### object\_exec\_by\_path 函数 ----------------------- * 函数功能: >

执行指定的命令。 * 函数原型: ``` ret_t object_exec_by_path (object_t* obj, const char* path, const char* args); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 命令的path。 | | args | const char* | 命令的参数。 | #### object\_foreach\_prop 函数 ----------------------- * 函数功能: >

遍历所有属性。 * 函数原型: ``` ret_t object_foreach_prop (object_t* obj, tk_visit_t on_prop, void* ctx); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | on\_prop | tk\_visit\_t | 回调函数(data参数为named\_value\_t类型)。 | | ctx | void* | 回调函数上下文。 | #### object\_get\_child\_object 函数 ----------------------- * 函数功能: >

获取下一级子对象。 > 属性路径之间使用符号"."分割,例如:name.sub_name。 * 函数原型: ``` object_t* object_get_child_object (object_t* obj, const char* path, const char** next_path); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回下一级子对象,如果找不到则返回 NULL。 | | obj | object\_t* | object对象。 | | path | const char* | 属性路径。 | | next\_path | const char** | 返回下一级属性路径。 | #### object\_get\_desc 函数 ----------------------- * 函数功能: >

获取对象的描述信息。 * 函数原型: ``` const char* object_get_desc (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | const char* | 返回对象的描述信息。 | | obj | object\_t* | object对象。 | #### object\_get\_prop 函数 ----------------------- * 函数功能: >

获取指定属性的值。 * 函数原型: ``` ret_t object_get_prop (object_t* obj, const char* name, value_t* v); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | v | value\_t* | 返回属性的值。 | #### object\_get\_prop\_bool 函数 ----------------------- * 函数功能: >

获取指定属性的bool类型的值。 * 函数原型: ``` bool_t object_get_prop_bool (object_t* obj, const char* name, bool_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回指定属性的bool类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | bool\_t | 缺省值。 | #### object\_get\_prop\_bool\_by\_path 函数 ----------------------- * 函数功能: >

获取指定属性的bool类型的值。 * 函数原型: ``` bool_t object_get_prop_bool_by_path (object_t* obj, const char* path, bool_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回指定属性的bool类型的值。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | defval | bool\_t | 缺省值。 | #### object\_get\_prop\_by\_path 函数 ----------------------- * 函数功能: >

获取指定path属性的值。 * 函数原型: ``` ret_t object_get_prop_by_path (object_t* obj, const char* path, value_t* v); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path,各级之间用.分隔。 | | v | value\_t* | 返回属性的值。 | #### object\_get\_prop\_double 函数 ----------------------- * 函数功能: >

获取指定属性的浮点数类型的值。 * 函数原型: ``` double object_get_prop_double (object_t* obj, const char* name, double defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | double | 返回指定属性的浮点数类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | double | 缺省值。 | #### object\_get\_prop\_float 函数 ----------------------- * 函数功能: >

获取指定属性的浮点数类型的值。 * 函数原型: ``` float_t object_get_prop_float (object_t* obj, const char* name, float_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | float\_t | 返回指定属性的浮点数类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | float\_t | 缺省值。 | #### object\_get\_prop\_float\_by\_path 函数 ----------------------- * 函数功能: >

获取指定属性的浮点数类型的值。 e * 函数原型: ``` float_t object_get_prop_float_by_path (object_t* obj, const char* path, float_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | float\_t | 返回指定属性的浮点数类型的值。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | defval | float\_t | 缺省值。 | #### object\_get\_prop\_int 函数 ----------------------- * 函数功能: >

获取指定属性的整数类型的值。 * 函数原型: ``` int32_t object_get_prop_int (object_t* obj, const char* name, int32_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int32\_t | 返回指定属性的整数类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | int32\_t | 缺省值。 | #### object\_get\_prop\_int\_by\_path 函数 ----------------------- * 函数功能: >

获取指定属性的整数类型的值。 * 函数原型: ``` int32_t object_get_prop_int_by_path (object_t* obj, const char* path, int32_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int32\_t | 返回指定属性的整数类型的值。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | defval | int32\_t | 缺省值。 | #### object\_get\_prop\_int16 函数 ----------------------- * 函数功能: >

获取指定属性的int16类型的值。 * 函数原型: ``` int16_t object_get_prop_int16 (object_t* obj, const char* name, int16_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int16\_t | 返回指定属性的int16类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | int16\_t | 缺省值。 | #### object\_get\_prop\_int32 函数 ----------------------- * 函数功能: >

获取指定属性的int32类型的值。 * 函数原型: ``` int32_t object_get_prop_int32 (object_t* obj, const char* name, int32_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int32\_t | 返回指定属性的int32类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | int32\_t | 缺省值。 | #### object\_get\_prop\_int64 函数 ----------------------- * 函数功能: >

获取指定属性的int64类型的值。 * 函数原型: ``` int64_t object_get_prop_int64 (object_t* obj, const char* name, int64_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int64\_t | 返回指定属性的int64类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | int64\_t | 缺省值。 | #### object\_get\_prop\_int8 函数 ----------------------- * 函数功能: >

获取指定属性的int8类型的值。 * 函数原型: ``` int8_t object_get_prop_int8 (object_t* obj, const char* name, int8_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | int8\_t | 返回指定属性的int8类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | int8\_t | 缺省值。 | #### object\_get\_prop\_object 函数 ----------------------- * 函数功能: >

获取指定属性的object类型的值。 * 函数原型: ``` object_t* object_get_prop_object (object_t* obj, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回指定属性的object类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | #### object\_get\_prop\_object\_by\_path 函数 ----------------------- * 函数功能: >

获取指定属性的object类型的值。 * 函数原型: ``` object_t* object_get_prop_object_by_path (object_t* obj, const char* path); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回指定属性的object类型的值。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | #### object\_get\_prop\_pointer 函数 ----------------------- * 函数功能: >

获取指定属性的指针类型的值。 * 函数原型: ``` void* object_get_prop_pointer (object_t* obj, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | void* | 返回指定属性的指针类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | #### object\_get\_prop\_pointer\_by\_path 函数 ----------------------- * 函数功能: >

获取指定属性的指针类型的值。 * 函数原型: ``` void* object_get_prop_pointer_by_path (object_t* obj, const char* path); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | void* | 返回指定属性的指针类型的值。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | #### object\_get\_prop\_str 函数 ----------------------- * 函数功能: >

获取指定属性的字符串类型的值。 * 函数原型: ``` const char* object_get_prop_str (object_t* obj, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | const char* | 返回指定属性的字符串类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | #### object\_get\_prop\_str\_by\_path 函数 ----------------------- * 函数功能: >

获取指定属性的字符串类型的值。 * 函数原型: ``` const char* object_get_prop_str_by_path (object_t* obj, const char* path); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | const char* | 返回指定属性的字符串类型的值。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | #### object\_get\_prop\_uint16 函数 ----------------------- * 函数功能: >

获取指定属性的uint16类型的值。 * 函数原型: ``` uint16_t object_get_prop_uint16 (object_t* obj, const char* name, uint16_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint16\_t | 返回指定属性的uint16类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | uint16\_t | 缺省值。 | #### object\_get\_prop\_uint32 函数 ----------------------- * 函数功能: >

获取指定属性的uint32类型的值。 * 函数原型: ``` uint32_t object_get_prop_uint32 (object_t* obj, const char* name, uint32_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint32\_t | 返回指定属性的uint32类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | uint32\_t | 缺省值。 | #### object\_get\_prop\_uint64 函数 ----------------------- * 函数功能: >

获取指定属性的uint64类型的值。 * 函数原型: ``` uint64_t object_get_prop_uint64 (object_t* obj, const char* name, uint64_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint64\_t | 返回指定属性的uint64类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | uint64\_t | 缺省值。 | #### object\_get\_prop\_uint8 函数 ----------------------- * 函数功能: >

获取指定属性的uint8类型的值。 * 函数原型: ``` uint8_t object_get_prop_uint8 (object_t* obj, const char* name, uint8_t defval); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint8\_t | 返回指定属性的uint8类型的值。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | defval | uint8\_t | 缺省值。 | #### object\_get\_size 函数 ----------------------- * 函数功能: >

获取对象占用内存的大小。 * 函数原型: ``` uint32_t object_get_size (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | uint32\_t | 返回对象占用内存的大小。 | | obj | object\_t* | object对象。 | #### object\_get\_type 函数 ----------------------- * 函数功能: >

获取对象的类型名称。 * 函数原型: ``` const char* object_get_type (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | const char* | 返回对象的类型名称。 | | obj | object\_t* | object对象。 | #### object\_has\_prop 函数 ----------------------- * 函数功能: >

检查是否存在指定的属性。 * 函数原型: ``` bool_t object_has_prop (object_t* obj, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回TRUE表示存在,否则表示不存在。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | #### object\_has\_prop\_by\_path 函数 ----------------------- * 函数功能: >

检查是否存在指定的属性。 * 函数原型: ``` bool_t object_has_prop_by_path (object_t* obj, const char* path); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回TRUE表示存在,否则表示不存在。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path,各级之间用.分隔。 | #### object\_is\_collection 函数 ----------------------- * 函数功能: >

判断对象是否是集合。 * 函数原型: ``` bool_t object_is_collection (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | bool\_t | 返回TRUE表示是集合,否则不是。 | | obj | object\_t* | object对象。 | #### object\_notify\_changed 函数 ----------------------- * 函数功能: >

触发EVT_PROPS_CHANGED事件。 * 函数原型: ``` ret_t object_notify_changed (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | #### object\_ref 函数 ----------------------- * 函数功能: >

引用计数加1。 * 函数原型: ``` object_t* object_ref (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | object\_t* | 返回object对象。 | | obj | object\_t* | object对象。 | #### object\_remove\_prop 函数 ----------------------- * 函数功能: >

删除指定属性。 * 函数原型: ``` ret_t object_remove_prop (object_t* obj, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | #### object\_set\_name 函数 ----------------------- * 函数功能: >

设置对象的名称。 * 函数原型: ``` ret_t object_set_name (object_t* obj, const char* name); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 对象的名称。 | #### object\_set\_prop 函数 ----------------------- * 函数功能: >

设置指定属性的值。 * 函数原型: ``` ret_t object_set_prop (object_t* obj, const char* name, value_t* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | value\_t* | 属性的值。 | #### object\_set\_prop\_bool 函数 ----------------------- * 函数功能: >

设置指定属性的bool类型的值。 * 函数原型: ``` ret_t object_set_prop_bool (object_t* obj, const char* name, bool_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | bool\_t | 属性的值。 | #### object\_set\_prop\_bool\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的bool类型的值。 * 函数原型: ``` ret_t object_set_prop_bool_by_path (object_t* obj, const char* path, bool_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | bool\_t | 属性的值。 | #### object\_set\_prop\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的值。 * 函数原型: ``` ret_t object_set_prop_by_path (object_t* obj, const char* path, value_t* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | value\_t* | 属性的值。 | #### object\_set\_prop\_double 函数 ----------------------- * 函数功能: >

设置指定属性的浮点数类型的值。 * 函数原型: ``` ret_t object_set_prop_double (object_t* obj, const char* name, double value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | double | 属性的值。 | #### object\_set\_prop\_float 函数 ----------------------- * 函数功能: >

设置指定属性的浮点数类型的值。 * 函数原型: ``` ret_t object_set_prop_float (object_t* obj, const char* name, float_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | float\_t | 属性的值。 | #### object\_set\_prop\_float\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的浮点数类型的值。 * 函数原型: ``` ret_t object_set_prop_float_by_path (object_t* obj, const char* path, float_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | float\_t | 属性的值。 | #### object\_set\_prop\_int 函数 ----------------------- * 函数功能: >

设置指定属性的整数类型的值。 * 函数原型: ``` ret_t object_set_prop_int (object_t* obj, const char* name, int32_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | int32\_t | 属性的值。 | #### object\_set\_prop\_int\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的整数类型的值。 * 函数原型: ``` ret_t object_set_prop_int_by_path (object_t* obj, const char* path, int32_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | int32\_t | 属性的值。 | #### object\_set\_prop\_int16 函数 ----------------------- * 函数功能: >

设置指定属性的int16类型的值。 * 函数原型: ``` ret_t object_set_prop_int16 (object_t* obj, const char* name, int16_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | int16\_t | 属性的值。 | #### object\_set\_prop\_int32 函数 ----------------------- * 函数功能: >

设置指定属性的int32类型的值。 * 函数原型: ``` ret_t object_set_prop_int32 (object_t* obj, const char* name, int32_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | int32\_t | 属性的值。 | #### object\_set\_prop\_int64 函数 ----------------------- * 函数功能: >

设置指定属性的int64类型的值。 * 函数原型: ``` ret_t object_set_prop_int64 (object_t* obj, const char* name, int64_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | int64\_t | 属性的值。 | #### object\_set\_prop\_int8 函数 ----------------------- * 函数功能: >

设置指定属性的int8类型的值。 * 函数原型: ``` ret_t object_set_prop_int8 (object_t* obj, const char* name, int8_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | int8\_t | 属性的值。 | #### object\_set\_prop\_object 函数 ----------------------- * 函数功能: >

设置指定属性的object类型的值。 * 函数原型: ``` ret_t object_set_prop_object (object_t* obj, const char* name, object_t* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | object\_t* | 属性的值。 | #### object\_set\_prop\_object\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的object类型的值。 * 函数原型: ``` ret_t object_set_prop_object_by_path (object_t* obj, const char* path, object_t* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | object\_t* | 属性的值。 | #### object\_set\_prop\_pointer 函数 ----------------------- * 函数功能: >

设置指定属性的指针类型的值。 * 函数原型: ``` ret_t object_set_prop_pointer (object_t* obj, const char* name, void* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | void* | 属性的值。 | #### object\_set\_prop\_pointer\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的指针类型的值。 * 函数原型: ``` ret_t object_set_prop_pointer_by_path (object_t* obj, const char* path, void* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | void* | 属性的值。 | #### object\_set\_prop\_str 函数 ----------------------- * 函数功能: >

设置指定属性的字符串类型的值。 * 函数原型: ``` ret_t object_set_prop_str (object_t* obj, const char* name, const char* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | const char* | 属性的值。 | #### object\_set\_prop\_str\_by\_path 函数 ----------------------- * 函数功能: >

设置指定属性的字符串类型的值。 * 函数原型: ``` ret_t object_set_prop_str_by_path (object_t* obj, const char* path, const char* value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | path | const char* | 属性的path。 | | value | const char* | 属性的值。 | #### object\_set\_prop\_uint16 函数 ----------------------- * 函数功能: >

设置指定属性的uint16类型的值。 * 函数原型: ``` ret_t object_set_prop_uint16 (object_t* obj, const char* name, uint16_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | uint16\_t | 属性的值。 | #### object\_set\_prop\_uint32 函数 ----------------------- * 函数功能: >

设置指定属性的uint32类型的值。 * 函数原型: ``` ret_t object_set_prop_uint32 (object_t* obj, const char* name, uint32_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | uint32\_t | 属性的值。 | #### object\_set\_prop\_uint64 函数 ----------------------- * 函数功能: >

设置指定属性的uint64类型的值。 * 函数原型: ``` ret_t object_set_prop_uint64 (object_t* obj, const char* name, uint64_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | uint64\_t | 属性的值。 | #### object\_set\_prop\_uint8 函数 ----------------------- * 函数功能: >

设置指定属性的uint8类型的值。 * 函数原型: ``` ret_t object_set_prop_uint8 (object_t* obj, const char* name, uint8_t value); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | | name | const char* | 属性的名称。 | | value | uint8\_t | 属性的值。 | #### object\_unref 函数 ----------------------- * 函数功能: >

引用计数减1。引用计数为0时,销毁对象。 * 函数原型: ``` ret_t object_unref (object_t* obj); ``` * 参数说明: | 参数 | 类型 | 说明 | | -------- | ----- | --------- | | 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 | | obj | object\_t* | object对象。 | #### name 属性 ----------------------- >

对象的名称。 * 类型:char* | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可脚本化 | 是 | #### ref\_count 属性 ----------------------- >

引用计数。 * 类型:int32\_t | 特性 | 是否支持 | | -------- | ----- | | 可直接读取 | 是 | | 可直接修改 | 否 | | 可脚本化 | 是 |