134588d90668a234ae798dd86d4e0b8c897eea9d
[mesa.git] / src / glsl / pp / sl_pp_context.c
1 /**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include "sl_pp_public.h"
31 #include "sl_pp_context.h"
32
33
34 struct sl_pp_context *
35 sl_pp_context_create(void)
36 {
37 struct sl_pp_context *context;
38
39 context = calloc(1, sizeof(struct sl_pp_context));
40 if (!context) {
41 return NULL;
42 }
43
44 if (sl_pp_dict_init(context)) {
45 sl_pp_context_destroy(context);
46 return NULL;
47 }
48
49 context->getc_buf = malloc(64 * sizeof(char));
50 if (!context->getc_buf) {
51 sl_pp_context_destroy(context);
52 return NULL;
53 }
54
55 context->macro_tail = &context->macro;
56 context->if_ptr = SL_PP_MAX_IF_NESTING;
57 context->if_value = 1;
58 memset(context->error_msg, 0, sizeof(context->error_msg));
59 context->line = 1;
60 context->file = 0;
61
62 return context;
63 }
64
65 void
66 sl_pp_context_destroy(struct sl_pp_context *context)
67 {
68 if (context) {
69 free(context->cstr_pool);
70 sl_pp_macro_free(context->macro);
71 free(context->getc_buf);
72 free(context);
73 }
74 }
75
76 const char *
77 sl_pp_context_error_message(const struct sl_pp_context *context)
78 {
79 return context->error_msg;
80 }
81
82 int
83 sl_pp_context_add_unique_str(struct sl_pp_context *context,
84 const char *str)
85 {
86 unsigned int size;
87 unsigned int offset = 0;
88
89 size = strlen(str) + 1;
90
91 /* Find out if this is a unique string. */
92 while (offset < context->cstr_pool_len) {
93 const char *str2;
94 unsigned int size2;
95
96 str2 = &context->cstr_pool[offset];
97 size2 = strlen(str2) + 1;
98 if (size == size2 && !memcmp(str, str2, size - 1)) {
99 return offset;
100 }
101
102 offset += size2;
103 }
104
105 if (context->cstr_pool_len + size > context->cstr_pool_max) {
106 context->cstr_pool_max = (context->cstr_pool_len + size + 0xffff) & ~0xffff;
107 context->cstr_pool = realloc(context->cstr_pool, context->cstr_pool_max);
108 }
109
110 if (!context->cstr_pool) {
111 strcpy(context->error_msg, "out of memory");
112 return -1;
113 }
114
115 offset = context->cstr_pool_len;
116 memcpy(&context->cstr_pool[offset], str, size);
117 context->cstr_pool_len += size;
118
119 return offset;
120 }
121
122 const char *
123 sl_pp_context_cstr(const struct sl_pp_context *context,
124 int offset)
125 {
126 if (offset == -1) {
127 return NULL;
128 }
129 return &context->cstr_pool[offset];
130 }