2014-02-25 08:28:24 +01:00
|
|
|
/* misc_tools.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/>.
|
|
|
|
*
|
2013-09-21 02:35:03 +02:00
|
|
|
*/
|
2014-09-23 03:24:45 +02:00
|
|
|
#ifndef MISC_TOOLS_H
|
|
|
|
#define MISC_TOOLS_H
|
2014-06-12 00:06:55 +02:00
|
|
|
|
2014-09-27 09:01:23 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2014-06-12 00:06:55 +02:00
|
|
|
#include "windows.h"
|
|
|
|
#include "toxic.h"
|
2013-09-21 02:35:03 +02:00
|
|
|
|
2014-06-17 03:22:26 +02:00
|
|
|
#ifndef MIN
|
2014-02-25 02:08:51 +01:00
|
|
|
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
|
2014-06-17 03:22:26 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX
|
2014-02-25 02:08:51 +01:00
|
|
|
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
2014-06-17 03:22:26 +02:00
|
|
|
#endif
|
2013-11-24 03:19:59 +01:00
|
|
|
|
2014-07-31 20:53:02 +02:00
|
|
|
#ifndef net_to_host
|
2014-08-15 18:22:39 +02:00
|
|
|
#define net_to_host(x, y) hst_to_net(x, y)
|
2014-07-31 20:53:02 +02:00
|
|
|
#endif
|
|
|
|
|
2014-08-15 18:22:39 +02:00
|
|
|
void hst_to_net(uint8_t *num, uint16_t numbytes);
|
2014-07-31 20:53:02 +02:00
|
|
|
|
2013-09-21 02:35:03 +02:00
|
|
|
/* convert a hex string to binary */
|
2014-06-13 07:42:20 +02:00
|
|
|
char *hex_string_to_bin(const char *hex_string);
|
2013-09-21 02:35:03 +02:00
|
|
|
|
2014-08-11 03:40:19 +02:00
|
|
|
/* convert a hex string to bytes. returns 0 on success, -1 on failure */
|
2014-08-11 07:59:01 +02:00
|
|
|
int hex_string_to_bytes(char *buf, int size, const char *keystr);
|
2014-08-11 03:40:19 +02:00
|
|
|
|
2014-03-14 04:56:46 +01:00
|
|
|
/* get the current unix time */
|
|
|
|
uint64_t get_unix_time(void);
|
2013-09-21 02:35:03 +02:00
|
|
|
|
2014-08-11 07:59:01 +02:00
|
|
|
/* Puts the current time in buf in the format of [HH:mm:ss] */
|
2014-07-07 04:15:35 +02:00
|
|
|
void get_time_str(char *buf, int bufsize);
|
2014-06-24 00:54:23 +02:00
|
|
|
|
2014-06-24 07:54:08 +02:00
|
|
|
/* Converts seconds to string in format HH:mm:ss; truncates hours and minutes when necessary */
|
2014-07-07 04:15:35 +02:00
|
|
|
void get_elapsed_time_str(char *buf, int bufsize, uint64_t secs);
|
2013-10-11 10:42:30 +02:00
|
|
|
|
2014-03-14 04:56:46 +01:00
|
|
|
/* get the current local time */
|
|
|
|
struct tm *get_time(void);
|
|
|
|
|
|
|
|
/* updates current unix time (should be run once per do_toxic loop) */
|
|
|
|
void update_unix_time(void);
|
|
|
|
|
2014-03-09 08:42:37 +01:00
|
|
|
/* Returns 1 if the string is empty, 0 otherwise */
|
2014-07-16 18:47:14 +02:00
|
|
|
int string_is_empty(const char *string);
|
2013-09-21 02:35:03 +02:00
|
|
|
|
2013-12-08 04:10:32 +01:00
|
|
|
/* convert a multibyte string to a wide character string (must provide buffer) */
|
2014-07-07 04:15:35 +02:00
|
|
|
int char_to_wcs_buf(wchar_t *buf, const char *string, size_t n);
|
2013-12-08 04:10:32 +01:00
|
|
|
|
2014-06-24 07:54:08 +02:00
|
|
|
/* converts wide character string into a multibyte string and puts in buf. */
|
2014-07-07 04:15:35 +02:00
|
|
|
int wcs_to_mbs_buf(char *buf, const wchar_t *string, size_t n);
|
2013-12-08 04:10:32 +01:00
|
|
|
|
2014-06-24 07:54:08 +02:00
|
|
|
/* convert a multibyte string to a wide character string and puts in buf) */
|
2014-07-07 04:15:35 +02:00
|
|
|
int mbs_to_wcs_buf(wchar_t *buf, const char *string, size_t n);
|
2014-06-22 03:41:38 +02:00
|
|
|
|
2014-03-11 21:11:22 +01:00
|
|
|
/* Returns 1 if connection has timed out, 0 otherwise */
|
|
|
|
int timed_out(uint64_t timestamp, uint64_t timeout, uint64_t curtime);
|
2013-11-19 08:31:22 +01:00
|
|
|
|
2013-11-29 01:45:28 +01:00
|
|
|
/* Colours the window tab according to type. Beeps if is_beep is true */
|
|
|
|
void alert_window(ToxWindow *self, int type, bool is_beep);
|
2013-11-24 08:33:03 +01:00
|
|
|
|
2013-12-08 07:18:10 +01:00
|
|
|
/* case-insensitive string compare function for use with qsort */
|
2014-07-24 00:34:32 +02:00
|
|
|
int qsort_strcasecmp_hlpr(const void *str1, const void *str2);
|
2013-11-28 08:53:43 +01:00
|
|
|
|
2014-06-03 08:02:24 +02:00
|
|
|
/* Returns 1 if nick is valid, 0 if not. A valid toxic nick:
|
2013-11-28 08:53:43 +01:00
|
|
|
- cannot be empty
|
|
|
|
- cannot start with a space
|
2014-06-03 08:02:24 +02:00
|
|
|
- must not contain a forward slash (for logfile naming purposes)
|
2014-10-07 06:43:03 +02:00
|
|
|
- must not contain contiguous spaces
|
|
|
|
- must not contain a newline or tab seqeunce */
|
2014-10-06 22:23:43 +02:00
|
|
|
int valid_nick(const char *nick);
|
|
|
|
|
2014-10-07 06:43:03 +02:00
|
|
|
/* Converts all newline/tab chars to spaces (use for strings that should be contained to a single line) */
|
2014-10-07 22:18:06 +02:00
|
|
|
void filter_str(char *str, int len);
|
2013-12-11 06:10:09 +01:00
|
|
|
|
2014-02-12 01:12:26 +01:00
|
|
|
/* gets base file name from path or original file name if no path is supplied */
|
2014-07-09 06:05:13 +02:00
|
|
|
void get_file_name(char *namebuf, int bufsize, const char *pathname);
|
2014-06-12 00:06:55 +02:00
|
|
|
|
2014-06-19 19:50:41 +02:00
|
|
|
/* converts str to all lowercase */
|
2014-07-07 04:15:35 +02:00
|
|
|
void str_to_lower(char *str);
|
2014-06-18 19:10:20 +02:00
|
|
|
|
2014-07-08 20:31:59 +02:00
|
|
|
/* puts friendnum's nick in buf, truncating at TOXIC_MAX_NAME_LENGTH if necessary.
|
|
|
|
Returns nick len on success, -1 on failure */
|
|
|
|
int get_nick_truncate(Tox *m, char *buf, int friendnum);
|
|
|
|
|
2014-10-09 07:39:22 +02:00
|
|
|
/* same as get_nick_truncate but for groupchats */
|
|
|
|
int get_group_nick_truncate(Tox *m, char *buf, int peernum, int groupnum);
|
|
|
|
|
2014-10-03 23:53:50 +02:00
|
|
|
/* copies data to msg buffer.
|
2015-01-11 22:48:40 +01:00
|
|
|
returns length of msg.
|
|
|
|
returns 0 and nulls msg if length is too big for buffer size */
|
2014-10-03 23:53:50 +02:00
|
|
|
uint16_t copy_tox_str(char *msg, size_t size, const char *data, uint16_t length);
|
|
|
|
|
2014-07-16 18:47:14 +02:00
|
|
|
/* returns index of the first instance of ch in s starting at idx.
|
|
|
|
returns length of s if char not found */
|
|
|
|
int char_find(int idx, const char *s, char ch);
|
|
|
|
|
2014-07-18 07:29:46 +02:00
|
|
|
/* returns index of the last instance of ch in s
|
|
|
|
returns 0 if char not found */
|
|
|
|
int char_rfind(const char *s, char ch, int len);
|
|
|
|
|
2014-08-08 01:24:56 +02:00
|
|
|
/* Converts bytes to appropriate unit and puts in buf as a string */
|
|
|
|
void bytes_convert_str(char *buf, int size, uint64_t bytes);
|
|
|
|
|
2014-08-28 04:45:11 +02:00
|
|
|
/* checks if a file exists. Returns true or false */
|
2014-09-14 23:46:28 +02:00
|
|
|
bool file_exists(const char *path);
|
2014-08-28 04:45:11 +02:00
|
|
|
|
2014-09-24 06:06:02 +02:00
|
|
|
/* returns file size or -1 on error */
|
2014-09-24 20:23:08 +02:00
|
|
|
off_t file_size(const char *path);
|
2014-09-24 06:06:02 +02:00
|
|
|
|
2015-01-11 22:48:40 +01:00
|
|
|
/* compares the first size bytes of fp and signature.
|
2014-09-26 09:10:44 +02:00
|
|
|
Returns 0 if they are the same, 1 if they differ, and -1 on error.
|
|
|
|
|
2014-09-26 09:22:47 +02:00
|
|
|
On success this function will seek back to the beginning of fp */
|
2014-09-26 09:10:44 +02:00
|
|
|
int check_file_signature(const char *signature, size_t size, FILE *fp);
|
|
|
|
|
2014-11-15 04:15:59 +01:00
|
|
|
/* sets window title in tab bar. */
|
|
|
|
void set_window_title(ToxWindow *self, const char *title, int len);
|
|
|
|
|
2014-09-23 03:24:45 +02:00
|
|
|
#endif /* #define MISC_TOOLS_H */
|