Tizen Native API
5.0
|
These functions provide matrix sparse management.
For more information, you can look at the tutorial_matrixsparse_page.
Functions | |
Eina_Matrixsparse * | eina_matrixsparse_new (unsigned long rows, unsigned long cols, void(*free_func)(void *user_data, void *cell_data), const void *user_data) |
Creates a new Sparse Matrix. | |
void | eina_matrixsparse_free (Eina_Matrixsparse *m) |
Frees resources allocated to Sparse Matrix. | |
void | eina_matrixsparse_size_get (const Eina_Matrixsparse *m, unsigned long *rows, unsigned long *cols) |
Gets the current size of Sparse Matrix. | |
Eina_Bool | eina_matrixsparse_size_set (Eina_Matrixsparse *m, unsigned long rows, unsigned long cols) |
Resizes the Sparse Matrix. | |
Eina_Bool | eina_matrixsparse_cell_idx_get (const Eina_Matrixsparse *m, unsigned long row, unsigned long col, Eina_Matrixsparse_Cell **cell) |
Gets the cell reference inside Sparse Matrix. | |
void * | eina_matrixsparse_cell_data_get (const Eina_Matrixsparse_Cell *cell) |
Gets data associated with given cell reference. | |
void * | eina_matrixsparse_data_idx_get (const Eina_Matrixsparse *m, unsigned long row, unsigned long col) |
Gets data associated with given cell given its indexes. | |
Eina_Bool | eina_matrixsparse_cell_position_get (const Eina_Matrixsparse_Cell *cell, unsigned long *row, unsigned long *col) |
Gets position (indexes) of the given cell. | |
Eina_Bool | eina_matrixsparse_cell_data_replace (Eina_Matrixsparse_Cell *cell, const void *data, void **p_old) |
Changes cell reference value without freeing the possibly existing old value. | |
Eina_Bool | eina_matrixsparse_cell_data_set (Eina_Matrixsparse_Cell *cell, const void *data) |
Changes cell value freeing the possibly existing old value. | |
Eina_Bool | eina_matrixsparse_data_idx_replace (Eina_Matrixsparse *m, unsigned long row, unsigned long col, const void *data, void **p_old) |
Changes cell value without freeing the possibly existing old value, using indexes. | |
Eina_Bool | eina_matrixsparse_data_idx_set (Eina_Matrixsparse *m, unsigned long row, unsigned long col, const void *data) |
Changes cell value freeing the possibly existing old value, using indexes. | |
Eina_Bool | eina_matrixsparse_row_idx_clear (Eina_Matrixsparse *m, unsigned long row) |
Clears (erases all cells) of row given its index. | |
Eina_Bool | eina_matrixsparse_column_idx_clear (Eina_Matrixsparse *m, unsigned long col) |
Clears (erases all cells) of column given its index. | |
Eina_Bool | eina_matrixsparse_cell_idx_clear (Eina_Matrixsparse *m, unsigned long row, unsigned long col) |
Clears (erases) cell given its indexes. | |
Eina_Bool | eina_matrixsparse_cell_clear (Eina_Matrixsparse_Cell *cell) |
Clears (erases) cell given its reference. | |
Eina_Iterator * | eina_matrixsparse_iterator_new (const Eina_Matrixsparse *m) |
Creates a new iterator over existing matrix cells. | |
Eina_Iterator * | eina_matrixsparse_iterator_complete_new (const Eina_Matrixsparse *m) |
Creates a new iterator over all matrix cells. | |
Typedefs | |
typedef struct _Eina_Matrixsparse | Eina_Matrixsparse |
typedef struct _Eina_Matrixsparse_Row | Eina_Matrixsparse_Row |
typedef struct _Eina_Matrixsparse_Cell | Eina_Matrixsparse_Cell |
Type for a generic sparse matrix.
Type for a generic sparse matrix cell, opaque for users.
Type for a generic sparse matrix row, opaque for users.
Clears (erases) cell given its reference.
cell | The cell reference, must not be NULL . |
void* eina_matrixsparse_cell_data_get | ( | const Eina_Matrixsparse_Cell * | cell | ) |
Gets data associated with given cell reference.
cell | Given cell reference, must not be NULL . |
Eina_Bool eina_matrixsparse_cell_data_replace | ( | Eina_Matrixsparse_Cell * | cell, |
const void * | data, | ||
void ** | p_old | ||
) |
Changes cell reference value without freeing the possibly existing old value.
cell | The cell reference, must not be NULL . |
data | New data to set. |
p_old | Returns the old value intact (not freed). |
NULL
).Eina_Bool eina_matrixsparse_cell_data_set | ( | Eina_Matrixsparse_Cell * | cell, |
const void * | data | ||
) |
Changes cell value freeing the possibly existing old value.
In contrast to eina_matrixsparse_cell_data_replace(), this function will call free_func()
on existing value.
cell | The cell reference, must not be NULL . |
data | New data to set. |
NULL
).Eina_Bool eina_matrixsparse_cell_idx_clear | ( | Eina_Matrixsparse * | m, |
unsigned long | row, | ||
unsigned long | col | ||
) |
Clears (erases) cell given its indexes.
Existing cell will be cleared with free_func()
given to eina_matrixsparse_new().
m | The sparse matrix to operate on. |
row | The new number of row to clear. |
col | The new number of column to clear. |
Eina_Bool eina_matrixsparse_cell_idx_get | ( | const Eina_Matrixsparse * | m, |
unsigned long | row, | ||
unsigned long | col, | ||
Eina_Matrixsparse_Cell ** | cell | ||
) |
Gets the cell reference inside Sparse Matrix.
m | The sparse matrix to operate on. |
row | The new number of row to clear. |
col | The new number of column to clear. |
cell | Pointer to return cell reference, if any exists. |
1
on success, 0
on failure. It is considered success if did not exist but index is inside matrix size, in this case *cell
== NULLEina_Bool eina_matrixsparse_cell_position_get | ( | const Eina_Matrixsparse_Cell * | cell, |
unsigned long * | row, | ||
unsigned long * | col | ||
) |
Gets position (indexes) of the given cell.
cell | The cell reference, must not be NULL . |
row | Where to store cell row number, may be NULL . |
col | Where to store cell column number, may be NULL . |
cell
is NULL
).Eina_Bool eina_matrixsparse_column_idx_clear | ( | Eina_Matrixsparse * | m, |
unsigned long | col | ||
) |
Clears (erases all cells) of column given its index.
Existing cells will be cleared with free_func()
given to eina_matrixsparse_new().
m | The sparse matrix to operate on. |
col | The new number of column to clear. |
void* eina_matrixsparse_data_idx_get | ( | const Eina_Matrixsparse * | m, |
unsigned long | row, | ||
unsigned long | col | ||
) |
Gets data associated with given cell given its indexes.
m | The sparse matrix to operate on. |
row | The new number of row to clear. |
col | The new number of column to clear. |
NULL
if nothing is associated.Eina_Bool eina_matrixsparse_data_idx_replace | ( | Eina_Matrixsparse * | m, |
unsigned long | row, | ||
unsigned long | col, | ||
const void * | data, | ||
void ** | p_old | ||
) |
Changes cell value without freeing the possibly existing old value, using indexes.
m | The sparse matrix, must not be NULL . |
row | The row number to set the value. |
col | The column number to set the value. |
data | New data to set. |
p_old | returns the old value intact (not freed). |
NULL
, indexes are not valid).Eina_Bool eina_matrixsparse_data_idx_set | ( | Eina_Matrixsparse * | m, |
unsigned long | row, | ||
unsigned long | col, | ||
const void * | data | ||
) |
Changes cell value freeing the possibly existing old value, using indexes.
In contrast to eina_matrixsparse_data_idx_replace(), this function will call free_func()
on existing value.
m | The sparse matrix, must not be NULL . |
row | The row number to set the value. |
col | The column number to set the value. |
data | New data to set. |
NULL
, indexes are not valid).void eina_matrixsparse_free | ( | Eina_Matrixsparse * | m | ) |
Frees resources allocated to Sparse Matrix.
m | The Sparse Matrix instance to free, must not be NULL . |
Creates a new iterator over all matrix cells.
Unlike eina_matrixsparse_iterator_new() this one will report all matrix cells, even those that are still empty (holes). These will be reported as dummy cells that contains no data.
Be aware that iterating a big matrix (1000x1000) will call your function that number of times (1000000 times in that case) even if your matrix have no elements at all!
The iterator data will be the cell reference, one may query current position with eina_matrixsparse_cell_position_get() and cell value with eina_matrixsparse_cell_data_get(). If cell is empty then the reference will be a dummy/placeholder, thus setting value with eina_matrixsparse_cell_data_set() will leave pointer unreferenced.
m | The Sparse Matrix reference, must not be NULL . |
Eina_Iterator* eina_matrixsparse_iterator_new | ( | const Eina_Matrixsparse * | m | ) |
Creates a new iterator over existing matrix cells.
This is a cheap walk, it will just report existing cells and holes in the sparse matrix will be ignored. That means the reported indexes will not be sequential.
The iterator data will be the cell reference, one may query current position with eina_matrixsparse_cell_position_get() and cell value with eina_matrixsparse_cell_data_get().
m | The Sparse Matrix reference, must not be NULL . |
Eina_Matrixsparse* eina_matrixsparse_new | ( | unsigned long | rows, |
unsigned long | cols, | ||
void(*)(void *user_data, void *cell_data) | free_func, | ||
const void * | user_data | ||
) |
Creates a new Sparse Matrix.
rows | Number of rows in matrix. Operations with rows greater than this value will fail. |
cols | Number of columns in matrix. Operations with columns greater than this value will fail. |
free_func | Used to delete cell data contents, used by eina_matrixsparse_free(), eina_matrixsparse_size_set(), eina_matrixsparse_row_idx_clear(), eina_matrixsparse_column_idx_clear(), eina_matrixsparse_cell_idx_clear() and possible others. |
user_data | Given to free_func as first parameter. |
NULL
if allocation failed.Eina_Bool eina_matrixsparse_row_idx_clear | ( | Eina_Matrixsparse * | m, |
unsigned long | row | ||
) |
Clears (erases all cells) of row given its index.
Existing cells will be cleared with free_func()
given to eina_matrixsparse_new().
m | The sparse matrix to operate on. |
row | The new number of row to clear. |
void eina_matrixsparse_size_get | ( | const Eina_Matrixsparse * | m, |
unsigned long * | rows, | ||
unsigned long * | cols | ||
) |
Gets the current size of Sparse Matrix.
The given parameters are guaranteed to be set if they're not NULL
, even if this function fails (ie: m is not a valid matrix instance).
m | The sparse matrix to operate on. |
rows | Returns the number of rows, may be NULL . If m is invalid, returned value is zero, otherwise it's a positive integer. |
cols | Returns the number of columns, may be NULL . If m is invalid, returned value is zero, otherwise it's a positive integer. |
Eina_Bool eina_matrixsparse_size_set | ( | Eina_Matrixsparse * | m, |
unsigned long | rows, | ||
unsigned long | cols | ||
) |
Resizes the Sparse Matrix.
This will resize the sparse matrix, possibly freeing cells on rows and columns that will cease to exist.
m | The sparse matrix to operate on. |
rows | The new number of rows, must be greater than zero. |
cols | The new number of columns, must be greater than zero. |