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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/*
* Copyright © 2016 Intel Corporation
*
* 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 (including the next
* paragraph) 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.
*/
/**
* \file parser_utils.h
*
* These are a bunch of plain-text parsing utilities, most of them
* have the form:
* boolean-like parse_foo(input-string, output-foo, output-string)
*
* If the input is a well-formed string representation of a "foo"
* value, as many characters will be read from the string as they are
* needed to initialize the "foo" object returned via the first output
* argument, and the boolean return value will evaluate to true. If
* the output string argument is not NULL, a pointer one past the last
* character consumed to parse a "foo" value will be returned to the
* caller so that the rest of the document can be processed (e.g. by
* passing the output string as input string of another parse
* function).
*
* If the input cannot be parsed as a "foo" object, the boolean return
* value will evaluate to false and the input string will be returned
* as output string as-is (which mimicks the behavior of the C
* standard library strto* functions). The "foo" output argument will
* be left in an undefined state in that case.
*/
#ifndef PIGLIT_PARSER_UTILS_H
#define PIGLIT_PARSER_UTILS_H
#include <stdbool.h>
#include "piglit-util-gl.h"
/**
* Parse one or more whitespace characters (other than newline) from
* the input string.
*/
bool
parse_whitespace(const char *s, const char **rest);
/**
* Parse an exact match of string \p lit, optionally preceded by
* whitespace.
*/
bool
parse_str(const char *s, const char *lit, const char **rest);
/**
* Parse up to \p n whitespace-separated signed integer values. The
* number of values actually parsed is returned as result.
*/
unsigned
parse_ints(const char *s, int *i, unsigned n, const char **rest);
static inline bool
parse_int(const char *s, int *i, const char **rest)
{
return parse_ints(s, i, 1, rest);
}
/**
* Parse up to \p n whitespace-separated unsigned integer values. The
* number of values actually parsed is returned as result.
*/
unsigned
parse_uints(const char *s, unsigned *u, unsigned n, const char **rest);
static inline bool
parse_uint(const char *s, unsigned *u, const char **rest)
{
return parse_uints(s, u, 1, rest);
}
/**
* Parse up to \p n whitespace-separated signed 64-bit integer values.
* The number of values actually parsed is returned as result.
*/
unsigned
parse_int64s(const char *s, int64_t *i, unsigned n, const char **rest);
static inline bool
parse_int64(const char *s, int64_t *i, const char **rest)
{
return parse_int64s(s, i, 1, rest);
}
/**
* Parse up to \p n whitespace-separated unsigned 64-bit integer
* values. The number of values actually parsed is returned as
* result.
*/
unsigned
parse_uint64s(const char *s, uint64_t *u, unsigned n, const char **rest);
static inline bool
parse_uint64(const char *s, uint64_t *u, const char **rest)
{
return parse_uint64s(s, u, 1, rest);
}
/**
* Parse up to \p n whitespace-separated floating point values. The
* number of values actually parsed is returned as result.
*/
unsigned
parse_floats(const char *s, float *f, unsigned n, const char **rest);
static inline bool
parse_float(const char *s, float *f, const char **rest)
{
return parse_floats(s, f, 1, rest);
}
/**
* Parse up to \p n whitespace-separated double-precision floating
* point values. The number of values actually parsed is returned as
* result.
*/
unsigned
parse_doubles(const char *s, double *d, unsigned n, const char **rest);
static inline bool
parse_double(const char *s, double *d, const char **rest)
{
return parse_doubles(s, d, 1, rest);
}
/**
* Parse a single non-empty whitespace-separated token. On success \p
* t and \p rest will respectively point at the first and one past the
* last character of the result.
*/
bool
parse_word(const char *s, const char **t, const char **rest);
/**
* Like parse_word(), but the result is copied into the fixed-size
* buffer pointed to by \p t and null-terminated.
*
* The parse is considered to fail if the size of the result
* (including the terminating null character) would have exceded the
* number of characters allocated for it in the buffer as given by the
* \p n argument.
*/
bool
parse_word_copy(const char *s, char *t, unsigned n, const char **rest);
/**
* Parse a GL_* symbolic constant.
*/
bool
parse_enum_gl(const char *s, GLenum *e, const char **rest);
struct string_to_enum {
const char *name;
unsigned value;
};
/**
* Parse a whitespace-delimited symbolic constant from the set
* specified in the \p tab argument pointing to a zero-terminated
* array of string-value pairs.
*/
bool
parse_enum_tab(const struct string_to_enum *tab,
const char *s, unsigned *e, const char **rest);
/**
* Parse a texture target symbolic constant.
*/
bool
parse_tex_target(const char *s, GLenum *t, const char **rest);
enum comparison {
equal = 0,
not_equal,
less,
greater_equal,
greater,
less_equal
};
/**
* Parse a binary comparison operator.
*/
bool parse_comparison_op(const char *s, enum comparison *t, const char **rest);
/**
* Abort the Piglit test with failure status if the boolean expression
* (typically the result of a chain of parse function calls) evaluates
* to false.
*/
#define REQUIRE(b, ...) do { \
if (!(b)) { \
fprintf(stderr, __VA_ARGS__); \
piglit_report_result(PIGLIT_FAIL); \
} \
} while (0)
#endif
|