X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscm-hash.cc;h=83e937bc5890824afd286f0ec2ab9f7b78e7a6af;hb=0b544cfb7332615ef809b71b57ab656741311ae1;hp=83357769fa3c9d26f730e11e34d1bdf1226abb70;hpb=ffe548cfbb3c3b37c8969f49b5aba04ef998d080;p=lilypond.git diff --git a/lily/scm-hash.cc b/lily/scm-hash.cc index 83357769fa..83e937bc58 100644 --- a/lily/scm-hash.cc +++ b/lily/scm-hash.cc @@ -1,112 +1,152 @@ -/* - scm-hash.cc -- implement Scheme_hash_table - - source file of the GNU LilyPond music typesetter - - (c) 1999 Han-Wen Nienhuys - - */ -#include +/* + This file is part of LilyPond, the GNU music typesetter. + + Copyright (C) 1999--2014 Han-Wen Nienhuys + + LilyPond 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 3 of the License, or + (at your option) any later version. + + LilyPond 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 LilyPond. If not, see . +*/ #include "scm-hash.hh" -#include "hash-table-iter.hh" + +#include +#include +using namespace std; + +#include "ly-smobs.icc" + +/* + Return: number of objects. +*/ +SCM +copy_handle (void *closure, SCM handle) +{ + SCM tab = (SCM) closure; + scm_hashq_set_x (tab, scm_car (handle), scm_cdr (handle)); + return tab; +} + +static void +copy_scm_hashes (SCM dest, SCM src) +{ + scm_internal_hash_for_each_handle ((scm_t_hash_handle_fn) ©_handle, + dest, src); +} Scheme_hash_table::Scheme_hash_table () { - hash_func_ = ly_scm_hash; - self_scm_ = SCM_EOL; + hash_tab_ = SCM_EOL; smobify_self (); + hash_tab_ = scm_c_make_hash_table (119); } -void -Scheme_hash_table::operator =(Scheme_hash_table const & src) +Scheme_hash_table::Scheme_hash_table (Scheme_hash_table const &src) { - Hash_table::operator = (src); - - // we do not copy the self_scm_ field! + hash_tab_ = SCM_EOL; + smobify_self (); + copy (src); } void -Scheme_hash_table::do_smobify_self () +Scheme_hash_table::copy (Scheme_hash_table const &src) { + if (&src == this) + return; + + hash_tab_ = scm_c_make_hash_table (SCM_HASHTABLE_N_ITEMS (src.hash_tab_)); + copy_scm_hashes (hash_tab_, src.hash_tab_); } +Scheme_hash_table::~Scheme_hash_table () +{ +} SCM Scheme_hash_table::mark_smob (SCM s) { - /* - can't typecheck naively, since GC bit lives in CAR of S - */ - //assert (SMOB_IS_TYPE_B (Scheme_hash_table, s)); - - Scheme_hash_table *me = SMOB_TO_TYPE(Scheme_hash_table,s); - for (Hash_table_iter i (*me); i.ok(); i++) - { - scm_gc_mark (i.key()); - scm_gc_mark (i.val ()); - } + Scheme_hash_table *me = (Scheme_hash_table *) SCM_CELL_WORD_1 (s); + scm_gc_mark (me->hash_tab_); return SCM_EOL; } - -Scheme_hash_table::Scheme_hash_table (Scheme_hash_table const &src) - : Hash_table (src) +int +Scheme_hash_table::print_smob (SCM s, SCM p, scm_print_state *) { - hash_func_ = src.hash_func_; - self_scm_ = SCM_EOL; - smobify_self (); + assert (unsmob (s)); + scm_puts ("#hash_tab_, p); + scm_puts ("> ", p); + return 1; } -int -Scheme_hash_table::print_smob (SCM s, SCM p, scm_print_state*) +bool +Scheme_hash_table::try_retrieve (SCM k, SCM *v) { - assert (SMOB_IS_TYPE_B (Scheme_hash_table, s)); - char str[1000]; - sprintf (str, "# i (*me); i.ok(); i++) + + SCM handle = scm_hashq_get_handle (hash_tab_, k); + if (scm_is_pair (handle)) { - scm_display (i.key(), p); - scm_puts (" = ",p); - scm_display (i.val (), p); - scm_puts ("\n",p); + *v = scm_cdr (handle); + return true; } - scm_puts ("> ",p); - return 1; + else + return false; } +bool +Scheme_hash_table::contains (SCM k) const +{ + return scm_is_pair (scm_hashq_get_handle (hash_tab_, k)); +} void Scheme_hash_table::set (SCM k, SCM v) { - elem (k ) = v; - scm_unprotect_object (v); + assert (scm_is_symbol (k)); + SCM handle = scm_hashq_create_handle_x (hash_tab_, k, SCM_UNDEFINED); + scm_set_cdr_x (handle, v); } SCM -Scheme_hash_table::get (SCM k)const +Scheme_hash_table::get (SCM k) const { - return const_elem (k); + /* SCM_UNSPECIFIED will stick out like a sore thumb, hopefully. + */ + return scm_hashq_ref (hash_tab_, k, SCM_UNSPECIFIED); } +void +Scheme_hash_table::remove (SCM k) +{ + scm_hashq_remove_x (hash_tab_, k); +} -Scheme_hash_table::~Scheme_hash_table( ) +static SCM +collect_handles (void * /* closure */, + SCM key, + SCM value, + SCM result) { - unsmobify_self (); + return scm_acons (key, value, result); } SCM Scheme_hash_table::to_alist () const { - SCM l = SCM_EOL; - for (Hash_table_iter i (*this); i.ok(); i++) - l = gh_cons (gh_cons (i.key (), i.val()), l); - return l; + return scm_internal_hash_fold ((scm_t_hash_fold_fn) &collect_handles, + NULL, SCM_EOL, hash_tab_); } - -#include "ly-smobs.icc" -IMPLEMENT_UNSMOB(Scheme_hash_table,scheme_hash); -IMPLEMENT_SMOBS(Scheme_hash_table); +IMPLEMENT_SMOBS (Scheme_hash_table); +IMPLEMENT_DEFAULT_EQUAL_P (Scheme_hash_table);