Green Sky
227425b90e
git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 67badf69416a74e74f6d7eb51dd96f37282b8455
229 lines
6.5 KiB
C
229 lines
6.5 KiB
C
/* SPDX-License-Identifier: GPL-3.0-or-later
|
|
* Copyright © 2022 The TokTok team.
|
|
*/
|
|
|
|
#include "events_alloc.h"
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "../bin_pack.h"
|
|
#include "../bin_unpack.h"
|
|
#include "../ccompat.h"
|
|
#include "../tox.h"
|
|
#include "../tox_events.h"
|
|
#include "../tox_unpack.h"
|
|
|
|
|
|
/*****************************************************
|
|
*
|
|
* :: struct and accessors
|
|
*
|
|
*****************************************************/
|
|
|
|
|
|
struct Tox_Event_File_Recv_Control {
|
|
uint32_t friend_number;
|
|
uint32_t file_number;
|
|
Tox_File_Control control;
|
|
};
|
|
|
|
non_null()
|
|
static void tox_event_file_recv_control_construct(Tox_Event_File_Recv_Control *file_recv_control)
|
|
{
|
|
*file_recv_control = (Tox_Event_File_Recv_Control) {
|
|
0
|
|
};
|
|
}
|
|
non_null()
|
|
static void tox_event_file_recv_control_destruct(Tox_Event_File_Recv_Control *file_recv_control)
|
|
{
|
|
return;
|
|
}
|
|
|
|
non_null()
|
|
static void tox_event_file_recv_control_set_friend_number(Tox_Event_File_Recv_Control *file_recv_control,
|
|
uint32_t friend_number)
|
|
{
|
|
assert(file_recv_control != nullptr);
|
|
file_recv_control->friend_number = friend_number;
|
|
}
|
|
uint32_t tox_event_file_recv_control_get_friend_number(const Tox_Event_File_Recv_Control *file_recv_control)
|
|
{
|
|
assert(file_recv_control != nullptr);
|
|
return file_recv_control->friend_number;
|
|
}
|
|
|
|
non_null()
|
|
static void tox_event_file_recv_control_set_file_number(Tox_Event_File_Recv_Control *file_recv_control,
|
|
uint32_t file_number)
|
|
{
|
|
assert(file_recv_control != nullptr);
|
|
file_recv_control->file_number = file_number;
|
|
}
|
|
uint32_t tox_event_file_recv_control_get_file_number(const Tox_Event_File_Recv_Control *file_recv_control)
|
|
{
|
|
assert(file_recv_control != nullptr);
|
|
return file_recv_control->file_number;
|
|
}
|
|
|
|
non_null()
|
|
static void tox_event_file_recv_control_set_control(Tox_Event_File_Recv_Control *file_recv_control,
|
|
Tox_File_Control control)
|
|
{
|
|
assert(file_recv_control != nullptr);
|
|
file_recv_control->control = control;
|
|
}
|
|
Tox_File_Control tox_event_file_recv_control_get_control(const Tox_Event_File_Recv_Control *file_recv_control)
|
|
{
|
|
assert(file_recv_control != nullptr);
|
|
return file_recv_control->control;
|
|
}
|
|
|
|
non_null()
|
|
static bool tox_event_file_recv_control_pack(
|
|
const Tox_Event_File_Recv_Control *event, Bin_Pack *bp)
|
|
{
|
|
assert(event != nullptr);
|
|
return bin_pack_array(bp, 2)
|
|
&& bin_pack_u32(bp, TOX_EVENT_FILE_RECV_CONTROL)
|
|
&& bin_pack_array(bp, 3)
|
|
&& bin_pack_u32(bp, event->friend_number)
|
|
&& bin_pack_u32(bp, event->file_number)
|
|
&& bin_pack_u32(bp, event->control);
|
|
}
|
|
|
|
non_null()
|
|
static bool tox_event_file_recv_control_unpack(
|
|
Tox_Event_File_Recv_Control *event, Bin_Unpack *bu)
|
|
{
|
|
assert(event != nullptr);
|
|
if (!bin_unpack_array_fixed(bu, 3)) {
|
|
return false;
|
|
}
|
|
|
|
return bin_unpack_u32(bu, &event->friend_number)
|
|
&& bin_unpack_u32(bu, &event->file_number)
|
|
&& tox_unpack_file_control(bu, &event->control);
|
|
}
|
|
|
|
|
|
/*****************************************************
|
|
*
|
|
* :: add/clear/get
|
|
*
|
|
*****************************************************/
|
|
|
|
|
|
non_null()
|
|
static Tox_Event_File_Recv_Control *tox_events_add_file_recv_control(Tox_Events *events)
|
|
{
|
|
if (events->file_recv_control_size == UINT32_MAX) {
|
|
return nullptr;
|
|
}
|
|
|
|
if (events->file_recv_control_size == events->file_recv_control_capacity) {
|
|
const uint32_t new_file_recv_control_capacity = events->file_recv_control_capacity * 2 + 1;
|
|
Tox_Event_File_Recv_Control *new_file_recv_control = (Tox_Event_File_Recv_Control *)realloc(
|
|
events->file_recv_control, new_file_recv_control_capacity * sizeof(Tox_Event_File_Recv_Control));
|
|
|
|
if (new_file_recv_control == nullptr) {
|
|
return nullptr;
|
|
}
|
|
|
|
events->file_recv_control = new_file_recv_control;
|
|
events->file_recv_control_capacity = new_file_recv_control_capacity;
|
|
}
|
|
|
|
Tox_Event_File_Recv_Control *const file_recv_control = &events->file_recv_control[events->file_recv_control_size];
|
|
tox_event_file_recv_control_construct(file_recv_control);
|
|
++events->file_recv_control_size;
|
|
return file_recv_control;
|
|
}
|
|
|
|
void tox_events_clear_file_recv_control(Tox_Events *events)
|
|
{
|
|
if (events == nullptr) {
|
|
return;
|
|
}
|
|
|
|
for (uint32_t i = 0; i < events->file_recv_control_size; ++i) {
|
|
tox_event_file_recv_control_destruct(&events->file_recv_control[i]);
|
|
}
|
|
|
|
free(events->file_recv_control);
|
|
events->file_recv_control = nullptr;
|
|
events->file_recv_control_size = 0;
|
|
events->file_recv_control_capacity = 0;
|
|
}
|
|
|
|
uint32_t tox_events_get_file_recv_control_size(const Tox_Events *events)
|
|
{
|
|
if (events == nullptr) {
|
|
return 0;
|
|
}
|
|
|
|
return events->file_recv_control_size;
|
|
}
|
|
|
|
const Tox_Event_File_Recv_Control *tox_events_get_file_recv_control(const Tox_Events *events, uint32_t index)
|
|
{
|
|
assert(index < events->file_recv_control_size);
|
|
assert(events->file_recv_control != nullptr);
|
|
return &events->file_recv_control[index];
|
|
}
|
|
|
|
bool tox_events_pack_file_recv_control(const Tox_Events *events, Bin_Pack *bp)
|
|
{
|
|
const uint32_t size = tox_events_get_file_recv_control_size(events);
|
|
|
|
for (uint32_t i = 0; i < size; ++i) {
|
|
if (!tox_event_file_recv_control_pack(tox_events_get_file_recv_control(events, i), bp)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool tox_events_unpack_file_recv_control(Tox_Events *events, Bin_Unpack *bu)
|
|
{
|
|
Tox_Event_File_Recv_Control *event = tox_events_add_file_recv_control(events);
|
|
|
|
if (event == nullptr) {
|
|
return false;
|
|
}
|
|
|
|
return tox_event_file_recv_control_unpack(event, bu);
|
|
}
|
|
|
|
|
|
/*****************************************************
|
|
*
|
|
* :: event handler
|
|
*
|
|
*****************************************************/
|
|
|
|
|
|
void tox_events_handle_file_recv_control(Tox *tox, uint32_t friend_number, uint32_t file_number,
|
|
Tox_File_Control control, void *user_data)
|
|
{
|
|
Tox_Events_State *state = tox_events_alloc(user_data);
|
|
assert(state != nullptr);
|
|
|
|
if (state->events == nullptr) {
|
|
return;
|
|
}
|
|
|
|
Tox_Event_File_Recv_Control *file_recv_control = tox_events_add_file_recv_control(state->events);
|
|
|
|
if (file_recv_control == nullptr) {
|
|
state->error = TOX_ERR_EVENTS_ITERATE_MALLOC;
|
|
return;
|
|
}
|
|
|
|
tox_event_file_recv_control_set_friend_number(file_recv_control, friend_number);
|
|
tox_event_file_recv_control_set_file_number(file_recv_control, file_number);
|
|
tox_event_file_recv_control_set_control(file_recv_control, control);
|
|
}
|