1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/*****************************************************************
* gmerlin - a general purpose multimedia framework and applications
*
* Copyright (c) 2001 - 2024 Members of the Gmerlin project
* http://github.com/bplaum
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
* *****************************************************************/
#include <stdlib.h>
#include <ctype.h>
#include <gmerlin/utils.h>
int bg_npt_parse(const char * str, gavl_time_t * ret)
{
return gavl_time_parse(str, ret);
}
char * bg_npt_to_string(gavl_time_t time)
{
char * ret;
if(time == 0)
return gavl_strdup("0");
ret = calloc(GAVL_TIME_STRING_LEN_MS+1, 1);
gavl_time_prettyprint_ms(time, ret);
return ret;
}
int bg_npt_parse_range(const char * str, gavl_time_t * start, gavl_time_t * end)
{
int result;
int ret = 0;
/* Skip space */
while(isspace(str[ret]) && (str[ret] != '\0'))
ret++;
if((result = bg_npt_parse(str + ret, start)) <= 0)
return 0;
ret += result;
/* Skip space */
while(isspace(str[ret]) && (str[ret] != '\0'))
ret++;
if(ret != '-')
return 0;
ret++;
/* Skip space */
while(isspace(str[ret]) && (str[ret] != '\0'))
ret++;
if((result = bg_npt_parse(str + ret, end)) <= 0)
*end = GAVL_TIME_UNDEFINED;
else
ret += result;
return ret;
}
char * bg_npt_range_to_string(gavl_time_t start, gavl_time_t end)
{
char * ret;
char * start_str;
start_str = bg_npt_to_string(start);
if(end == GAVL_TIME_UNDEFINED)
ret = gavl_sprintf("%s-", start_str);
else
{
char * end_str;
end_str = bg_npt_to_string(end);
ret = gavl_sprintf("%s-%s", start_str, end_str);
free(end_str);
}
free(start_str);
return ret;
}
|