* _scm.h: Removed #include <errno.h>.
[bpt/guile.git] / libguile / srcprop.c
CommitLineData
e6e2e95a 1/* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation
575888bd
MD
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
82892bed
JB
15 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
16 * Boston, MA 02111-1307 USA
575888bd
MD
17 *
18 * As a special exception, the Free Software Foundation gives permission
19 * for additional uses of the text contained in its release of GUILE.
20 *
21 * The exception is that, if you link the GUILE library with other files
22 * to produce an executable, this does not by itself cause the
23 * resulting executable to be covered by the GNU General Public License.
24 * Your use of that executable is in no way restricted on account of
25 * linking the GUILE library code into it.
26 *
27 * This exception does not however invalidate any other reasons why
28 * the executable file might be covered by the GNU General Public License.
29 *
30 * This exception applies only to the code released by the
31 * Free Software Foundation under the name GUILE. If you copy
32 * code from other Free Software Foundation releases into a copy of
33 * GUILE, as the General Public License permits, the exception does
34 * not apply to the code that you add in this way. To avoid misleading
35 * anyone as to the status of such modified files, you must delete
36 * this exception notice from them.
37 *
38 * If you write modifications of your own for GUILE, it is your choice
39 * whether to permit this exception to apply to your modifications.
40 * If you do not wish that, delete this exception notice.
41 *
42 * The author can be reached at djurfeldt@nada.kth.se
82892bed 43 * Mikael Djurfeldt, SANS/NADA KTH, 10044 STOCKHOLM, SWEDEN */
1bbd0b84
GB
44
45/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
46 gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
47
575888bd
MD
48\f
49
e6e2e95a
MD
50#include <errno.h>
51
a0599745
MD
52#include "libguile/_scm.h"
53#include "libguile/smob.h"
54#include "libguile/alist.h"
55#include "libguile/debug.h"
56#include "libguile/hashtab.h"
57#include "libguile/hash.h"
58#include "libguile/ports.h"
59#include "libguile/root.h"
60#include "libguile/weaks.h"
575888bd 61
a0599745
MD
62#include "libguile/validate.h"
63#include "libguile/srcprop.h"
575888bd
MD
64\f
65/* {Source Properties}
66 *
67 * Properties of source list expressions.
68 * Five of these have special meaning and optimized storage:
69 *
70 * filename string The name of the source file.
71 * copy list A copy of the list expression.
72 * line integer The source code line number.
73 * column integer The source code column number.
74 * breakpoint boolean Sets a breakpoint on this form.
75 *
76 * Most properties above can be set by the reader.
77 *
78 */
79
85db4a2c
DH
80SCM_GLOBAL_SYMBOL (scm_sym_filename, "filename");
81SCM_GLOBAL_SYMBOL (scm_sym_copy, "copy");
82SCM_GLOBAL_SYMBOL (scm_sym_line, "line");
83SCM_GLOBAL_SYMBOL (scm_sym_column, "column");
84SCM_GLOBAL_SYMBOL (scm_sym_breakpoint, "breakpoint");
575888bd 85
e841c3e0 86scm_bits_t scm_tc16_srcprops;
575888bd
MD
87static scm_srcprops_chunk *srcprops_chunklist = 0;
88static scm_srcprops *srcprops_freelist = 0;
89
1cc91f1b 90
575888bd 91static SCM
e841c3e0 92srcprops_mark (SCM obj)
575888bd 93{
575888bd
MD
94 scm_gc_mark (SRCPROPFNAME (obj));
95 scm_gc_mark (SRCPROPCOPY (obj));
96 return SRCPROPPLIST (obj);
97}
98
1cc91f1b 99
575888bd 100static scm_sizet
e841c3e0 101srcprops_free (SCM obj)
575888bd 102{
54778cd3
DH
103 *((scm_srcprops **) SCM_CELL_WORD_1 (obj)) = srcprops_freelist;
104 srcprops_freelist = (scm_srcprops *) SCM_CELL_WORD_1 (obj);
575888bd
MD
105 return 0; /* srcprops_chunks are not freed until leaving guile */
106}
107
1cc91f1b 108
575888bd 109static int
e841c3e0 110srcprops_print (SCM obj, SCM port, scm_print_state *pstate)
575888bd 111{
19402679 112 int writingp = SCM_WRITINGP (pstate);
b7f3516f 113 scm_puts ("#<srcprops ", port);
19402679
MD
114 SCM_SET_WRITINGP (pstate, 1);
115 scm_iprin1 (scm_srcprops_to_plist (obj), port, pstate);
116 SCM_SET_WRITINGP (pstate, writingp);
b7f3516f 117 scm_putc ('>', port);
575888bd
MD
118 return 1;
119}
120
1cc91f1b 121
575888bd 122SCM
1bbd0b84 123scm_make_srcprops (int line, int col, SCM filename, SCM copy, SCM plist)
575888bd 124{
575888bd
MD
125 register scm_srcprops *ptr;
126 SCM_DEFER_INTS;
127 if ((ptr = srcprops_freelist) != NULL)
128 srcprops_freelist = *(scm_srcprops **)ptr;
129 else
130 {
131 int i;
132 scm_srcprops_chunk *mem;
133 scm_sizet n = sizeof (scm_srcprops_chunk)
134 + sizeof (scm_srcprops) * (SRCPROPS_CHUNKSIZE - 1);
135 SCM_SYSCALL (mem = (scm_srcprops_chunk *) malloc (n));
2500356c
DH
136 if (mem == NULL)
137 scm_memory_error ("srcprops");
575888bd
MD
138 scm_mallocated += n;
139 mem->next = srcprops_chunklist;
140 srcprops_chunklist = mem;
141 ptr = &mem->srcprops[0];
142 for (i = 1; i < SRCPROPS_CHUNKSIZE - 1; ++i)
143 *(scm_srcprops **)&ptr[i] = &ptr[i + 1];
144 *(scm_srcprops **)&ptr[SRCPROPS_CHUNKSIZE - 1] = 0;
145 srcprops_freelist = (scm_srcprops *) &ptr[1];
146 }
575888bd
MD
147 ptr->pos = SRCPROPMAKPOS (line, col);
148 ptr->fname = filename;
149 ptr->copy = copy;
150 ptr->plist = plist;
23a62151 151 SCM_RETURN_NEWSMOB (scm_tc16_srcprops, ptr);
575888bd
MD
152}
153
1cc91f1b 154
575888bd 155SCM
1bbd0b84 156scm_srcprops_to_plist (SCM obj)
575888bd
MD
157{
158 SCM plist = SRCPROPPLIST (obj);
159 if (!SCM_UNBNDP (SRCPROPCOPY (obj)))
92e5aa0e 160 plist = scm_acons (scm_sym_copy, SRCPROPCOPY (obj), plist);
575888bd 161 if (!SCM_UNBNDP (SRCPROPFNAME (obj)))
92e5aa0e
MD
162 plist = scm_acons (scm_sym_filename, SRCPROPFNAME (obj), plist);
163 plist = scm_acons (scm_sym_column, SCM_MAKINUM (SRCPROPCOL (obj)), plist);
164 plist = scm_acons (scm_sym_line, SCM_MAKINUM (SRCPROPLINE (obj)), plist);
165 plist = scm_acons (scm_sym_breakpoint, SRCPROPBRK (obj), plist);
575888bd
MD
166 return plist;
167}
168
a1ec6916 169SCM_DEFINE (scm_source_properties, "source-properties", 1, 0, 0,
1bbd0b84 170 (SCM obj),
e3239868 171 "Return the source property association list of @var{obj}.")
1bbd0b84 172#define FUNC_NAME s_scm_source_properties
575888bd
MD
173{
174 SCM p;
6b5a304f 175 SCM_VALIDATE_NIM (1,obj);
575888bd 176 if (SCM_MEMOIZEDP (obj))
a4645b97
MD
177 obj = SCM_MEMOIZED_EXP (obj);
178#ifndef SCM_RECKLESS
179 else if (SCM_NCONSP (obj))
1bbd0b84 180 SCM_WRONG_TYPE_ARG (1, obj);
a4645b97 181#endif
230d095f
DH
182 p = scm_hashq_ref (scm_source_whash, obj, SCM_BOOL_F);
183 if (SRCPROPSP (p))
575888bd
MD
184 return scm_srcprops_to_plist (p);
185 return SCM_EOL;
186}
1bbd0b84 187#undef FUNC_NAME
575888bd
MD
188
189/* Perhaps this procedure should look through an alist
190 and try to make a srcprops-object...? */
a1ec6916 191SCM_DEFINE (scm_set_source_properties_x, "set-source-properties!", 2, 0, 0,
1bbd0b84 192 (SCM obj, SCM plist),
e3239868
DH
193 "Install the association list @var{plist} as the source property\n"
194 "list for @var{obj}.")
1bbd0b84 195#define FUNC_NAME s_scm_set_source_properties_x
575888bd
MD
196{
197 SCM handle;
6b5a304f 198 SCM_VALIDATE_NIM (1,obj);
575888bd 199 if (SCM_MEMOIZEDP (obj))
a4645b97
MD
200 obj = SCM_MEMOIZED_EXP (obj);
201#ifndef SCM_RECKLESS
202 else if (SCM_NCONSP (obj))
1bbd0b84 203 SCM_WRONG_TYPE_ARG(1, obj);
a4645b97 204#endif
575888bd
MD
205 handle = scm_hashq_create_handle_x (scm_source_whash, obj, plist);
206 SCM_SETCDR (handle, plist);
207 return plist;
208}
1bbd0b84 209#undef FUNC_NAME
575888bd 210
a1ec6916 211SCM_DEFINE (scm_source_property, "source-property", 2, 0, 0,
1bbd0b84 212 (SCM obj, SCM key),
e3239868
DH
213 "Return the source property specified by @var{key} from\n"
214 "@var{obj}'s source property list.")
1bbd0b84 215#define FUNC_NAME s_scm_source_property
575888bd
MD
216{
217 SCM p;
6b5a304f 218 SCM_VALIDATE_NIM (1,obj);
575888bd 219 if (SCM_MEMOIZEDP (obj))
a4645b97
MD
220 obj = SCM_MEMOIZED_EXP (obj);
221#ifndef SCM_RECKLESS
09a56810 222 else if (SCM_NECONSP (obj))
1bbd0b84 223 SCM_WRONG_TYPE_ARG (1, obj);
a4645b97 224#endif
575888bd
MD
225 p = scm_hashq_ref (scm_source_whash, obj, SCM_EOL);
226 if (SCM_IMP (p) || !SRCPROPSP (p))
227 goto plist;
54778cd3
DH
228 if (SCM_EQ_P (scm_sym_breakpoint, key)) p = SRCPROPBRK (p);
229 else if (SCM_EQ_P (scm_sym_line, key)) p = SCM_MAKINUM (SRCPROPLINE (p));
230 else if (SCM_EQ_P (scm_sym_column, key)) p = SCM_MAKINUM (SRCPROPCOL (p));
231 else if (SCM_EQ_P (scm_sym_filename, key)) p = SRCPROPFNAME (p);
232 else if (SCM_EQ_P (scm_sym_copy, key)) p = SRCPROPCOPY (p);
575888bd
MD
233 else
234 {
235 p = SRCPROPPLIST (p);
236 plist:
237 p = scm_assoc (key, p);
238 return (SCM_NIMP (p) ? SCM_CDR (p) : SCM_BOOL_F);
239 }
240 return SCM_UNBNDP (p) ? SCM_BOOL_F : p;
241}
1bbd0b84 242#undef FUNC_NAME
575888bd 243
a1ec6916 244SCM_DEFINE (scm_set_source_property_x, "set-source-property!", 3, 0, 0,
1bbd0b84 245 (SCM obj, SCM key, SCM datum),
e3239868
DH
246 "Set the source property of object @var{obj}, which is specified by\n"
247 "@var{key} to @var{datum}. Normally, the key will be a symbol.")
1bbd0b84 248#define FUNC_NAME s_scm_set_source_property_x
575888bd
MD
249{
250 scm_whash_handle h;
251 SCM p;
6b5a304f 252 SCM_VALIDATE_NIM (1,obj);
575888bd 253 if (SCM_MEMOIZEDP (obj))
a4645b97
MD
254 obj = SCM_MEMOIZED_EXP (obj);
255#ifndef SCM_RECKLESS
256 else if (SCM_NCONSP (obj))
1bbd0b84 257 SCM_WRONG_TYPE_ARG (1, obj);
a4645b97 258#endif
575888bd
MD
259 h = scm_whash_get_handle (scm_source_whash, obj);
260 if (SCM_WHASHFOUNDP (h))
261 p = SCM_WHASHREF (scm_source_whash, h);
262 else
263 {
264 h = scm_whash_create_handle (scm_source_whash, obj);
265 p = SCM_EOL;
266 }
54778cd3 267 if (SCM_EQ_P (scm_sym_breakpoint, key))
cda139a7 268 {
62850ef3
DH
269 if (SRCPROPSP (p))
270 {
271 if (SCM_FALSEP (datum))
272 CLEARSRCPROPBRK (p);
273 else
274 SETSRCPROPBRK (p);
275 }
cda139a7 276 else
62850ef3
DH
277 {
278 SCM sp = scm_make_srcprops (0, 0, SCM_UNDEFINED, SCM_UNDEFINED, p);
279 SCM_WHASHSET (scm_source_whash, h, sp);
280 if (SCM_FALSEP (datum))
281 CLEARSRCPROPBRK (sp);
282 else
283 SETSRCPROPBRK (sp);
284 }
cda139a7 285 }
54778cd3 286 else if (SCM_EQ_P (scm_sym_line, key))
575888bd 287 {
3b3b36dd 288 SCM_VALIDATE_INUM (3,datum);
0c95b57d 289 if (SRCPROPSP (p))
a9dbb9fd 290 SETSRCPROPLINE (p, SCM_INUM (datum));
575888bd
MD
291 else
292 SCM_WHASHSET (scm_source_whash, h,
a9dbb9fd
MD
293 scm_make_srcprops (SCM_INUM (datum), 0,
294 SCM_UNDEFINED, SCM_UNDEFINED, p));
575888bd 295 }
54778cd3 296 else if (SCM_EQ_P (scm_sym_column, key))
575888bd 297 {
3b3b36dd 298 SCM_VALIDATE_INUM (3,datum);
0c95b57d 299 if (SRCPROPSP (p))
a9dbb9fd 300 SETSRCPROPCOL (p, SCM_INUM (datum));
575888bd
MD
301 else
302 SCM_WHASHSET (scm_source_whash, h,
a9dbb9fd
MD
303 scm_make_srcprops (0, SCM_INUM (datum),
304 SCM_UNDEFINED, SCM_UNDEFINED, p));
575888bd 305 }
54778cd3 306 else if (SCM_EQ_P (scm_sym_filename, key))
575888bd 307 {
0c95b57d 308 if (SRCPROPSP (p))
575888bd
MD
309 SRCPROPFNAME (p) = datum;
310 else
5c5549cb 311 SCM_WHASHSET (scm_source_whash, h, scm_make_srcprops (0, 0, datum, SCM_UNDEFINED, p));
575888bd 312 }
0419a528 313 else if (SCM_EQ_P (scm_sym_copy, key))
575888bd 314 {
0c95b57d 315 if (SRCPROPSP (p))
575888bd
MD
316 SRCPROPCOPY (p) = datum;
317 else
5c5549cb 318 SCM_WHASHSET (scm_source_whash, h, scm_make_srcprops (0, 0, SCM_UNDEFINED, datum, p));
575888bd
MD
319 }
320 else
321 SCM_WHASHSET (scm_source_whash, h, scm_acons (key, datum, p));
322 return SCM_UNSPECIFIED;
323}
1bbd0b84 324#undef FUNC_NAME
575888bd 325
1cc91f1b 326
575888bd
MD
327void
328scm_init_srcprop ()
575888bd 329{
e841c3e0
KN
330 scm_tc16_srcprops = scm_make_smob_type ("srcprops", 0);
331 scm_set_smob_mark (scm_tc16_srcprops, srcprops_mark);
332 scm_set_smob_free (scm_tc16_srcprops, srcprops_free);
333 scm_set_smob_print (scm_tc16_srcprops, srcprops_print);
334
5c5549cb 335 scm_source_whash = scm_make_weak_key_hash_table (SCM_MAKINUM (2047));
575888bd 336 scm_sysintern ("source-whash", scm_source_whash);
85db4a2c 337
8dc9439f 338#ifndef SCM_MAGIC_SNARFER
a0599745 339#include "libguile/srcprop.x"
8dc9439f 340#endif
575888bd
MD
341}
342
343void
344scm_finish_srcprop ()
345{
346 register scm_srcprops_chunk *ptr = srcprops_chunklist, *next;
347 while (ptr)
348 {
349 next = ptr->next;
350 free ((char *) ptr);
351 scm_mallocated -= sizeof (scm_srcprops_chunk)
352 + sizeof (scm_srcprops) * (SRCPROPS_CHUNKSIZE - 1);
5c5549cb 353 ptr = next;
575888bd
MD
354 }
355}
89e00824
ML
356
357/*
358 Local Variables:
359 c-file-style: "gnu"
360 End:
361*/