Tizen Native API
5.0
|
Functions | |
Eina_Value * | eina_value_struct_new (const Eina_Value_Struct_Desc *desc) |
Creates generic value storage of type struct. | |
static Eina_Bool | eina_value_struct_setup (Eina_Value *value, const Eina_Value_Struct_Desc *desc) |
Initializes generic value storage of type struct. | |
static Eina_Bool | eina_value_struct_set (Eina_Value *value, const char *name,...) |
Sets the generic value in an struct member. | |
static Eina_Bool | eina_value_struct_get (const Eina_Value *value, const char *name,...) |
Gets the generic value from an struct member. | |
static Eina_Bool | eina_value_struct_vset (Eina_Value *value, const char *name, va_list args) |
Sets the generic value in an struct member. | |
static Eina_Bool | eina_value_struct_vget (const Eina_Value *value, const char *name, va_list args) |
Gets the generic value from an struct member. | |
static Eina_Bool | eina_value_struct_pset (Eina_Value *value, const char *name, const void *ptr) |
Sets the generic value in an struct member from pointer. | |
static Eina_Bool | eina_value_struct_pget (const Eina_Value *value, const char *name, void *ptr) |
Gets the generic value to pointer from an struct member. | |
static Eina_Bool | eina_value_struct_value_get (const Eina_Value *src, const char *name, Eina_Value *dst) |
Gets the member as Eina_Value copy. | |
static Eina_Bool | eina_value_struct_value_set (Eina_Value *dst, const char *name, const Eina_Value *src) |
Sets the member from Eina_Value source. | |
static Eina_Bool | eina_value_struct_member_value_get (const Eina_Value *src, const Eina_Value_Struct_Member *member, Eina_Value *dst) |
Gets the member as Eina_Value copy given its member description. | |
static Eina_Bool | eina_value_struct_member_value_set (Eina_Value *dst, const Eina_Value_Struct_Member *member, const Eina_Value *src) |
Sets the member from Eina_Value source. | |
Eina_Value_Struct_Desc * | eina_value_util_struct_desc_new (void) |
Creates a basic Eina_Value struct desc with refcounting. | |
Eina_Value * | eina_value_util_time_string_new (const char *timestr) |
Creates a new Eina_Value containing the passed parameter. | |
Typedefs | |
typedef struct _Eina_Value_Struct_Operations | Eina_Value_Struct_Operations |
typedef struct _Eina_Value_Struct_Member | Eina_Value_Struct_Member |
typedef struct _Eina_Value_Struct_Desc | Eina_Value_Struct_Desc |
typedef struct _Eina_Value_Struct | Eina_Value_Struct |
Defines | |
#define | EINA_VALUE_STRUCT_OPERATIONS_VERSION (1) |
#define | EINA_VALUE_STRUCT_DESC_VERSION (1) |
#define | EINA_VALUE_STRUCT_MEMBER(eina_value_type, type, member) {#member, eina_value_type, offsetof(type, member)} |
#define | EINA_VALUE_STRUCT_MEMBER_SENTINEL {NULL, NULL, 0} |
#define EINA_VALUE_STRUCT_DESC_VERSION (1) |
Current API version, used to validate _Eina_Value_Struct_Desc.
#define EINA_VALUE_STRUCT_MEMBER | ( | eina_value_type, | |
type, | |||
member | |||
) | {#member, eina_value_type, offsetof(type, member)} |
Helper to define Eina_Value_Struct_Member fields, uses offsetof() with type and member.
#define EINA_VALUE_STRUCT_MEMBER_SENTINEL {NULL, NULL, 0} |
Helper to define Eina_Value_Struct_Member fields for sentinel (last item), useful if you did not define member_count
.
#define EINA_VALUE_STRUCT_OPERATIONS_VERSION (1) |
Current API version, used to validate _Eina_Value_Struct_Operations.
Value type for EINA_VALUE_TYPE_STRUCT.
Describes the struct by listing its size, members and operations.
Describes a single member of struct.
The member holds a name, type and its byte offset within the struct memory. Most Eina_Value_Struct functions takes the member name as parameter, as in eina_value_struct_set().
How to manage struct. Any NULL
callback is ignored.
A structure can specify alternative methods to allocate, free and copy itself. See structure definition for all methods.
static Eina_Bool eina_value_struct_get | ( | const Eina_Value * | value, |
const char * | name, | ||
... | |||
) | [static] |
Gets the generic value from an struct member.
value | Source value object |
name | Name to find the member |
The value is returned in the variable argument parameter, the actual value is type-dependent, but usually it will be what is stored inside the object. There shouldn't be any memory allocation, thus the contents should not be freed.
The variable argument is dependent on chosen member type. The list for basic types:
struct myst { int i; char c; }; const Eina_Value_Struct_Member myst_members[] = { {"i", EINA_VALUE_TYPE_INT, 0}, {"c", EINA_VALUE_TYPE_CHAR, 4}, {NULL, NULL, 0} }; const Eina_Value_Struct_Desc myst_desc = { EINA_VALUE_STRUCT_DESC_VERSION, NULL, myst_members, 2, sizeof(struct myst) }; Eina_Value *value = eina_value_struct_new(&my_desc); int x; char y; eina_value_struct_set(value, "i", 5678); eina_value_struct_get(value, "i", &x); eina_value_struct_set(value, "c", 0xf); eina_value_struct_get(value, "c", &y); eina_value_free(value);
static Eina_Bool eina_value_struct_member_value_get | ( | const Eina_Value * | src, |
const Eina_Value_Struct_Member * | member, | ||
Eina_Value * | dst | ||
) | [static] |
Gets the member as Eina_Value copy given its member description.
src | Source value object |
member | The member description to use |
dst | Where to return the member value. |
The argument dst is considered uninitialized and it's setup to the type of the member.
static Eina_Bool eina_value_struct_member_value_set | ( | Eina_Value * | dst, |
const Eina_Value_Struct_Member * | member, | ||
const Eina_Value * | src | ||
) | [static] |
Sets the member from Eina_Value source.
dst | destination value object |
member | the member description to use |
src | source value |
Eina_Value* eina_value_struct_new | ( | const Eina_Value_Struct_Desc * | desc | ) |
Creates generic value storage of type struct.
desc | How to manage this struct members. |
NULL
on failure.Create a new generic value storage of type struct. The members are managed using the description specified by desc.
On failure, NULL
is returned.
static Eina_Bool eina_value_struct_pget | ( | const Eina_Value * | value, |
const char * | name, | ||
void * | ptr | ||
) | [static] |
Gets the generic value to pointer from an struct member.
value | Source value object |
name | Name to find the member |
ptr | Pointer to receive the contents. |
The value is returned in pointer contents, the actual value is type-dependent, but usually it will be what is stored inside the object. There shouldn't be any memory allocation, thus the contents should not be freed.
The pointer type is dependent on chosen value type. The list for basic types:
struct myst { int i; char c; }; const Eina_Value_Struct_Member myst_members[] = { {"i", EINA_VALUE_TYPE_INT, 0}, {"c", EINA_VALUE_TYPE_CHAR, 4}, {NULL, NULL, 0} }; const Eina_Value_Struct_Desc myst_desc = { EINA_VALUE_STRUCT_DESC_VERSION, NULL, myst_members, 2, sizeof(struct myst) }; Eina_Value *value = eina_value_struct_new(&my_desc); int x = 5678; char y = 0xf; eina_value_struct_pset(value, "i", &); eina_value_struct_pget(value, "i", &x); eina_value_struct_pset(value, "c", &y); eina_value_struct_pget(value, "c", &y); eina_value_free(value);
static Eina_Bool eina_value_struct_pset | ( | Eina_Value * | value, |
const char * | name, | ||
const void * | ptr | ||
) | [static] |
Sets the generic value in an struct member from pointer.
value | Source value object |
name | Name to find the member |
ptr | Pointer to specify the contents. |
The pointer type is dependent on chosen value type. The list for basic types:
struct myst { int i; char c; }; const Eina_Value_Struct_Member myst_members[] = { {"i", EINA_VALUE_TYPE_INT, 0}, {"c", EINA_VALUE_TYPE_CHAR, 4}, {NULL, NULL, 0} }; const Eina_Value_Struct_Desc myst_desc = { EINA_VALUE_STRUCT_DESC_VERSION, NULL, myst_members, 2, sizeof(struct myst) }; Eina_Value *value = eina_value_struct_new(&my_desc); int x = 5678; char y = 0xf; eina_value_struct_pset(value, "i", &); eina_value_struct_pget(value, "i", &x); eina_value_struct_pset(value, "c", &y); eina_value_struct_pget(value, "c", &y); eina_value_free(value);
static Eina_Bool eina_value_struct_set | ( | Eina_Value * | value, |
const char * | name, | ||
... | |||
) | [static] |
Sets the generic value in an struct member.
value | Source value object |
name | Name to find the member |
The variable argument is dependent on chosen member type. The list for basic types:
struct myst { int i; char c; }; const Eina_Value_Struct_Member myst_members[] = { {"i", EINA_VALUE_TYPE_INT, 0}, {"c", EINA_VALUE_TYPE_CHAR, 4}, {NULL, NULL, 0} }; const Eina_Value_Struct_Desc myst_desc = { EINA_VALUE_STRUCT_DESC_VERSION, NULL, myst_members, 2, sizeof(struct myst) }; Eina_Value *value = eina_value_struct_new(&my_desc); int x; char y; eina_value_struct_set(value, "i", 5678); eina_value_struct_get(value, "i", &x); eina_value_struct_set(value, "c", 0xf); eina_value_struct_get(value, "c", &y); eina_value_free(value);
static Eina_Bool eina_value_struct_setup | ( | Eina_Value * | value, |
const Eina_Value_Struct_Desc * | desc | ||
) | [static] |
Initializes generic value storage of type struct.
value | Value object |
desc | How to manage this struct members. |
Initializes new generic value storage of type struct with the given desc.
This is the same as calling eina_value_set() with EINA_VALUE_TYPE_STRUCT followed by eina_value_pset() with the Eina_Value_Struct description configured.
On failure, EINA_FALSE is returned.
static Eina_Bool eina_value_struct_value_get | ( | const Eina_Value * | src, |
const char * | name, | ||
Eina_Value * | dst | ||
) | [static] |
Gets the member as Eina_Value copy.
src | Source value object |
name | Name to find the member |
dst | Shere to return the member value. |
The argument dst is considered uninitialized and it's setup to the type of the member.
static Eina_Bool eina_value_struct_value_set | ( | Eina_Value * | dst, |
const char * | name, | ||
const Eina_Value * | src | ||
) | [static] |
Sets the member from Eina_Value source.
dst | destination value object |
name | name to find the member |
src | source value |
static Eina_Bool eina_value_struct_vget | ( | const Eina_Value * | value, |
const char * | name, | ||
va_list | args | ||
) | [static] |
Gets the generic value from an struct member.
value | Source value object |
name | Name to find the member |
args | Variable argument |
The value is returned in the variable argument parameter, the actual value is type-dependent, but usually it will be what is stored inside the object. There shouldn't be any memory allocation, thus the contents should not be freed.
static Eina_Bool eina_value_struct_vset | ( | Eina_Value * | value, |
const char * | name, | ||
va_list | args | ||
) | [static] |
Sets the generic value in an struct member.
value | Source value object |
name | Name to find the member |
args | Variable argument |
Creates a basic Eina_Value struct desc with refcounting.
NULL
on failure Eina_Value* eina_value_util_time_string_new | ( | const char * | timestr | ) |
Creates a new Eina_Value containing the passed parameter.
timestr | The value to use |
Assumes members
is sorted by name and applies binary search for names.
Ideally the member_count
field is set to speed it up.
No other methods are set (alloc, free, copy, compare), then it uses the default operations.
Assumes members
name are stringshared and can be compared for equality without using its contents (simple pointer comparison).
Ideally the search name
will be stringshared as well, but it will do a second loop with a forced stringshare if it did not find the member.
No other methods are set (alloc, free, copy, compare), then it uses the default operations.