2022-07-28 15:15:04 +00:00
|
|
|
/*
|
2022-12-26 15:52:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation files
|
|
|
|
* (the "Software"), to deal in the Software without restriction,
|
|
|
|
* including without limitation the rights to use, copy, modify, merge,
|
|
|
|
* publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so,
|
|
|
|
* subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
2022-07-28 16:00:52 +00:00
|
|
|
* included in all copies or portions of the Software.
|
2022-07-28 15:15:04 +00:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2022-07-27 17:47:12 +00:00
|
|
|
#include <Util.h>
|
|
|
|
|
2022-10-13 16:18:42 +00:00
|
|
|
#include <Memory.h>
|
|
|
|
|
2022-10-31 23:52:37 +00:00
|
|
|
#include <stdio.h>
|
2022-07-27 17:47:12 +00:00
|
|
|
#include <stdlib.h>
|
2023-01-07 03:17:06 +00:00
|
|
|
#include <stdarg.h>
|
2022-08-10 00:05:41 +00:00
|
|
|
#include <string.h>
|
2022-10-24 17:40:21 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
2022-08-28 20:05:11 +00:00
|
|
|
#include <time.h>
|
2022-11-02 16:21:03 +00:00
|
|
|
|
2023-01-07 00:18:44 +00:00
|
|
|
#include <unistd.h>
|
2022-10-31 23:52:37 +00:00
|
|
|
#include <errno.h>
|
2022-11-02 16:21:03 +00:00
|
|
|
#include <sys/time.h>
|
2022-11-15 18:20:05 +00:00
|
|
|
#include <sys/stat.h>
|
2022-11-01 00:41:50 +00:00
|
|
|
#include <limits.h>
|
2022-12-15 03:41:59 +00:00
|
|
|
#include <pthread.h>
|
2022-07-27 17:47:12 +00:00
|
|
|
|
2022-11-23 17:31:57 +00:00
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 256
|
|
|
|
#endif
|
|
|
|
|
2023-02-05 14:20:12 +00:00
|
|
|
#ifndef SSIZE_MAX
|
|
|
|
#define SSIZE_MAX LONG_MAX
|
|
|
|
#endif
|
|
|
|
|
2022-10-24 17:40:21 +00:00
|
|
|
unsigned long
|
2022-07-27 17:47:12 +00:00
|
|
|
UtilServerTs(void)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
2022-10-24 17:40:21 +00:00
|
|
|
unsigned long ts;
|
2022-07-27 17:47:12 +00:00
|
|
|
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
ts = (tv.tv_sec * 1000) + (tv.tv_usec / 1000);
|
|
|
|
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
|
2022-11-15 18:20:05 +00:00
|
|
|
unsigned long
|
|
|
|
UtilLastModified(char *path)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
unsigned long ts;
|
|
|
|
|
|
|
|
if (stat(path, &st) == 0)
|
|
|
|
{
|
|
|
|
ts = (st.st_mtim.tv_sec * 1000) + (st.st_mtim.tv_nsec / 1000000);
|
|
|
|
return ts;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-17 22:57:29 +00:00
|
|
|
int
|
|
|
|
UtilMkdir(const char *dir, const mode_t mode)
|
|
|
|
{
|
|
|
|
char tmp[PATH_MAX];
|
|
|
|
char *p = NULL;
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
len = strnlen(dir, PATH_MAX);
|
|
|
|
if (!len || len == PATH_MAX)
|
|
|
|
{
|
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(tmp, dir, len);
|
|
|
|
tmp[len] = '\0';
|
|
|
|
|
|
|
|
if (tmp[len - 1] == '/')
|
|
|
|
{
|
|
|
|
tmp[len - 1] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stat(tmp, &st) == 0 && S_ISDIR(st.st_mode))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (p = tmp + 1; *p; p++)
|
|
|
|
{
|
|
|
|
if (*p == '/')
|
|
|
|
{
|
|
|
|
*p = 0;
|
|
|
|
|
|
|
|
if (stat(tmp, &st) != 0)
|
|
|
|
{
|
|
|
|
if (mkdir(tmp, mode) < 0)
|
|
|
|
{
|
|
|
|
/* errno already set by mkdir() */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!S_ISDIR(st.st_mode))
|
|
|
|
{
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '/';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stat(tmp, &st) != 0)
|
|
|
|
{
|
|
|
|
if (mkdir(tmp, mode) < 0)
|
|
|
|
{
|
|
|
|
/* errno already set by mkdir() */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!S_ISDIR(st.st_mode))
|
|
|
|
{
|
|
|
|
errno = ENOTDIR;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-07-27 17:47:12 +00:00
|
|
|
|
|
|
|
|
2022-08-10 00:05:41 +00:00
|
|
|
|
2023-01-07 03:17:06 +00:00
|
|
|
|
|
|
|
|
2022-11-15 18:20:05 +00:00
|
|
|
|
2022-08-24 23:30:20 +00:00
|
|
|
int
|
|
|
|
UtilSleepMillis(long ms)
|
|
|
|
{
|
|
|
|
struct timespec ts;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
ts.tv_sec = ms / 1000;
|
|
|
|
ts.tv_nsec = (ms % 1000) * 1000000;
|
|
|
|
|
|
|
|
res = nanosleep(&ts, &ts);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2022-10-24 17:40:21 +00:00
|
|
|
|
|
|
|
size_t
|
2022-11-25 21:54:57 +00:00
|
|
|
UtilParseBytes(char *str)
|
2022-10-24 17:40:21 +00:00
|
|
|
{
|
|
|
|
size_t bytes = 0;
|
|
|
|
|
|
|
|
while (*str)
|
|
|
|
{
|
2022-11-02 15:20:37 +00:00
|
|
|
if (isdigit((unsigned char) *str))
|
2022-10-24 17:40:21 +00:00
|
|
|
{
|
|
|
|
bytes *= 10;
|
|
|
|
bytes += *str - '0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch (*str)
|
|
|
|
{
|
|
|
|
case 'K':
|
|
|
|
bytes *= 1024;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
bytes *= pow(1024, 2);
|
|
|
|
break;
|
|
|
|
case 'G':
|
|
|
|
bytes *= pow(1024, 3);
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
bytes *= 1000;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
bytes *= pow(1000, 2);
|
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
bytes *= pow(1000, 3);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*(str + 1))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bytes;
|
|
|
|
}
|
2022-10-31 23:52:37 +00:00
|
|
|
|
|
|
|
ssize_t
|
2023-03-18 14:32:09 +00:00
|
|
|
UtilGetDelim(char **linePtr, size_t * n, int delim, Stream * stream)
|
2022-10-31 23:52:37 +00:00
|
|
|
{
|
|
|
|
char *curPos, *newLinePtr;
|
|
|
|
size_t newLinePtrLen;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
if (!linePtr || !n || !stream)
|
|
|
|
{
|
2022-11-25 21:54:57 +00:00
|
|
|
errno = EINVAL;
|
2022-10-31 23:52:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*linePtr == NULL)
|
|
|
|
{
|
|
|
|
*n = 128;
|
|
|
|
|
|
|
|
if (!(*linePtr = Malloc(*n)))
|
|
|
|
{
|
2022-11-25 21:54:57 +00:00
|
|
|
errno = ENOMEM;
|
2022-10-31 23:52:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
curPos = *linePtr;
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
2023-03-18 14:32:09 +00:00
|
|
|
c = StreamGetc(stream);
|
2022-10-31 23:52:37 +00:00
|
|
|
|
2023-03-18 14:32:09 +00:00
|
|
|
if (StreamError(stream) || (c == EOF && curPos == *linePtr))
|
2022-10-31 23:52:37 +00:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c == EOF)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((*linePtr + *n - curPos) < 2)
|
|
|
|
{
|
|
|
|
if (SSIZE_MAX / 2 < *n)
|
|
|
|
{
|
|
|
|
#ifdef EOVERFLOW
|
2022-11-25 21:54:57 +00:00
|
|
|
errno = EOVERFLOW;
|
2022-10-31 23:52:37 +00:00
|
|
|
#else
|
2022-11-25 21:54:57 +00:00
|
|
|
errno = ERANGE;
|
2022-10-31 23:52:37 +00:00
|
|
|
#endif
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
newLinePtrLen = *n * 2;
|
|
|
|
|
|
|
|
if (!(newLinePtr = Realloc(*linePtr, newLinePtrLen)))
|
|
|
|
{
|
2022-11-25 21:54:57 +00:00
|
|
|
errno = ENOMEM;
|
2022-10-31 23:52:37 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
curPos = newLinePtr + (curPos - *linePtr);
|
|
|
|
*linePtr = newLinePtr;
|
|
|
|
*n = newLinePtrLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
*curPos++ = (char) c;
|
|
|
|
|
|
|
|
if (c == delim)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*curPos = '\0';
|
|
|
|
return (ssize_t) (curPos - *linePtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t
|
2023-03-18 14:32:09 +00:00
|
|
|
UtilGetLine(char **linePtr, size_t * n, Stream * stream)
|
2022-10-31 23:52:37 +00:00
|
|
|
{
|
2022-11-25 21:54:57 +00:00
|
|
|
return UtilGetDelim(linePtr, n, '\n', stream);
|
2022-10-31 23:52:37 +00:00
|
|
|
}
|