| /** | |
| * Create an array object in memory. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param context The context object that should be stored in the array object. May be NULL. | |
| * @param type 0 for a standard array of int or one of DC_ARRAY_*. | |
| * @param initsize Initial maximal size of the array. If you add more items, the internal data pointer is reallocated. | |
| * @return New array object of the requested size, the data should be set directly. | |
| */ | |
| dc_array_t* dc_array_new_typed(dc_context_t* context, int type, size_t initsize) | |
| { | |
| dc_array_t* array = NULL; | |
| array = (dc_array_t*) calloc(1, sizeof(dc_array_t)); | |
| if (array==NULL) { | |
| exit(47); | |
| } | |
| array->magic = DC_ARRAY_MAGIC; | |
| array->context = context; | |
| array->count = 0; | |
| array->allocated = initsize<1? 1 : initsize; | |
| array->type = type; | |
| array->array = malloc(array->allocated * sizeof(uintptr_t)); | |
| if (array->array==NULL) { | |
| exit(48); | |
| } | |
| return array; | |
| } | |
| dc_array_t* dc_array_new(dc_context_t* context, size_t initsize) | |
| { | |
| return dc_array_new_typed(context, 0, initsize); | |
| } | |
| /** | |
| * Free an array object. Does not free any data items. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object to free, | |
| * created eg. by dc_get_chatlist(), dc_get_contacts() and so on. | |
| * If NULL is given, nothing is done. | |
| * @return None. | |
| */ | |
| void dc_array_unref(dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return; | |
| } | |
| if (array->type==DC_ARRAY_LOCATIONS) { | |
| dc_array_free_ptr(array); | |
| } | |
| free(array->array); | |
| array->magic = 0; | |
| free(array); | |
| } | |
| /** | |
| * Calls free() for each item and sets the item to 0 afterwards. | |
| * The array object itself is not deleted and the size of the array stays the same. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param array The array object. | |
| * @return None. | |
| */ | |
| void dc_array_free_ptr(dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return; | |
| } | |
| for (size_t i = 0; i<array->count; i++) { | |
| if (array->type==DC_ARRAY_LOCATIONS) { | |
| free(((struct _dc_location*)array->array[i])->marker); | |
| } | |
| free((void*)array->array[i]); | |
| array->array[i] = 0; | |
| } | |
| } | |
| /** | |
| * Duplicates the array, take care if the array contains pointers to objects, take care to free them only once afterwards! | |
| * If the array only contains integers, you are always save. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param array The array object. | |
| * @return The duplicated array. | |
| */ | |
| dc_array_t* dc_array_duplicate(const dc_array_t* array) | |
| { | |
| dc_array_t* ret = NULL; | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return NULL; | |
| } | |
| ret = dc_array_new(array->context, array->allocated); | |
| ret->count = array->count; | |
| memcpy(ret->array, array->array, array->count * sizeof(uintptr_t)); | |
| return ret; | |
| } | |
| static int cmp_intptr_t(const void* p1, const void* p2) | |
| { | |
| uintptr_t v1 = *(uintptr_t*)p1; | |
| uintptr_t v2 = *(uintptr_t*)p2; | |
| return (v1<v2)? -1 : ((v1>v2)? 1 : 0); /* CAVE: do not use v1-v2 as the uintptr_t may be 64bit and the return value may be 32bit only... */ | |
| } | |
| /** | |
| * Sort the array, assuming it contains unsigned integers. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param array The array object. | |
| * @return The duplicated array. | |
| */ | |
| void dc_array_sort_ids(dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || array->count <= 1) { | |
| return; | |
| } | |
| qsort(array->array, array->count, sizeof(uintptr_t), cmp_intptr_t); | |
| } | |
| static int cmp_strings_t(const void* p1, const void* p2) | |
| { | |
| const char* v1 = *(const char **)p1; | |
| const char* v2 = *(const char **)p2; | |
| return strcmp(v1, v2); | |
| } | |
| /** | |
| * Sort the array, assuming it contains pointers to strings. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param array The array object. | |
| * @return The duplicated array. | |
| */ | |
| void dc_array_sort_strings(dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || array->count <= 1) { | |
| return; | |
| } | |
| qsort(array->array, array->count, sizeof(char*), cmp_strings_t); | |
| } | |
| /** | |
| * Empty an array object. Allocated data is not freed by this function, only the count is set to null. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param array The array object to empty. | |
| * @return None. | |
| */ | |
| void dc_array_empty(dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return; | |
| } | |
| array->count = 0; | |
| } | |
| /** | |
| * Add an unsigned integer to the array. | |
| * After calling this function the size of the array grows by one. | |
| * It is okay to add the ID 0, event in this case, the array grows by one. | |
| * | |
| * @param array The array to add the item to. | |
| * @param item The item to add. | |
| * @return None. | |
| */ | |
| void dc_array_add_uint(dc_array_t* array, uintptr_t item) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return; | |
| } | |
| if (array->count==array->allocated) { | |
| int newsize = (array->allocated * 2) + 10; | |
| if ((array->array=realloc(array->array, newsize*sizeof(uintptr_t)))==NULL) { | |
| exit(49); | |
| } | |
| array->allocated = newsize; | |
| } | |
| array->array[array->count] = item; | |
| array->count++; | |
| } | |
| /** | |
| * Add an ID to the array. | |
| * After calling this function the size of the array grows by one. | |
| * It is okay to add the ID 0, event in this case, the array grows by one. | |
| * | |
| * @param array The array to add the item to. | |
| * @param item The item to add. | |
| * @return None. | |
| */ | |
| void dc_array_add_id(dc_array_t* array, uint32_t item) | |
| { | |
| dc_array_add_uint(array, item); | |
| } | |
| /** | |
| * Add an pointer to the array. | |
| * After calling this function the size of the array grows by one. | |
| * It is okay to add the ID 0, event in this case, the array grows by one. | |
| * | |
| * @param array The array to add the item to. | |
| * @param item The item to add. | |
| * @return None. | |
| */ | |
| void dc_array_add_ptr(dc_array_t* array, void* item) | |
| { | |
| dc_array_add_uint(array, (uintptr_t)item); | |
| } | |
| /** | |
| * Find out the number of items in an array. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @return Returns the number of items in a dc_array_t object. 0 on errors or if the array is empty. | |
| */ | |
| size_t dc_array_get_cnt(const dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return 0; | |
| } | |
| return array->count; | |
| } | |
| /** | |
| * Get the item at the given index as an unsigned integer. | |
| * The size of the integer is always larget enough to hold a pointer. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item to get. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Returns the item at the given index. Returns 0 on errors or if the array is empty. | |
| */ | |
| uintptr_t dc_array_get_uint(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count) { | |
| return 0; | |
| } | |
| return array->array[index]; | |
| } | |
| /** | |
| * Get the item at the given index as an ID. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item to get. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Returns the item at the given index. Returns 0 on errors or if the array is empty. | |
| */ | |
| uint32_t dc_array_get_id(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count) { | |
| return 0; | |
| } | |
| if (array->type==DC_ARRAY_LOCATIONS) { | |
| return ((struct _dc_location*)array->array[index])->location_id; | |
| } | |
| return (uint32_t)array->array[index]; | |
| } | |
| /** | |
| * Get the item at the given index as an ID. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item to get. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Returns the item at the given index. Returns 0 on errors or if the array is empty. | |
| */ | |
| void* dc_array_get_ptr(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count) { | |
| return 0; | |
| } | |
| return (void*)array->array[index]; | |
| } | |
| /** | |
| * Return the latitude of the item at the given index. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Latitude of the item at the given index. | |
| * 0.0 if there is no latitude bound to the given item, | |
| */ | |
| double dc_array_get_latitude(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->latitude; | |
| } | |
| /** | |
| * Return the longitude of the item at the given index. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Latitude of the item at the given index. | |
| * 0.0 if there is no longitude bound to the given item, | |
| */ | |
| double dc_array_get_longitude(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->longitude; | |
| } | |
| /** | |
| * Return the accuracy of the item at the given index. | |
| * See dc_set_location() for more information about the accuracy. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Accuracy of the item at the given index. | |
| * 0.0 if there is no longitude bound to the given item, | |
| */ | |
| double dc_array_get_accuracy(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->accuracy; | |
| } | |
| /** | |
| * Return the timestamp of the item at the given index. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Timestamp of the item at the given index. | |
| * 0 if there is no timestamp bound to the given item, | |
| */ | |
| time_t dc_array_get_timestamp(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->timestamp; | |
| } | |
| /** | |
| * Return the message-id of the item at the given index. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Message-id of the item at the given index. | |
| * 0 if there is no message-id bound to the given item, | |
| */ | |
| uint32_t dc_array_get_msg_id(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->msg_id; | |
| } | |
| /** | |
| * Return the chat-id of the item at the given index. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Chat-id of the item at the given index. | |
| * 0 if there is no chat-id bound to the given item, | |
| */ | |
| uint32_t dc_array_get_chat_id(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->chat_id; | |
| } | |
| /** | |
| * Return the contact-id of the item at the given index. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Contact-id of the item at the given index. | |
| * 0 if there is no contact-id bound to the given item, | |
| */ | |
| uint32_t dc_array_get_contact_id(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->contact_id; | |
| } | |
| /** | |
| * Return the marker-character of the item at the given index. | |
| * Marker-character are typically bound to locations | |
| * returned by dc_get_locations() | |
| * and are typically created by on-character-messages | |
| * which can also be an emoticon :) | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return Marker-character of the item at the given index. | |
| * NULL if there is no marker-character bound to the given item. | |
| * The returned value must be free()'d after usage. | |
| */ | |
| char* dc_array_get_marker(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return dc_strdup_keep_null(((struct _dc_location*)array->array[index])->marker); | |
| } | |
| /** | |
| * Return the independent-state of the location at the given index. | |
| * Independent locations do not belong to the track of the user. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @param index Index of the item. Must be between 0 and dc_array_get_cnt()-1. | |
| * @return 0=Location belongs to the track of the user, | |
| * 1=Location was reported independently. | |
| */ | |
| int dc_array_is_independent(const dc_array_t* array, size_t index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || index>=array->count | |
| || array->type!=DC_ARRAY_LOCATIONS || array->array[index]==0 ) { | |
| return 0; | |
| } | |
| return ((struct _dc_location*)array->array[index])->independent; | |
| } | |
| /** | |
| * Check if a given ID is present in an array. | |
| * | |
| * @private @memberof dc_array_t | |
| * @param array The array object to search in. | |
| * @param needle The ID to search for. | |
| * @param[out] ret_index If set, this will receive the index. Set to NULL if you're not interested in the index. | |
| * @return 1=ID is present in array, 0=ID not found. | |
| */ | |
| int dc_array_search_id(const dc_array_t* array, uint32_t needle, size_t* ret_index) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return 0; | |
| } | |
| uintptr_t* data = array->array; | |
| size_t i, cnt = array->count; | |
| for (i=0; i<cnt; i++) | |
| { | |
| if (data[i]==needle) { | |
| if (ret_index) { | |
| *ret_index = i; | |
| } | |
| return 1; | |
| } | |
| } | |
| return 0; | |
| } | |
| /** | |
| * Get raw pointer to the data. | |
| * | |
| * @memberof dc_array_t | |
| * @param array The array object. | |
| * @return Raw pointer to the array. You MUST NOT free the data. You MUST NOT access the data beyond the current item count. | |
| * It is not possible to enlarge the array this way. Calling any other dc_array*()-function may discard the returned pointer. | |
| */ | |
| const uintptr_t* dc_array_get_raw(const dc_array_t* array) | |
| { | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC) { | |
| return NULL; | |
| } | |
| return array->array; | |
| } | |
| char* dc_arr_to_string(const uint32_t* arr, int cnt) | |
| { | |
| /* return comma-separated value-string from integer array */ | |
| char* ret = NULL; | |
| const char* sep = ","; | |
| if (arr==NULL || cnt <= 0) { | |
| return dc_strdup(""); | |
| } | |
| /* use a macro to allow using integers of different bitwidths */ | |
| INT_ARR_TO_STR(arr, cnt); | |
| return ret; | |
| } | |
| char* dc_array_get_string(const dc_array_t* array, const char* sep) | |
| { | |
| char* ret = NULL; | |
| if (array==NULL || array->magic!=DC_ARRAY_MAGIC || sep==NULL) { | |
| return dc_strdup(""); | |
| } | |
| INT_ARR_TO_STR(array->array, array->count); | |
| return ret; | |
| } | |