Include <config.h> in all C files; use `#ifdef HAVE_CONFIG_H' rather than `#if'.
[bpt/guile.git] / libguile / pairs.c
CommitLineData
dbb605f5 1/* Copyright (C) 1995,1996,2000,2001, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
0f2d19dd 2 *
73be1d9e
MV
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
0f2d19dd 7 *
73be1d9e
MV
8 * This library 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 GNU
11 * Lesser General Public License for more details.
0f2d19dd 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
92205699 15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
73be1d9e 16 */
1bbd0b84 17
1bbd0b84 18
0f2d19dd 19\f
dbb605f5
LC
20#ifdef HAVE_CONFIG_H
21# include <config.h>
22#endif
4983cbe4 23
a0599745 24#include "libguile/_scm.h"
a0599745 25#include "libguile/validate.h"
1bbd0b84 26
4983cbe4
DH
27#include "libguile/pairs.h"
28
0f2d19dd
JB
29\f
30
0f2d19dd
JB
31/* {Pairs}
32 */
33
e81d98ec
DH
34#if (SCM_DEBUG_PAIR_ACCESSES == 1)
35
ba1b2226 36#include "libguile/ports.h"
e81d98ec
DH
37#include "libguile/strings.h"
38
39void scm_error_pair_access (SCM non_pair)
40{
bab246f3 41 static unsigned int running = 0;
f32632e6 42 SCM message = scm_from_locale_string ("Non-pair accessed with SCM_C[AD]R: `~S'\n");
bab246f3
DH
43
44 if (!running)
45 {
46 running = 1;
47 scm_simple_format (scm_current_error_port (),
1afff620 48 message, scm_list_1 (non_pair));
bab246f3
DH
49 abort ();
50 }
e81d98ec
DH
51}
52
53#endif
54
3b3b36dd 55SCM_DEFINE (scm_cons, "cons", 2, 0, 0,
4983cbe4 56 (SCM x, SCM y),
1e6808ea
MG
57 "Return a newly allocated pair whose car is @var{x} and whose\n"
58 "cdr is @var{y}. The pair is guaranteed to be different (in the\n"
59 "sense of @code{eq?}) from every previously existing object.")
1bbd0b84 60#define FUNC_NAME s_scm_cons
0f2d19dd 61{
228a24ef 62 return scm_cell (SCM_UNPACK (x), SCM_UNPACK (y));
0f2d19dd 63}
1bbd0b84 64#undef FUNC_NAME
0f2d19dd 65
1cc91f1b 66
0f2d19dd 67SCM
1bbd0b84 68scm_cons2 (SCM w, SCM x, SCM y)
0f2d19dd 69{
16d4699b 70 return scm_cons (w, scm_cons (x, y));
0f2d19dd
JB
71}
72
73
a1ec6916 74SCM_DEFINE (scm_pair_p, "pair?", 1, 0, 0,
1bbd0b84 75 (SCM x),
1e6808ea
MG
76 "Return @code{#t} if @var{x} is a pair; otherwise return\n"
77 "@code{#f}.")
1bbd0b84 78#define FUNC_NAME s_scm_pair_p
0f2d19dd 79{
6fcc7d48 80 return scm_from_bool (scm_is_pair (x));
0f2d19dd 81}
1bbd0b84 82#undef FUNC_NAME
0f2d19dd 83
6fcc7d48
MV
84SCM
85scm_car (SCM pair)
86{
87 if (!scm_is_pair (pair))
88 scm_wrong_type_arg_msg (NULL, 0, pair, "pair");
89 return SCM_CAR (pair);
90}
91
92SCM
93scm_cdr (SCM pair)
94{
95 if (!scm_is_pair (pair))
96 scm_wrong_type_arg_msg (NULL, 0, pair, "pair");
97 return SCM_CDR (pair);
98}
99
100SCM
7dab4b37 101scm_i_chase_pairs (SCM tree, scm_t_uint32 pattern)
6fcc7d48
MV
102{
103 do
104 {
105 if (!scm_is_pair (tree))
106 scm_wrong_type_arg_msg (NULL, 0, tree, "pair");
107 tree = (pattern & 1) ? SCM_CAR (tree) : SCM_CDR (tree);
108 pattern >>= 2;
109 }
110 while (pattern);
111 return tree;
112}
4983cbe4 113
a1ec6916 114SCM_DEFINE (scm_set_car_x, "set-car!", 2, 0, 0,
1bbd0b84 115 (SCM pair, SCM value),
d7588e54
GB
116 "Stores @var{value} in the car field of @var{pair}. The value returned\n"
117 "by @code{set-car!} is unspecified.")
1bbd0b84 118#define FUNC_NAME s_scm_set_car_x
0f2d19dd 119{
4983cbe4 120 SCM_VALIDATE_CONS (1, pair);
d65010b8 121 SCM_SETCAR (pair, value);
9b8721aa 122 return SCM_UNSPECIFIED;
0f2d19dd 123}
1bbd0b84 124#undef FUNC_NAME
0f2d19dd 125
4983cbe4 126
a1ec6916 127SCM_DEFINE (scm_set_cdr_x, "set-cdr!", 2, 0, 0,
1bbd0b84 128 (SCM pair, SCM value),
d7588e54
GB
129 "Stores @var{value} in the cdr field of @var{pair}. The value returned\n"
130 "by @code{set-cdr!} is unspecified.")
1bbd0b84 131#define FUNC_NAME s_scm_set_cdr_x
0f2d19dd 132{
4983cbe4 133 SCM_VALIDATE_CONS (1, pair);
d65010b8 134 SCM_SETCDR (pair, value);
9b8721aa 135 return SCM_UNSPECIFIED;
0f2d19dd 136}
1bbd0b84 137#undef FUNC_NAME
0f2d19dd 138
0f2d19dd
JB
139\f
140
14b18ed6
DH
141/* Every cxr-pattern is made up of pairs of bits, starting with the two least
142 * significant bits. If in a pair of bits the least significant of the two
143 * bits is 0, this means CDR, otherwise CAR. The most significant bits of the
144 * two bits is only needed to indicate when cxr-ing is ready. This is the
145 * case, when all remaining pairs of bits equal 00. */
146
147typedef struct {
148 const char *name;
149 unsigned char pattern;
150} t_cxr;
151
152static const t_cxr cxrs[] =
0f2d19dd 153{
14b18ed6
DH
154 {"cdr", 0x02}, /* 00000010 */
155 {"car", 0x03}, /* 00000011 */
156 {"cddr", 0x0a}, /* 00001010 */
157 {"cdar", 0x0b}, /* 00001011 */
158 {"cadr", 0x0e}, /* 00001110 */
159 {"caar", 0x0f}, /* 00001111 */
160 {"cdddr", 0x2a}, /* 00101010 */
161 {"cddar", 0x2b}, /* 00101011 */
162 {"cdadr", 0x2e}, /* 00101110 */
163 {"cdaar", 0x2f}, /* 00101111 */
164 {"caddr", 0x3a}, /* 00111010 */
165 {"cadar", 0x3b}, /* 00111011 */
166 {"caadr", 0x3e}, /* 00111110 */
167 {"caaar", 0x3f}, /* 00111111 */
168 {"cddddr", 0xaa}, /* 10101010 */
169 {"cdddar", 0xab}, /* 10101011 */
170 {"cddadr", 0xae}, /* 10101110 */
171 {"cddaar", 0xaf}, /* 10101111 */
172 {"cdaddr", 0xba}, /* 10111010 */
173 {"cdadar", 0xbb}, /* 10111011 */
174 {"cdaadr", 0xbe}, /* 10111110 */
175 {"cdaaar", 0xbf}, /* 10111111 */
176 {"cadddr", 0xea}, /* 11101010 */
177 {"caddar", 0xeb}, /* 11101011 */
178 {"cadadr", 0xee}, /* 11101110 */
179 {"cadaar", 0xef}, /* 11101111 */
180 {"caaddr", 0xfa}, /* 11111010 */
181 {"caadar", 0xfb}, /* 11111011 */
182 {"caaadr", 0xfe}, /* 11111110 */
183 {"caaaar", 0xff}, /* 11111111 */
184 {0, 0}
0f2d19dd
JB
185};
186
187\f
1cc91f1b 188
0f2d19dd
JB
189void
190scm_init_pairs ()
0f2d19dd 191{
e59bb516
DH
192 unsigned int subnr = 0;
193
14b18ed6
DH
194 for (subnr = 0; cxrs[subnr].name; subnr++)
195 {
196 SCM (*pattern) () = (SCM (*) ()) (scm_t_bits) cxrs[subnr].pattern;
197 scm_c_define_subr (cxrs[subnr].name, scm_tc7_cxr, pattern);
198 }
e59bb516 199
a0599745 200#include "libguile/pairs.x"
0f2d19dd
JB
201}
202
89e00824
ML
203
204/*
205 Local Variables:
206 c-file-style: "gnu"
207 End:
208*/