diff options
Diffstat (limited to 'toxcore')
-rw-r--r-- | toxcore/Messenger.c | 44 | ||||
-rw-r--r-- | toxcore/Messenger.h | 12 | ||||
-rw-r--r-- | toxcore/tox.c | 24 | ||||
-rw-r--r-- | toxcore/tox.h | 18 |
4 files changed, 83 insertions, 15 deletions
diff --git a/toxcore/Messenger.c b/toxcore/Messenger.c index 43db2a9d..8fd58a44 100644 --- a/toxcore/Messenger.c +++ b/toxcore/Messenger.c | |||
@@ -1645,6 +1645,50 @@ int Messenger_load(Messenger *m, uint8_t *data, uint32_t length) | |||
1645 | return Messenger_load_old(m, data, length); | 1645 | return Messenger_load_old(m, data, length); |
1646 | } | 1646 | } |
1647 | 1647 | ||
1648 | /* Return the number of friends in the instance m. | ||
1649 | * You should use this to determine how much memory to allocate | ||
1650 | * for copy_friendlist. */ | ||
1651 | size_t count_friendlist(Messenger *m) | ||
1652 | { | ||
1653 | size_t ret = 0; | ||
1654 | uint32_t i; | ||
1655 | for (i = 0; i < m->numfriends; i++) { | ||
1656 | if (m->friendlist[i].status > 0) { | ||
1657 | ret++; | ||
1658 | } | ||
1659 | } | ||
1660 | return ret; | ||
1661 | } | ||
1662 | |||
1663 | /* Copy a list of valid friend IDs into the array out_list. | ||
1664 | * If out_list is NULL, returns -1. | ||
1665 | * Otherwise, returns the number of elements copied. | ||
1666 | * If the array was too small, the contents | ||
1667 | * of out_list will be truncated to list_size. */ | ||
1668 | size_t copy_friendlist(Messenger *m, int *out_list, size_t list_size) | ||
1669 | { | ||
1670 | if (!out_list) | ||
1671 | return -1; | ||
1672 | |||
1673 | if (m->numfriends == 0) { | ||
1674 | return 0; | ||
1675 | } | ||
1676 | |||
1677 | uint32_t i; | ||
1678 | size_t ret = 0; | ||
1679 | for (i = 0; i < m->numfriends; i++) { | ||
1680 | if (i >= list_size) { | ||
1681 | break; /* Abandon ship */ | ||
1682 | } | ||
1683 | if (m->friendlist[i].status > 0) { | ||
1684 | out_list[i] = i; | ||
1685 | ret++; | ||
1686 | } | ||
1687 | } | ||
1688 | |||
1689 | return ret; | ||
1690 | } | ||
1691 | |||
1648 | /* Allocate and return a list of valid friend id's. List must be freed by the | 1692 | /* Allocate and return a list of valid friend id's. List must be freed by the |
1649 | * caller. | 1693 | * caller. |
1650 | * | 1694 | * |
diff --git a/toxcore/Messenger.h b/toxcore/Messenger.h index 78580dc0..81e661e1 100644 --- a/toxcore/Messenger.h +++ b/toxcore/Messenger.h | |||
@@ -456,6 +456,18 @@ void Messenger_save(Messenger *m, uint8_t *data); | |||
456 | /* Load the messenger from data of size length. */ | 456 | /* Load the messenger from data of size length. */ |
457 | int Messenger_load(Messenger *m, uint8_t *data, uint32_t length); | 457 | int Messenger_load(Messenger *m, uint8_t *data, uint32_t length); |
458 | 458 | ||
459 | /* Return the number of friends in the instance m. | ||
460 | * You should use this to determine how much memory to allocate | ||
461 | * for copy_friendlist. */ | ||
462 | size_t count_friendlist(Messenger *m); | ||
463 | |||
464 | /* Copy a list of valid friend IDs into the array out_list. | ||
465 | * If out_list is NULL, returns -1. | ||
466 | * Otherwise, returns the number of elements copied. | ||
467 | * If the array was too small, the contents | ||
468 | * of out_list will be truncated to list_size. */ | ||
469 | size_t copy_friendlist(Messenger *m, int *out_list, size_t list_size); | ||
470 | |||
459 | /* Allocate and return a list of valid friend id's. List must be freed by the | 471 | /* Allocate and return a list of valid friend id's. List must be freed by the |
460 | * caller. | 472 | * caller. |
461 | * | 473 | * |
diff --git a/toxcore/tox.c b/toxcore/tox.c index 4fba360b..dfafaf20 100644 --- a/toxcore/tox.c +++ b/toxcore/tox.c | |||
@@ -262,16 +262,24 @@ void tox_set_sends_receipts(void *tox, int friendnumber, int yesno) | |||
262 | m_set_sends_receipts(m, friendnumber, yesno); | 262 | m_set_sends_receipts(m, friendnumber, yesno); |
263 | } | 263 | } |
264 | 264 | ||
265 | /* Allocate and return a list of valid friend id's. List must be freed by the | 265 | /* Return the number of friends in the instance m. |
266 | * caller. | 266 | * You should use this to determine how much memory to allocate |
267 | * | 267 | * for copy_friendlist. */ |
268 | * retun 0 if success. | 268 | size_t tox_count_friendlist(void *tox) |
269 | * return -1 if failure. | 269 | { |
270 | */ | 270 | Messenger *m = tox; |
271 | int tox_get_friendlist(void *tox, int **out_list, uint32_t *out_list_length) | 271 | return count_friendlist(m); |
272 | } | ||
273 | |||
274 | /* Copy a list of valid friend IDs into the array out_list. | ||
275 | * If out_list is NULL, returns -1. | ||
276 | * Otherwise, returns the number of elements copied. | ||
277 | * If the array was too small, the contents | ||
278 | * of out_list will be truncated to list_size. */ | ||
279 | size_t tox_copy_friendlist(void *tox, int *out_list, size_t list_size) | ||
272 | { | 280 | { |
273 | Messenger *m = tox; | 281 | Messenger *m = tox; |
274 | return get_friendlist(m, out_list, out_list_length); | 282 | return copy_friendlist(m, out_list, list_size); |
275 | } | 283 | } |
276 | 284 | ||
277 | /* Set the function that will be executed when a friend request is received. | 285 | /* Set the function that will be executed when a friend request is received. |
diff --git a/toxcore/tox.h b/toxcore/tox.h index b39008fe..ed471542 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h | |||
@@ -280,13 +280,17 @@ TOX_USERSTATUS tox_get_selfuserstatus(Tox *tox); | |||
280 | */ | 280 | */ |
281 | void tox_set_sends_receipts(Tox *tox, int friendnumber, int yesno); | 281 | void tox_set_sends_receipts(Tox *tox, int friendnumber, int yesno); |
282 | 282 | ||
283 | /* Allocate and return a list of valid friend id's. List must be freed by the | 283 | /* Return the number of friends in the instance m. |
284 | * caller. | 284 | * You should use this to determine how much memory to allocate |
285 | * | 285 | * for copy_friendlist. */ |
286 | * retun 0 if success. | 286 | size_t tox_count_friendlist(void *tox); |
287 | * return -1 if failure. | 287 | |
288 | */ | 288 | /* Copy a list of valid friend IDs into the array out_list. |
289 | int tox_get_friendlist(void *tox, int **out_list, uint32_t *out_list_length); | 289 | * If out_list is NULL, returns -1. |
290 | * Otherwise, returns the number of elements copied. | ||
291 | * If the array was too small, the contents | ||
292 | * of out_list will be truncated to list_size. */ | ||
293 | size_t tox_copy_friendlist(void *tox, int *out_list, size_t list_size); | ||
290 | 294 | ||
291 | /* Set the function that will be executed when a friend request is received. | 295 | /* Set the function that will be executed when a friend request is received. |
292 | * Function format is function(uint8_t * public_key, uint8_t * data, uint16_t length) | 296 | * Function format is function(uint8_t * public_key, uint8_t * data, uint16_t length) |