* and-let-star.scm, and-let*.scm: Renamed `and-let*.scm' to
[bpt/guile.git] / libguile / smob.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
3#ifndef SMOBH
4#define SMOBH
87621a14 5/* Copyright (C) 1995, 1996, 1998, 1999, 2000 Free Software Foundation, Inc.
0f2d19dd
JB
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
10 * any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this software; see the file COPYING. If not, write to
82892bed
JB
19 * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 * Boston, MA 02111-1307 USA
0f2d19dd
JB
21 *
22 * As a special exception, the Free Software Foundation gives permission
23 * for additional uses of the text contained in its release of GUILE.
24 *
25 * The exception is that, if you link the GUILE library with other files
26 * to produce an executable, this does not by itself cause the
27 * resulting executable to be covered by the GNU General Public License.
28 * Your use of that executable is in no way restricted on account of
29 * linking the GUILE library code into it.
30 *
31 * This exception does not however invalidate any other reasons why
32 * the executable file might be covered by the GNU General Public License.
33 *
34 * This exception applies only to the code released by the
35 * Free Software Foundation under the name GUILE. If you copy
36 * code from other Free Software Foundation releases into a copy of
37 * GUILE, as the General Public License permits, the exception does
38 * not apply to the code that you add in this way. To avoid misleading
39 * anyone as to the status of such modified files, you must delete
40 * this exception notice from them.
41 *
42 * If you write modifications of your own for GUILE, it is your choice
43 * whether to permit this exception to apply to your modifications.
82892bed 44 * If you do not wish that, delete this exception notice. */
0f2d19dd 45\f
b4309c3c 46#include "libguile/__scm.h"
b08323d1 47#include "libguile/print.h"
0f2d19dd
JB
48
49\f
9dd5943c
MD
50/* This is the internal representation of a smob type */
51
52typedef struct scm_smob_descriptor
53{
54 char *name;
55 scm_sizet size;
03416a99
KN
56
57 /* Basic functions */
7866a09b
GB
58 SCM (*mark) (SCM);
59 scm_sizet (*free) (SCM);
60 int (*print) (SCM exp, SCM port, scm_print_state *pstate);
61 SCM (*equalp) (SCM, SCM);
03416a99
KN
62
63 /* Apply functions */
cb1c46c5
KN
64 SCM (*apply) ();
65 SCM (*apply_0) (SCM);
66 SCM (*apply_1) (SCM, SCM);
67 SCM (*apply_2) (SCM, SCM, SCM);
68 SCM (*apply_3) (SCM, SCM, SCM, SCM);
68b06924 69 int gsubr_type; /* Used in procprop.c */
03416a99
KN
70
71 /* Dump functions */
72 SCM (*dump_mark) (SCM, SCM);
73 void (*dump_dealloc) (SCM, SCM);
74 void (*dump_store) (SCM, SCM);
75 SCM (*undump_alloc) (SCM);
76 void (*undump_restore) (SCM, SCM);
77 void (*undump_init) (SCM);
9dd5943c
MD
78} scm_smob_descriptor;
79
0f2d19dd
JB
80\f
81
9dd5943c 82#define SCM_NEWSMOB(z, tc, data) \
23a62151 83do { \
9dd5943c 84 SCM_NEWCELL (z); \
94113249
DH
85 SCM_SET_CELL_WORD_1 ((z), (data)); \
86 SCM_SET_CELL_TYPE ((z), (tc)); \
23a62151
MD
87} while (0)
88
89#define SCM_RETURN_NEWSMOB(tc, data) \
90 do { SCM __SCM_smob_answer; \
94113249 91 SCM_NEWSMOB (__SCM_smob_answer, (tc), (data)); \
23a62151
MD
92 return __SCM_smob_answer; \
93 } while (0)
94
87621a14
MD
95#define SCM_NEWSMOB2(z, tc, data1, data2) \
96do { \
97 SCM_NEWCELL2 (z); \
94113249
DH
98 SCM_SET_CELL_WORD_1 ((z), (data1)); \
99 SCM_SET_CELL_WORD_2 ((z), (data2)); \
100 SCM_SET_CELL_TYPE ((z), (tc)); \
87621a14
MD
101} while (0)
102
103#define SCM_RETURN_NEWSMOB2(tc, data1, data2) \
104 do { SCM __SCM_smob_answer; \
94113249 105 SCM_NEWSMOB2 (__SCM_smob_answer, (tc), (data1), (data2)); \
87621a14
MD
106 return __SCM_smob_answer; \
107 } while (0)
108
109#define SCM_NEWSMOB3(z, tc, data1, data2, data3) \
110do { \
111 SCM_NEWCELL2 (z); \
94113249
DH
112 SCM_SET_CELL_WORD_1 ((z), (data1)); \
113 SCM_SET_CELL_WORD_2 ((z), (data2)); \
114 SCM_SET_CELL_WORD_3 ((z), (data3)); \
115 SCM_SET_CELL_TYPE ((z), (tc)); \
87621a14
MD
116} while (0)
117
118#define SCM_RETURN_NEWSMOB3(tc, data1, data2, data3) \
119 do { SCM __SCM_smob_answer; \
94113249 120 SCM_NEWSMOB3 (__SCM_smob_answer, (tc), (data1), (data2), (data3)); \
87621a14
MD
121 return __SCM_smob_answer; \
122 } while (0)
123
9dd5943c 124
94113249
DH
125#define SCM_SMOB_DATA(x) (SCM_CELL_WORD_1 (x))
126#define SCM_SET_SMOB_DATA(x, data) (SCM_SET_CELL_WORD_1 ((x), (data)))
127#define SCM_TC2SMOBNUM(x) (0x0ff & ((x) >> 8))
128#define SCM_SMOBNUM(x) (SCM_TC2SMOBNUM (SCM_CELL_TYPE (x)))
2c16a78a 129/* SCM_SMOBNAME can be 0 if name is missing */
94113249 130#define SCM_SMOBNAME(smobnum) (scm_smobs[smobnum].name)
e841c3e0 131#define SCM_SMOB_PREDICATE(tag, obj) SCM_TYP16_PREDICATE (tag, obj)
0717dfd8 132#define SCM_SMOB_DESCRIPTOR(x) (scm_smobs[SCM_SMOBNUM (x)])
68b06924
KN
133#define SCM_SMOB_APPLICABLE_P(x) (SCM_SMOB_DESCRIPTOR (x).apply)
134#define SCM_SMOB_APPLY_0(x) (SCM_SMOB_DESCRIPTOR (x).apply_0 (x))
135#define SCM_SMOB_APPLY_1(x,a1) (SCM_SMOB_DESCRIPTOR (x).apply_1 (x, (a1)))
136#define SCM_SMOB_APPLY_2(x,a1,a2) (SCM_SMOB_DESCRIPTOR (x).apply_2 (x, (a1), (a2)))
137#define SCM_SMOB_APPLY_3(x,a1,a2,rst) (SCM_SMOB_DESCRIPTOR (x).apply_3 (x, (a1), (a2), (rst)))
0f2d19dd 138
4e6e2119 139extern int scm_numsmob;
9dd5943c 140extern scm_smob_descriptor *scm_smobs;
0f2d19dd
JB
141
142\f
0f2d19dd 143
7866a09b
GB
144extern SCM scm_mark0 (SCM ptr);
145extern SCM scm_markcdr (SCM ptr);
146extern scm_sizet scm_free0 (SCM ptr);
9dd5943c
MD
147extern scm_sizet scm_smob_free (SCM obj);
148extern int scm_smob_print (SCM exp, SCM port, scm_print_state *pstate);
23a62151 149
c72baaaa
MD
150/* The following set of functions is the standard way to create new
151 * SMOB types.
152 *
153 * Create a type tag using `scm_make_smob_type', accept default values
154 * for mark, free, print and/or equalp functions, or set your own
155 * values using `scm_set_smob_xxx'.
156 */
23a62151 157
8a39e3fc 158extern scm_bits_t scm_make_smob_type (char *name, scm_sizet size);
23a62151 159
03416a99
KN
160extern void scm_set_smob_mark (scm_bits_t tc,
161 SCM (*mark) (SCM));
162extern void scm_set_smob_free (scm_bits_t tc,
163 scm_sizet (*free) (SCM));
164extern void scm_set_smob_print (scm_bits_t tc,
165 int (*print) (SCM, SCM, scm_print_state*));
166extern void scm_set_smob_equalp (scm_bits_t tc,
167 SCM (*equalp) (SCM, SCM));
168extern void scm_set_smob_apply (scm_bits_t tc,
169 SCM (*apply) (),
7c58e21b
KN
170 unsigned int req,
171 unsigned int opt,
172 unsigned int rst);
03416a99
KN
173extern void scm_set_smob_dump (scm_bits_t tc,
174 SCM (*mark) (SCM, SCM),
175 void (*dealloc) (SCM, SCM),
176 void (*store) (SCM, SCM));
177extern void scm_set_smob_undump (scm_bits_t tc,
178 SCM (*alloc) (SCM),
179 void (*restore) (SCM, SCM),
180 void (*init) (SCM));
c72baaaa 181
7c58e21b 182/* Function for creating smobs */
c72baaaa 183
03416a99 184extern SCM scm_make_smob (scm_bits_t tc);
7c58e21b
KN
185extern void scm_smob_prehistory (void);
186
187\f
188
189#if (SCM_DEBUG_DEPRECATED == 0)
c72baaaa
MD
190
191extern long scm_make_smob_type_mfpe (char *name, scm_sizet size,
192 SCM (*mark) (SCM),
193 scm_sizet (*free) (SCM),
194 int (*print) (SCM, SCM, scm_print_state*),
195 SCM (*equalp) (SCM, SCM));
196
23a62151
MD
197extern void scm_set_smob_mfpe (long tc,
198 SCM (*mark) (SCM),
199 scm_sizet (*free) (SCM),
200 int (*print) (SCM, SCM, scm_print_state*),
201 SCM (*equalp) (SCM, SCM));
202
7c58e21b 203#endif /* SCM_DEBUG_DEPRECATED == 0 */
f5f2dcff 204
0f2d19dd 205#endif /* SMOBH */
89e00824
ML
206
207/*
208 Local Variables:
209 c-file-style: "gnu"
210 End:
211*/