]> git.donarmstrong.com Git - lilypond.git/blob - lily/scm-hash.cc
Web-ja: update introduction
[lilypond.git] / lily / scm-hash.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1999--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "scm-hash.hh"
21
22 #include <cassert>
23
24 SCM
25 Scheme_hash_table::make_smob ()
26 {
27   return Smob1::make_smob (scm_c_make_hash_table (119));
28 }
29
30 int
31 Scheme_hash_table::print_smob (SCM p, scm_print_state *) const
32 {
33   scm_puts ("#<Scheme_hash_table  ", p);
34   scm_display (hash_tab (), p);
35   scm_puts ("> ", p);
36   return 1;
37 }
38
39 bool
40 Scheme_hash_table::try_retrieve (SCM k, SCM *v)
41 {
42
43   SCM handle = scm_hashq_get_handle (hash_tab (), k);
44   if (scm_is_pair (handle))
45     {
46       *v = scm_cdr (handle);
47       return true;
48     }
49   else
50     return false;
51 }
52
53 bool
54 Scheme_hash_table::contains (SCM k) const
55 {
56   return scm_is_pair (scm_hashq_get_handle (hash_tab (), k));
57 }
58
59 void
60 Scheme_hash_table::set (SCM k, SCM v)
61 {
62   assert (scm_is_symbol (k));
63   SCM handle = scm_hashq_create_handle_x (hash_tab (), k, SCM_UNDEFINED);
64   scm_set_cdr_x (handle, v);
65 }
66
67 SCM
68 Scheme_hash_table::get (SCM k) const
69 {
70   /* SCM_UNDEFINED is the default for unset elements, but
71      scm_hashq_ref cannot return it, so we do it a bit more awkwardly.
72   */
73   SCM handle = scm_hashq_get_handle (hash_tab (), k);
74   if (scm_is_pair (handle))
75     return scm_cdr (handle);
76   return SCM_UNDEFINED;
77 }
78
79 void
80 Scheme_hash_table::remove (SCM k)
81 {
82   scm_hashq_remove_x (hash_tab (), k);
83 }
84
85 static SCM
86 collect_handles (void * /* closure */,
87                  SCM key,
88                  SCM value,
89                  SCM result)
90 {
91   return scm_acons (key, value, result);
92 }
93
94 SCM
95 Scheme_hash_table::to_alist () const
96 {
97   return scm_internal_hash_fold ((scm_t_hash_fold_fn) &collect_handles,
98                                  NULL, SCM_EOL, hash_tab ());
99 }