mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 15:23:02 +01:00
1803da85c1
This fixes an issue where the interface wasn't able to update when the unread message flag changed. It also cleans up some ugly code
63 lines
1.8 KiB
C
63 lines
1.8 KiB
C
/* message_queue.h
|
|
*
|
|
*
|
|
* Copyright (C) 2014 Toxic All Rights Reserved.
|
|
*
|
|
* This file is part of Toxic.
|
|
*
|
|
* Toxic is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Toxic is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Toxic. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef MESSAGE_QUEUE_H
|
|
#define MESSAGE_QUEUE_H
|
|
|
|
struct cqueue_msg {
|
|
char message[MAX_STR_SIZE];
|
|
size_t len;
|
|
int line_id;
|
|
time_t last_send_try;
|
|
time_t time_added;
|
|
uint8_t type;
|
|
int64_t receipt;
|
|
bool noread_flag;
|
|
struct cqueue_msg *next;
|
|
struct cqueue_msg *prev;
|
|
};
|
|
|
|
struct chat_queue {
|
|
struct cqueue_msg *root;
|
|
struct cqueue_msg *end;
|
|
};
|
|
|
|
void cqueue_cleanup(struct chat_queue *q);
|
|
void cqueue_add(struct chat_queue *q, const char *msg, size_t len, uint8_t type, int line_id);
|
|
|
|
/*
|
|
* Tries to send all messages in the send queue in sequential order.
|
|
* If a message fails to send the function will immediately return.
|
|
*/
|
|
void cqueue_try_send(ToxWindow *self, Tox *m);
|
|
|
|
/*
|
|
* Sets the noread flag for messages sent to the peer associated with `self` which have not
|
|
* received a receipt after a period of time.
|
|
*/
|
|
void cqueue_check_unread(ToxWindow *self);
|
|
|
|
/* removes message with matching receipt from queue, writes to log and updates line to show the message was received. */
|
|
void cqueue_remove(ToxWindow *self, Tox *m, uint32_t receipt);
|
|
|
|
#endif /* MESSAGE_QUEUE_H */
|