blob: 591e38aefa68d2e0c9c4a66b98f944e47c11e8e3 [file] [log] [blame]
Michal Krola904b492004-03-04 13:07:52 +00001/*
2 * Mesa 3-D graphics library
Michal Krolcbef98c2004-10-20 15:19:58 +00003 * Version: 6.2
Michal Krola904b492004-03-04 13:07:52 +00004 *
5 * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25#ifndef GRAMMAR_H
26#define GRAMMAR_H
27
28
29#ifndef GRAMMAR_PORT_INCLUDE
30#error Do not include this file directly, include your grammar_XXX.h instead
31#endif
32
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38void grammar_alloc_free (void *);
Karl Schultz6258b762005-05-05 21:08:07 +000039void *grammar_alloc_malloc (size_t);
40void *grammar_alloc_realloc (void *, size_t, size_t);
Adam Jackson1243b822005-05-11 01:33:50 +000041void *grammar_memory_copy (void *, const void *, size_t);
Michal Krola904b492004-03-04 13:07:52 +000042int grammar_string_compare (const byte *, const byte *);
Karl Schultz6258b762005-05-05 21:08:07 +000043int grammar_string_compare_n (const byte *, const byte *, size_t);
Michal Krola904b492004-03-04 13:07:52 +000044byte *grammar_string_copy (byte *, const byte *);
Karl Schultz6258b762005-05-05 21:08:07 +000045byte *grammar_string_copy_n (byte *, const byte *, size_t);
Michal Krola904b492004-03-04 13:07:52 +000046byte *grammar_string_duplicate (const byte *);
47unsigned int grammar_string_length (const byte *);
48
49/*
50 loads grammar script from null-terminated ASCII <text>
51 returns unique grammar id to grammar object
52 returns 0 if an error occurs (call grammar_get_last_error to retrieve the error text)
53*/
54grammar grammar_load_from_text (const byte *text);
55
56/*
57 sets a new <value> to a register <name> for grammar <id>
58 returns 0 on error (call grammar_get_last_error to retrieve the error text)
59 returns 1 on success
60*/
61int grammar_set_reg8 (grammar id, const byte *name, byte value);
62
63/*
Michal Krolcbef98c2004-10-20 15:19:58 +000064 this function is obsolete, use only for debugging purposes
65
Michal Krola904b492004-03-04 13:07:52 +000066 checks if a null-terminated <text> matches given grammar <id>
67 returns 0 on error (call grammar_get_last_error to retrieve the error text)
68 returns 1 on success, the <prod> points to newly allocated buffer with production and <size>
69 is filled with the production size
70 call grammar_alloc_free to free the memory block pointed by <prod>
71*/
72int grammar_check (grammar id, const byte *text, byte **prod, unsigned int *size);
73
74/*
Michal Krolcbef98c2004-10-20 15:19:58 +000075 does the same what grammar_check does but much more (approx. 4 times) faster
76 use this function instead of grammar_check
77 <estimate_prod_size> is a hint - the initial production buffer size will be of this size,
78 but if more room is needed it will be safely resized; set it to 0x1000 or so
79*/
80int grammar_fast_check (grammar id, const byte *text, byte **prod, unsigned int *size,
81 unsigned int estimate_prod_size);
82
83/*
Michal Krola904b492004-03-04 13:07:52 +000084 destroys grammar object identified by <id>
85 returns 0 on error (call grammar_get_last_error to retrieve the error text)
86 returns 1 on success
87*/
88int grammar_destroy (grammar id);
89
90/*
91 retrieves last grammar error reported either by grammar_load_from_text, grammar_check
92 or grammar_destroy
93 the user allocated <text> buffer receives error description, <pos> points to error position,
94 <size> is the size of the text buffer to fill in - it must be at least 4 bytes long,
95*/
96void grammar_get_last_error (byte *text, unsigned int size, int *pos);
97
98#ifdef __cplusplus
99}
100#endif
101
102#endif
103