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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*
* Copyright (c) 2003, 2004 Tama Communications Corporation
*
* This file is part of GNU GLOBAL.
*
* GNU GLOBAL is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* GNU GLOBAL is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#endif
#include "queue.h"
#include "global.h"
#include "incop.h"
#if defined(_WIN32) || defined(__DJGPP__)
# define STRCMP stricmp
#else
# define STRCMP strcmp
#endif
/*----------------------------------------------------------------------*/
/* Pool */
/*----------------------------------------------------------------------*/
SLIST_HEAD(pool, data);
/*
* open_pool: open new string pool.
*/
static struct pool *
open_pool(void)
{
struct pool *head = (struct pool *)malloc(sizeof(struct pool));
if (!head)
die("short of memory.");
SLIST_INIT(head);
return head;
}
/*
* put_pool: put string into the pool.
*
* i) head pool header
* i) name string name
* i) contents string contents
* i) id string id
*/
static void
put_pool(head, name, contents, id)
struct pool *head;
const char *name;
const char *contents;
int id;
{
struct data *data;
if (strlen(name) > MAXPATHLEN)
die("name is too long.");
SLIST_FOREACH(data, head, next) {
if (!STRCMP(data->name, name))
break;
}
if (!data) {
data = (struct data *)malloc(sizeof(struct data));
if (!data)
die("short of memory.");
strlimcpy(data->name, name, sizeof(data->name));
data->id = id;
data->contents = strbuf_open(0);
data->count = 0;
SLIST_INSERT_HEAD(head, data, next);
}
strbuf_puts0(data->contents, contents);
data->count++;
}
/*
* get_pool: get string pool.
*
* i) name name of string pool
* r) descriptor
*/
static struct data *
get_pool(head, name)
struct pool *head;
const char *name;
{
struct data *data;
SLIST_FOREACH(data, head, next) {
if (!STRCMP(data->name, name))
break;
}
return data;
}
/*
* first_data: get the first data in the pool.
*
* r) descriptor
*/
static struct data *
first_data(head)
struct pool *head;
{
return SLIST_FIRST(head);
}
/*
* next_data: get the next data in the pool.
*
* r) descriptor
*/
static struct data *
next_data(data)
struct data *data;
{
return SLIST_NEXT(data, next);
}
/*
* Terminate function is not needed.
*/
/*----------------------------------------------------------------------*/
/* Include path list */
/*----------------------------------------------------------------------*/
static struct pool* head_inc;
static struct data *cur_inc;
static struct pool* head_included;
static struct data *cur_included;
/*
* init_inc: initialize include file list.
*/
void
init_inc(void)
{
head_inc = open_pool();
head_included = open_pool();
}
/*
* put_inc: put include file.
*
* i) file file name (the last component of the path)
* i) path path name or command line.
* i) id path id
*/
void
put_inc(file, path, id)
const char *file;
const char *path;
int id;
{
put_pool(head_inc, file, path, id);
}
/*
* get_inc: get include file.
*
* i) path path name or command line.
* r) descriptor
*/
struct data *
get_inc(name)
const char *name;
{
return get_pool(head_inc, name);
}
/*
* first_inc: get the first include file.
*
* r) descriptor
*/
struct data *
first_inc(void)
{
return cur_inc = first_data(head_inc);
}
/*
* next_inc: get the next include file.
*
* r) descriptor
*/
struct data *
next_inc(void)
{
return cur_inc = next_data(cur_inc);
}
/*
* put_included: put include file.
*
* i) file file name (the last component of the path)
* i) path path name or command line.
* i) id path id
*/
void
put_included(file, path)
const char *file;
const char *path;
{
put_pool(head_included, file, path, 0);
}
/*
* get_included: get included file.
*
* i) path path name or command line.
* r) descriptor
*/
struct data *
get_included(name)
const char *name;
{
return get_pool(head_included, name);
}
/*
* first_included: get the first included file.
*
* r) descriptor
*/
struct data *
first_included(void)
{
return cur_included = first_data(head_included);
}
/*
* next_included: get the next included file.
*
* r) descriptor
*/
struct data *
next_included(void)
{
return cur_included = next_data(cur_included);
}
/*
* Terminate function is not needed.
*/
|