Files
UltraGrid/src/utils/misc.c
Martin Pulec 31d9809fcd Updated documentation
Updated authors, copyright to 3-clause BSD (where possible) and file-level Doxygen
2019-11-09 13:47:11 +01:00

186 lines
6.0 KiB
C

/**
* @file utils/misc.c
* @author Martin Pulec <pulec@cesnet.cz>
*/
/*
* Copyright (c) 2014-2019 CESNET, z. s. p. o.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, is permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of CESNET nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
* EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#include "config_unix.h"
#include "config_win32.h"
#endif
#include <limits.h>
#include <math.h>
#include "debug.h"
#include "utils/misc.h"
/**
* Converts units in format <val>[.<val>][kMG] to integral representation.
*
* @param str string to be parsed
* @returns positive integral representation of the string
* @returns -1 if error
*/
long long unit_evaluate(const char *str) {
char *end_ptr;
char unit_prefix_u;
double ret = strtod(str, &end_ptr);
unit_prefix_u = toupper(*end_ptr);
switch(unit_prefix_u) {
case 'G':
ret *= 1000;
/* fall through */
case 'M':
ret *= 1000;
/* fall through */
case 'K':
ret *= 1000;
break;
case '\0':
break;
default:
log_msg(LOG_LEVEL_ERROR, "Error: unknown unit suffix %c.\n", *end_ptr);
return -1;
}
if (ret < 0.0 || ret >= LLONG_MAX || strlen(end_ptr) > 1) {
return -1;
} else {
return ret;
}
}
/**
* Converts units in format <val>[.<val>][kMG] to floating point representation.
*
* @param str string to be parsed
* @returns positive floating point representation of the string
* @returns NAN if error
*/
double unit_evaluate_dbl(const char *str) {
char *end_ptr;
char unit_prefix_u;
double ret = strtod(str, &end_ptr);
unit_prefix_u = toupper(*end_ptr);
switch(unit_prefix_u) {
case 'G':
ret *= 1000;
/* fall through */
case 'M':
ret *= 1000;
/* fall through */
case 'K':
ret *= 1000;
break;
case '\0':
break;
default:
log_msg(LOG_LEVEL_ERROR, "Error: unknown unit suffix %c.\n", *end_ptr);
return NAN;
}
if (ret < 0.0) {
return NAN;
} else {
return ret;
}
}
bool is_wine() {
#ifdef WIN32
HMODULE hntdll = GetModuleHandle("ntdll.dll");
if(!hntdll) {
return false;
}
return GetProcAddress(hntdll, "wine_get_version");
#endif
return false;
}
int get_framerate_n(double fps) {
int denominator = get_framerate_d(fps);
return round(fps * denominator / 100.0) * 100.0; // rounding to 100s to fix inaccuracy errors
// eg. 23.98 * 1001 = 24003.98
}
int get_framerate_d(double fps) {
fps = fps - 0.00001; // we want to round halves down -> base for 10.5 could be 10 rather than 11
int fps_rounded_x1000 = round(fps) * 1000;
if (fabs(fps * 1001 - fps_rounded_x1000) <
fabs(fps * 1000 - fps_rounded_x1000)
&& fps * 1000 < fps_rounded_x1000) {
return 1001;
} else {
return 1000;
}
}
/**
* @brief Replaces all occurencies of 'from' to 'to' in string 'in'
*
* Typical use case is to process escaped colon in arguments:
* ~~~~~~~~~~~~~~~{.c}
* // replace all '\:' with 2xDEL
* replace_all(fmt, ESCAPED_COLON, DELDEL);
* while ((item = strtok())) {
* char *item_dup = strdup(item);
* replace_all(item_dup, DELDEL, ":");
* free(item_dup);
* }
* ~~~~~~~~~~~~~~~
*
* @note
* Replacing pattern must not be longer than the replaced one (because then
* we need to extend the string)
*/
void replace_all(char *in, const char *from, const char *to) {
assert(strlen(from) >= strlen(to) && "Longer dst pattern than src!");
char *tmp = in;
while ((tmp = strstr(tmp, from)) != NULL) {
memcpy(tmp, to, strlen(to));
if (strlen(to) < strlen(from)) { // move the rest
size_t len = strlen(tmp + strlen(from));
char *src = tmp + strlen(from);
char *dst = tmp + strlen(to);
memmove(dst, src, len);
dst[len] = '\0';
}
tmp += strlen(from);
}
}