/* textutils_internal.h -- non-bioinformatics utility routines for text etc. Copyright (C) 2016,2018-2020 Genome Research Ltd. Author: John Marshall 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 included in all copies or substantial portions of the Software. 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. */ #ifndef HTSLIB_TEXTUTILS_INTERNAL_H #define HTSLIB_TEXTUTILS_INTERNAL_H /* N.B. These interfaces may be used by plug-ins */ #include #include #include "htslib/kstring.h" #ifdef __cplusplus extern "C" { #endif /// Decode percent-encoded (URL-encoded) text /** On input, _dest_ should be a buffer at least the same size as _s_, and may be equal to _s_ to decode in place. On output, _dest_ will be NUL-terminated and the number of characters written (not including the NUL) is stored in _destlen_. */ int hts_decode_percent(char *dest, size_t *destlen, const char *s); /// Return decoded data length given length of base64-encoded text /** This gives an upper bound, as it overestimates by a byte or two when the encoded text ends with (possibly omitted) `=` padding characters. */ size_t hts_base64_decoded_length(size_t len); /// Decode base64-encoded data /** On input, _dest_ should be a sufficient buffer (see `hts_base64_length()`), and may be equal to _s_ to decode in place. On output, the number of bytes written is stored in _destlen_. */ int hts_decode_base64(char *dest, size_t *destlen, const char *s); /// Token structure returned by JSON lexing functions /** Structure is defined in hts_internal.h */ typedef struct hts_json_token hts_json_token; /// Allocate an empty JSON token structure, for use with hts_json_* functions /** @return An empty token on success; NULL on failure */ hts_json_token *hts_json_alloc_token(void); /// Free a JSON token void hts_json_free_token(hts_json_token *token); /// Accessor function to get JSON token type /** @param token Pointer to JSON token @return Character indicating the token type Token types correspond to scalar JSON values and selected punctuation as follows: - `s` string - `n` number - `b` boolean literal - `.` null literal - `{`, `}`, `[`, `]` object and array delimiters - `?` lexing error - `!` other errors (e.g. out of memory) - `\0` terminator at end of input */ char hts_json_token_type(hts_json_token *token); /// Accessor function to get JSON token in string form /** @param token Pointer to JSON token @return String representation of the JSON token; NULL if unset If the token was parsed from a string using hts_json_snext(), the return value will point into the string passed as the first parameter to hts_json_snext(). If the token was parsed from a file using hts_json_fnext(), the return value will point at the kstring_t buffer passed as the third parameter to hts_json_fnext(). In that case, the value will only be valid until the next call to hts_json_fnext(). */ char *hts_json_token_str(hts_json_token *token); /// Read one JSON token from a string /** @param str The input C string @param state The input string state @param token On return, filled in with the token read @return The type of the token read On return, `token->str` points into the supplied input string, which is modified by having token-terminating characters overwritten as NULs. The `state` argument records the current position within `str` after each `hts_json_snext()` call, and should be set to 0 before the first call. */ char hts_json_snext(char *str, size_t *state, hts_json_token *token); /// Read and discard a complete JSON value from a string /** @param str The input C string @param state The input string state, as per `hts_json_snext()` @param type If the first token of the value to be discarded has already been read, provide its type; otherwise `'\0'` @return One of `v` (success), `\0` (end of string), and `?` (lexing error) Skips a complete JSON value, which may be a single token or an entire object or array. */ char hts_json_sskip_value(char *str, size_t *state, char type); struct hFILE; /// Read one JSON token from a file /** @param fp The file stream @param token On return, filled in with the token read @param kstr Buffer used to store the token string returned @return The type of the token read The `kstr` buffer is used to store the string value of the token read, so `token->str` is only valid until the next time `hts_json_fnext()` is called with the same `kstr` argument. */ char hts_json_fnext(struct hFILE *fp, hts_json_token *token, kstring_t *kstr); /// Read and discard a complete JSON value from a file /** @param fp The file stream @param type If the first token of the value to be discarded has already been read, provide its type; otherwise `'\0'` @return One of `v` (success), `\0` (EOF), and `?` (lexing error) Skips a complete JSON value, which may be a single token or an entire object or array. */ char hts_json_fskip_value(struct hFILE *fp, char type); // The functions operate on ints such as are returned by fgetc(), // i.e., characters represented as unsigned-char-valued ints, or EOF. // To operate on plain chars (and to avoid warnings on some platforms), // technically one must cast to unsigned char everywhere (see CERT STR37-C) // or less painfully use these *_c() functions that operate on plain chars // (but not EOF, which must be considered separately where it is applicable). // TODO We may eventually wish to implement these functions directly without // using their equivalents, and thus make them immune to locales. static inline int isalnum_c(char c) { return isalnum((unsigned char) c); } static inline int isalpha_c(char c) { return isalpha((unsigned char) c); } static inline int isdigit_c(char c) { return isdigit((unsigned char) c); } static inline int isgraph_c(char c) { return isgraph((unsigned char) c); } static inline int islower_c(char c) { return islower((unsigned char) c); } static inline int isprint_c(char c) { return isprint((unsigned char) c); } static inline int ispunct_c(char c) { return ispunct((unsigned char) c); } static inline int isspace_c(char c) { return isspace((unsigned char) c); } static inline int isupper_c(char c) { return isupper((unsigned char) c); } static inline int isxdigit_c(char c) { return isxdigit((unsigned char) c); } static inline char tolower_c(char c) { return tolower((unsigned char) c); } static inline char toupper_c(char c) { return toupper((unsigned char) c); } /// Copy possibly malicious text data to a buffer /** @param buf Destination buffer @param buflen Size of the destination buffer (>= 4; >= 6 when quotes used) @param quote Quote character (or '\0' for no quoting of the output) @param s String to be copied @param len Length of the input string, or SIZE_MAX to copy until '\0' @return The destination buffer, @a buf. Copies the source text string (escaping any unprintable characters) to the destination buffer. The destination buffer will always be NUL-terminated; the text will be truncated (and "..." appended) if necessary to make it fit. */ const char *hts_strprint(char *buf, size_t buflen, char quote, const char *s, size_t len); // Faster replacements for strtol, for use when parsing lots of numbers. // Note that these only handle base 10 and do not skip leading whitespace /// Convert a string to a signed integer, with overflow detection /** @param[in] in Input string @param[out] end Returned end pointer @param[in] bits Bits available for the converted value @param[out] failed Location of overflow flag @return String value converted to an int64_t Converts a signed decimal string to an int64_t. The string should consist of an optional '+' or '-' sign followed by one or more of the digits 0 to 9. The output value will be limited to fit in the given number of bits (including the sign bit). If the value is too big, the largest possible value will be returned and *failed will be set to 1. The address of the first character following the converted number will be stored in *end. Both end and failed must be non-NULL. */ static inline int64_t hts_str2int(const char *in, char **end, int bits, int *failed) { uint64_t n = 0, limit = (1ULL << (bits - 1)) - 1; uint32_t fast = (bits - 1) * 1000 / 3322 + 1; // log(10)/log(2) ~= 3.322 const unsigned char *v = (const unsigned char *) in; const unsigned int ascii_zero = '0'; // Prevents conversion to signed unsigned char d; int neg = 1; switch(*v) { case '-': neg=-1; limit++; /* fall through */ case '+': v++; break; default: break; } while (--fast && *v>='0' && *v<='9') n = n*10 + *v++ - ascii_zero; if (!fast) { uint64_t limit_d_10 = limit / 10; uint64_t limit_m_10 = limit - 10 * limit_d_10; while ((d = *v - ascii_zero) < 10) { if (n < limit_d_10 || (n == limit_d_10 && d <= limit_m_10)) { n = n*10 + d; v++; } else { do { v++; } while (*v - ascii_zero < 10); n = limit; *failed = 1; break; } } } *end = (char *)v; return (n && neg < 0) ? -((int64_t) (n - 1)) - 1 : (int64_t) n; } /// Convert a string to an unsigned integer, with overflow detection /** @param[in] in Input string @param[out] end Returned end pointer @param[in] bits Bits available for the converted value @param[out] failed Location of overflow flag @return String value converted to a uint64_t Converts an unsigned decimal string to a uint64_t. The string should consist of an optional '+' sign followed by one or more of the digits 0 to 9. The output value will be limited to fit in the given number of bits. If the value is too big, the largest possible value will be returned and *failed will be set to 1. The address of the first character following the converted number will be stored in *end. Both end and failed must be non-NULL. */ static inline uint64_t hts_str2uint(const char *in, char **end, int bits, int *failed) { uint64_t n = 0, limit = (bits < 64 ? (1ULL << bits) : 0) - 1; const unsigned char *v = (const unsigned char *) in; const unsigned int ascii_zero = '0'; // Prevents conversion to signed uint32_t fast = bits * 1000 / 3322 + 1; // log(10)/log(2) ~= 3.322 unsigned char d; if (*v == '+') v++; while (--fast && *v>='0' && *v<='9') n = n*10 + *v++ - ascii_zero; if (!fast) { uint64_t limit_d_10 = limit / 10; uint64_t limit_m_10 = limit - 10 * limit_d_10; while ((d = *v - ascii_zero) < 10) { if (n < limit_d_10 || (n == limit_d_10 && d <= limit_m_10)) { n = n*10 + d; v++; } else { do { v++; } while (*v - ascii_zero < 10); n = limit; *failed = 1; break; } } } *end = (char *)v; return n; } /// Convert a string to a double, with overflow detection /** @param[in] in Input string @param[out] end Returned end pointer @param[out] failed Location of overflow flag @return String value converted to a double Converts a floating point value string to a double. The string should have the format [+-]?[0-9]*[.]?[0-9]* with at least one and no more than 15 digits. Strings that do not match (inf, nan, values with exponents) will be passed on to strtod() for processing. If the value is too big, the largest possible value will be returned; if it is too small to be represented in a double zero will be returned. In both cases errno will be set to ERANGE. If no characters could be converted, *failed will be set to 1. The address of the first character following the converted number will be stored in *end. Both end and failed must be non-NULL. */ static inline double hts_str2dbl(const char *in, char **end, int *failed) { uint64_t n = 0; int max_len = 15; const unsigned char *v = (const unsigned char *) in; const unsigned int ascii_zero = '0'; // Prevents conversion to signed int neg = 0, point = -1; double d; static double D[] = {1,1, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10,1e11,1e12,1e13,1e14,1e15, 1e16,1e17,1e18,1e19,1e20}; while (isspace(*v)) v++; if (*v == '-') { neg = 1; v++; } else if (*v == '+') { v++; } switch(*v) { case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': break; case '0': if (v[1] != 'x' && v[1] != 'X') break; // else fall through - hex number default: // Non numbers, like NaN, Inf d = strtod(in, end); if (*end == in) *failed = 1; return d; } while (*v == '0') ++v; const unsigned char *start = v; while (--max_len && *v>='0' && *v<='9') n = n*10 + *v++ - ascii_zero; if (max_len && *v == '.') { point = v - start; v++; while (--max_len && *v>='0' && *v<='9') n = n*10 + *v++ - ascii_zero; } if (point < 0) point = v - start; // Outside the scope of this quick and dirty parser. if (!max_len || *v == 'e' || *v == 'E') { d = strtod(in, end); if (*end == in) *failed = 1; return d; } *end = (char *)v; d = n / D[v - start - point]; return neg ? -d : d; } #ifdef __cplusplus } #endif #endif