1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 17:47:52 +02:00
toxic/src/misc_tools.c

370 lines
8.6 KiB
C
Raw Normal View History

2014-02-25 08:28:24 +01:00
/* misc_tools.c
*
*
* 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/>.
*
*/
#include <stdlib.h>
2014-06-22 03:41:38 +02:00
#include <ctype.h>
#include <string.h>
#include <time.h>
#include <limits.h>
#include <dirent.h>
2014-08-28 04:45:11 +02:00
#include <sys/stat.h>
#include "toxic.h"
#include "windows.h"
#include "misc_tools.h"
2014-04-07 10:42:10 +02:00
#include "settings.h"
#include "file_senders.h"
2013-12-10 01:25:09 +01:00
extern ToxWindow *prompt;
extern struct user_settings *user_settings;
2013-12-10 01:25:09 +01:00
2014-03-14 04:56:46 +01:00
static uint64_t current_unix_time;
void hst_to_net(uint8_t *num, uint16_t numbytes)
2014-07-31 20:53:02 +02:00
{
#ifndef WORDS_BIGENDIAN
uint32_t i;
uint8_t buff[numbytes];
for (i = 0; i < numbytes; ++i) {
buff[i] = num[numbytes - i - 1];
}
memcpy(num, buff, numbytes);
#endif
return;
}
2014-03-14 04:56:46 +01:00
void update_unix_time(void)
{
current_unix_time = (uint64_t) time(NULL);
}
uint64_t get_unix_time(void)
{
return current_unix_time;
}
2014-07-08 20:46:50 +02:00
/* Returns 1 if connection has timed out, 0 otherwise */
int timed_out(uint64_t timestamp, uint64_t curtime, uint64_t timeout)
{
return timestamp + timeout <= curtime;
}
2014-03-14 04:56:46 +01:00
/* Get the current local time */
struct tm *get_time(void)
{
struct tm *timeinfo;
uint64_t t = get_unix_time();
timeinfo = localtime((const time_t*) &t);
2014-03-14 04:56:46 +01:00
return timeinfo;
}
/*Puts the current time in buf in the format of [HH:mm:ss] */
void get_time_str(char *buf, int bufsize)
{
if (user_settings->timestamps == TIMESTAMPS_OFF) {
buf[0] = '\0';
return;
}
2014-09-25 21:17:03 +02:00
const char *t = user_settings->time == TIME_12 ? "%I:%M:%S " : "%H:%M:%S ";
2014-06-24 00:54:23 +02:00
strftime(buf, bufsize, t, get_time());
}
/* Converts seconds to string in format HH:mm:ss; truncates hours and minutes when necessary */
void get_elapsed_time_str(char *buf, int bufsize, uint64_t secs)
2014-06-24 00:54:23 +02:00
{
if (!secs)
return;
2014-07-08 09:39:42 +02:00
long int seconds = secs % 60;
long int minutes = (secs % 3600) / 60;
long int hours = secs / 3600;
2014-06-24 00:54:23 +02:00
if (!minutes && !hours)
snprintf(buf, bufsize, "%.2ld", seconds);
else if (!hours)
snprintf(buf, bufsize, "%ld:%.2ld", minutes, seconds);
else
snprintf(buf, bufsize, "%ld:%.2ld:%.2ld", hours, minutes, seconds);
}
char *hex_string_to_bin(const char *hex_string)
{
size_t len = strlen(hex_string);
char *val = malloc(len);
if (val == NULL)
exit_toxic_err("failed in hex_string_to_bin", FATALERR_MEMORY);
size_t i;
for (i = 0; i < len; ++i, hex_string += 2)
sscanf(hex_string, "%2hhx", &val[i]);
return val;
}
2014-08-11 07:59:01 +02:00
int hex_string_to_bytes(char *buf, int size, const char *keystr)
{
if (size % 2 != 0)
return -1;
int i, res;
const char *pos = keystr;
for (i = 0; i < size; ++i) {
res = sscanf(pos, "%2hhx", &buf[i]);
pos += 2;
if (res == EOF || res < 1)
return -1;
}
return 0;
}
/* Returns 1 if the string is empty, 0 otherwise */
int string_is_empty(const char *string)
{
2013-10-22 07:59:06 +02:00
return string[0] == '\0';
}
/* convert a multibyte string to a wide character string and puts in buf. */
int mbs_to_wcs_buf(wchar_t *buf, const char *string, size_t n)
{
size_t len = mbstowcs(NULL, string, 0) + 1;
if (n < len)
return -1;
if ((len = mbstowcs(buf, string, n)) == (size_t) -1)
return -1;
return len;
}
/* converts wide character string into a multibyte string and puts in buf. */
int wcs_to_mbs_buf(char *buf, const wchar_t *string, size_t n)
{
size_t len = wcstombs(NULL, string, 0) + 1;
if (n < len)
return -1;
if ((len = wcstombs(buf, string, n)) == (size_t) -1)
return -1;
return len;
}
2013-12-08 07:18:10 +01:00
/* case-insensitive string compare function for use with qsort */
int qsort_strcasecmp_hlpr(const void *str1, const void *str2)
2013-11-24 08:33:03 +01:00
{
return strcasecmp((const char *) str1, (const char *) str2);
2013-11-24 21:18:05 +01:00
}
2013-11-28 08:53:43 +01: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
- 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 */
int valid_nick(const char *nick)
2013-11-28 08:53:43 +01:00
{
if (!nick[0] || nick[0] == ' ')
2014-03-12 01:00:03 +01:00
return 0;
2013-11-28 08:53:43 +01:00
int i;
for (i = 0; nick[i]; ++i) {
2014-10-07 06:43:03 +02:00
if ((nick[i] == ' ' && nick[i + 1] == ' ')
|| nick[i] == '/'
|| nick[i] == '\n'
|| nick[i] == '\t'
|| nick[i] == '\v'
2014-10-07 06:43:03 +02:00
|| nick[i] == '\r')
return 0;
2013-11-28 08:53:43 +01:00
}
2014-03-12 01:00:03 +01:00
return 1;
2013-11-29 00:56:56 +01:00
}
2013-12-11 06:10:09 +01:00
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) */
void filter_str(char *str, int len)
{
int i;
for (i = 0; i < len; ++i) {
if (str[i] == '\n' || str[i] == '\r' || str[i] == '\t' || str[i] == '\v')
str[i] = ' ';
}
}
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)
{
int idx = strlen(pathname) - 1;
char *path = strdup(pathname);
2014-07-17 09:35:18 +02:00
if (path == NULL)
exit_toxic_err("failed in get_file_name", FATALERR_MEMORY);
2014-07-02 23:30:31 +02:00
while (idx >= 0 && pathname[idx] == '/')
path[idx--] = '\0';
char *finalname = strdup(path);
2014-07-17 09:35:18 +02:00
if (finalname == NULL)
exit_toxic_err("failed in get_file_name", FATALERR_MEMORY);
const char *basenm = strrchr(path, '/');
if (basenm != NULL) {
if (basenm[1])
strcpy(finalname, &basenm[1]);
}
snprintf(namebuf, bufsize, "%s", finalname);
free(finalname);
free(path);
}
/* converts str to all lowercase */
void str_to_lower(char *str)
{
int i;
for (i = 0; str[i]; ++i)
str[i] = tolower(str[i]);
}
/* 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)
{
int len = tox_get_name(m, friendnum, (uint8_t *) buf);
2014-10-04 01:29:12 +02:00
len = MIN(len, TOXIC_MAX_NAME_LENGTH - 1);
buf[len] = '\0';
filter_str(buf, len);
return len;
}
2014-10-03 23:53:50 +02:00
/* copies data to msg buffer.
returns length of msg, which will be no larger than size-1 */
uint16_t copy_tox_str(char *msg, size_t size, const char *data, uint16_t length)
{
int len = MIN(length, size - 1);
memcpy(msg, data, len);
msg[len] = '\0';
return len;
}
/* 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-17 03:32:47 +02:00
int i = idx;
for (i = idx; s[i]; ++i) {
if (s[i] == ch)
break;
}
return i;
}
/* returns index of the last instance of ch in s starting at len
returns 0 if char not found (skips 0th index) */
int char_rfind(const char *s, char ch, int len)
{
int i = 0;
for (i = len; i > 0; --i) {
if (s[i] == ch)
break;
}
return i;
2014-07-27 23:14:28 +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)
{
double conv = bytes;
const char *unit;
if (conv < KiB) {
unit = "Bytes";
} else if (conv < MiB) {
unit = "KiB";
conv /= (double) KiB;
} else if (conv < GiB) {
unit = "MiB";
conv /= (double) MiB;
} else {
unit = "GiB";
conv /= (double) GiB;
}
snprintf(buf, size, "%.1f %s", conv, unit);
}
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
{
struct stat s;
2014-09-14 23:46:28 +02:00
return stat(path, &s) == 0;
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
{
struct stat st;
if (stat(path, &st) == -1)
return -1;
2014-09-24 20:23:08 +02:00
return st.st_size;
2014-09-24 06:06:02 +02:00
}
/* compares the first size bytes of fp to signature.
Returns 0 if they are the same, 1 if they differ, and -1 on error.
On success this function will seek back to the beginning of fp */
int check_file_signature(const char *signature, size_t size, FILE *fp)
{
char buf[size];
2014-09-29 19:56:17 +02:00
if (fread(buf, size, 1, fp) != 1)
return -1;
int ret = memcmp(signature, buf, size);
if (fseek(fp, 0L, SEEK_SET) == -1)
return -1;
return ret == 0 ? 0 : 1;
}