2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__UTIL_CONV_H
|
|
|
|
#define EL__UTIL_CONV_H
|
|
|
|
|
|
|
|
#include "util/string.h"
|
|
|
|
#include "util/time.h" /* timeval_T types */
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
is_safe_in_shell(unsigned char c)
|
|
|
|
{
|
|
|
|
/* Note: '-' is often used to indicate a command-line option and thus
|
|
|
|
* is not always safe. */
|
|
|
|
return isasciialnum(c)
|
|
|
|
|| c == '@' || c == '+' || c == '.'
|
|
|
|
|| c == '/' || c == ':' || c == '_';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
long strtolx(unsigned char *, unsigned char **);
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Convert a decimal number to hexadecimal (lowercase) (0 <= @a a <= 15). */
|
2005-09-15 09:58:31 -04:00
|
|
|
static inline unsigned char
|
|
|
|
hx(register int a)
|
|
|
|
{
|
|
|
|
return a >= 10 ? a + 'a' - 10 : a + '0';
|
|
|
|
}
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Convert a decimal number to hexadecimal (uppercase) (0 <= @a a <= 15). */
|
2005-09-15 09:58:31 -04:00
|
|
|
static inline unsigned char
|
|
|
|
Hx(register int a)
|
|
|
|
{
|
|
|
|
return a >= 10 ? a + 'A' - 10 : a + '0';
|
|
|
|
}
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Convert an hexadecimal char ([0-9][a-z][A-Z]) to
|
|
|
|
* its decimal value (0 <= result <= 15).
|
|
|
|
* Returns -1 if parameter is not an hexadecimal char. */
|
2005-09-15 09:58:31 -04:00
|
|
|
static inline int
|
|
|
|
unhx(register unsigned char a)
|
|
|
|
{
|
|
|
|
if (isdigit(a)) return a - '0';
|
|
|
|
if (a >= 'a' && a <= 'f') return a - 'a' + 10;
|
|
|
|
if (a >= 'A' && a <= 'F') return a - 'A' + 10;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These use granular allocation stuff. */
|
|
|
|
struct string *add_long_to_string(struct string *string, long number);
|
|
|
|
struct string *add_knum_to_string(struct string *string, long number);
|
|
|
|
struct string *add_xnum_to_string(struct string *string, off_t number);
|
|
|
|
struct string *add_duration_to_string(struct string *string, long seconds);
|
|
|
|
struct string *add_timeval_to_string(struct string *string, timeval_T *timeval);
|
|
|
|
|
|
|
|
#ifdef HAVE_STRFTIME
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Uses strftime() to format @a time according to @a format and adds
|
|
|
|
* the result to @a string. If @a time is NULL, time(NULL) will be
|
2007-07-27 07:14:00 -04:00
|
|
|
* used.
|
|
|
|
* @relates string */
|
2007-03-20 03:21:41 -04:00
|
|
|
struct string *add_date_to_string(struct string *string,
|
|
|
|
const unsigned char *format,
|
|
|
|
const time_t *time);
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** @name Encoders:
|
|
|
|
* They encode and add to the string. This way we don't need to first allocate
|
2005-09-15 09:58:31 -04:00
|
|
|
* and encode a temporary string, add it and then free it. Can be used as
|
2007-07-27 05:35:13 -04:00
|
|
|
* backends for encoder.
|
|
|
|
* @{ */
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** A simple generic encoder. Should maybe take @a replaceable as a
|
2007-07-27 07:14:00 -04:00
|
|
|
* string so we could also use it for adding shell safe strings.
|
|
|
|
* @relates string */
|
2005-09-15 09:58:31 -04:00
|
|
|
struct string *
|
|
|
|
add_string_replace(struct string *string, unsigned char *src, int len,
|
|
|
|
unsigned char replaceable, unsigned char replacement);
|
|
|
|
|
2007-07-27 07:14:00 -04:00
|
|
|
/** @relates string */
|
2005-09-15 09:58:31 -04:00
|
|
|
#define add_optname_to_string(str, src, len) \
|
|
|
|
add_string_replace(str, src, len, '.', '*')
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Maybe a bad name but it is actually the real name, but you may
|
2007-07-27 07:14:00 -04:00
|
|
|
* also think of it as adding the decoded option name.
|
|
|
|
* @relates string */
|
2005-09-15 09:58:31 -04:00
|
|
|
#define add_real_optname_to_string(str, src, len) \
|
|
|
|
add_string_replace(str, src, len, '*', '.')
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Convert reserved chars to html @&@#xx;. This function copies bytes
|
2007-03-19 02:32:43 -04:00
|
|
|
* 0x80...0xFF unchanged, so the caller should ensure that the
|
|
|
|
* resulting HTML will be parsed with the same charset as the original
|
2007-07-27 05:35:13 -04:00
|
|
|
* string. (This function cannot use the @&@#160; syntax for non-ASCII,
|
2007-03-19 02:32:43 -04:00
|
|
|
* because HTML wants Unicode numbers there and this function does not
|
2007-07-27 07:14:00 -04:00
|
|
|
* know the charset of the input data.)
|
|
|
|
* @relates string */
|
2007-03-05 12:35:29 -05:00
|
|
|
struct string *add_html_to_string(struct string *string, const unsigned char *html, int htmllen);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Convert reserved or non-ASCII chars to html @&@#xx;. The resulting
|
2007-03-19 16:09:49 -04:00
|
|
|
* string can be correctly parsed in any charset where bytes
|
2007-07-27 07:14:00 -04:00
|
|
|
* 0x20...0x7E match ASCII.
|
|
|
|
* @relates string */
|
2007-03-19 16:09:49 -04:00
|
|
|
struct string *add_cp_html_to_string(struct string *string, int src_codepage,
|
|
|
|
const unsigned char *html, int htmllen);
|
|
|
|
|
2007-07-27 07:14:00 -04:00
|
|
|
/** Escapes @\ and " with a @\
|
|
|
|
* @relates string */
|
2007-01-27 17:20:59 -05:00
|
|
|
struct string *add_quoted_to_string(struct string *string, const unsigned char *q, int qlen);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Adds ', @a len bytes of @a src with all single-quotes converted to '\'',
|
2007-07-27 07:14:00 -04:00
|
|
|
* and ' to @a string.
|
|
|
|
* @relates string */
|
2005-09-15 09:58:31 -04:00
|
|
|
struct string *add_shell_quoted_to_string(struct string *string,
|
|
|
|
unsigned char *src, int len);
|
|
|
|
|
2007-07-27 07:14:00 -04:00
|
|
|
/* Escapes non shell safe chars with '_'.
|
|
|
|
* @relates string */
|
2005-09-15 09:58:31 -04:00
|
|
|
struct string *add_shell_safe_to_string(struct string *string, unsigned char *cmd, int cmdlen);
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** @} */
|
2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
/* These are fast functions to convert integers to string, or to hexadecimal string. */
|
|
|
|
|
|
|
|
int elinks_ulongcat(unsigned char *s, unsigned int *slen, unsigned long number,
|
|
|
|
unsigned int width, unsigned char fillchar, unsigned int base,
|
|
|
|
unsigned int upper);
|
|
|
|
|
|
|
|
int elinks_longcat(unsigned char *s, unsigned int *slen, long number,
|
|
|
|
unsigned int width, unsigned char fillchar, unsigned int base,
|
|
|
|
unsigned int upper);
|
|
|
|
|
|
|
|
/* Type casting is enforced, to shorten calls. --Zas */
|
2007-07-27 05:35:13 -04:00
|
|
|
/** unsigned long to decimal string */
|
2005-09-15 09:58:31 -04:00
|
|
|
#define ulongcat(s, slen, number, width, fillchar) \
|
|
|
|
elinks_ulongcat((unsigned char *) (s), \
|
|
|
|
(unsigned int *) (slen), \
|
|
|
|
(unsigned long) (number), \
|
|
|
|
(unsigned int) (width), \
|
|
|
|
(unsigned char) (fillchar), \
|
|
|
|
(unsigned int) 10, \
|
|
|
|
(unsigned int) 0)
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** signed long to decimal string */
|
2005-09-15 09:58:31 -04:00
|
|
|
#define longcat(s, slen, number, width, fillchar) \
|
|
|
|
elinks_longcat((unsigned char *) (s), \
|
|
|
|
(unsigned int *) (slen), \
|
|
|
|
(long) (number), \
|
|
|
|
(unsigned int) (width), \
|
|
|
|
(unsigned char) (fillchar), \
|
|
|
|
(unsigned int) 10, \
|
|
|
|
(unsigned int) 0)
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** unsigned long to hexadecimal string */
|
2005-09-15 09:58:31 -04:00
|
|
|
#define ulonghexcat(s, slen, number, width, fillchar, upper) \
|
|
|
|
elinks_ulongcat((unsigned char *) (s), \
|
|
|
|
(unsigned int *) (slen), \
|
|
|
|
(unsigned long) (number), \
|
|
|
|
(unsigned int) (width), \
|
|
|
|
(unsigned char) (fillchar), \
|
|
|
|
(unsigned int) 16, \
|
|
|
|
(unsigned int) (upper))
|
|
|
|
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Return 0 if starting with jan, 11 for dec, -1 for failure.
|
|
|
|
* @a month must be a lowercased string. */
|
2005-09-15 09:58:31 -04:00
|
|
|
int month2num(const unsigned char *month);
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Trim starting and ending chars equal to @a c in string @a s.
|
|
|
|
* If @a len != NULL, it stores new string length in pointed integer.
|
|
|
|
* It returns @a s for convenience. */
|
2005-09-15 09:58:31 -04:00
|
|
|
static inline unsigned char *
|
|
|
|
trim_chars(unsigned char *s, unsigned char c, int *len)
|
|
|
|
{
|
|
|
|
int l = strlen(s);
|
|
|
|
unsigned char *p = s;
|
|
|
|
|
|
|
|
while (*p == c) p++, l--;
|
|
|
|
while (l && p[l - 1] == c) p[--l] = '\0';
|
|
|
|
|
|
|
|
memmove(s, p, l + 1);
|
|
|
|
if (len) *len = l;
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Convert uppercase letters in @a string with the given @a length to
|
|
|
|
* lowercase. */
|
2005-09-15 09:58:31 -04:00
|
|
|
static inline void
|
|
|
|
convert_to_lowercase(unsigned char *string, int length)
|
|
|
|
{
|
|
|
|
for (length--; length >= 0; length--)
|
|
|
|
if (isupper(string[length]))
|
|
|
|
string[length] = tolower(string[length]);
|
|
|
|
}
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** This function drops control chars, nbsp char and limit the number
|
|
|
|
* of consecutive space chars to one. It modifies its argument. */
|
2005-09-15 09:58:31 -04:00
|
|
|
void clr_spaces(unsigned char *str);
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Replace invalid chars in @a title with ' ' and trim all starting/ending
|
2005-09-15 09:58:31 -04:00
|
|
|
* spaces. */
|
|
|
|
void sanitize_title(unsigned char *title);
|
|
|
|
|
2007-07-27 05:35:13 -04:00
|
|
|
/** Returns 0 if @a url contains invalid chars, 1 if ok.
|
2005-09-15 09:58:31 -04:00
|
|
|
* It trims starting/ending spaces. */
|
|
|
|
int sanitize_url(unsigned char *url);
|
|
|
|
|
|
|
|
#endif
|