properties.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /* Copyright (C) 1995,1996,2000,2001, 2003, 2006, 2008 Free Software Foundation, Inc.
  2. *
  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.
  7. *
  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.
  12. *
  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
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  16. */
  17. #ifdef HAVE_CONFIG_H
  18. # include <config.h>
  19. #endif
  20. #include "libguile/_scm.h"
  21. #include "libguile/hashtab.h"
  22. #include "libguile/alist.h"
  23. #include "libguile/root.h"
  24. #include "libguile/weaks.h"
  25. #include "libguile/validate.h"
  26. #include "libguile/eval.h"
  27. #include "libguile/properties.h"
  28. /* {Properties}
  29. */
  30. SCM_DEFINE (scm_primitive_make_property, "primitive-make-property", 1, 0, 0,
  31. (SCM not_found_proc),
  32. "Create a @dfn{property token} that can be used with\n"
  33. "@code{primitive-property-ref} and @code{primitive-property-set!}.\n"
  34. "See @code{primitive-property-ref} for the significance of\n"
  35. "@var{not_found_proc}.")
  36. #define FUNC_NAME s_scm_primitive_make_property
  37. {
  38. if (not_found_proc != SCM_BOOL_F)
  39. SCM_VALIDATE_PROC (SCM_ARG1, not_found_proc);
  40. return scm_cons (not_found_proc, SCM_EOL);
  41. }
  42. #undef FUNC_NAME
  43. SCM_DEFINE (scm_primitive_property_ref, "primitive-property-ref", 2, 0, 0,
  44. (SCM prop, SCM obj),
  45. "Return the property @var{prop} of @var{obj}.\n"
  46. "\n"
  47. "When no value has yet been associated with @var{prop} and\n"
  48. "@var{obj}, the @var{not-found-proc} from @var{prop} is used. A\n"
  49. "call @code{(@var{not-found-proc} @var{prop} @var{obj})} is made\n"
  50. "and the result set as the property value. If\n"
  51. "@var{not-found-proc} is @code{#f} then @code{#f} is the\n"
  52. "property value.")
  53. #define FUNC_NAME s_scm_primitive_property_ref
  54. {
  55. SCM h;
  56. SCM_VALIDATE_CONS (SCM_ARG1, prop);
  57. h = scm_hashq_get_handle (scm_properties_whash, obj);
  58. if (scm_is_true (h))
  59. {
  60. SCM assoc = scm_assq (prop, SCM_CDR (h));
  61. if (scm_is_true (assoc))
  62. return SCM_CDR (assoc);
  63. }
  64. if (scm_is_false (SCM_CAR (prop)))
  65. return SCM_BOOL_F;
  66. else
  67. {
  68. SCM val = scm_call_2 (SCM_CAR (prop), prop, obj);
  69. if (scm_is_false (h))
  70. h = scm_hashq_create_handle_x (scm_properties_whash, obj, SCM_EOL);
  71. SCM_SETCDR (h, scm_acons (prop, val, SCM_CDR (h)));
  72. return val;
  73. }
  74. }
  75. #undef FUNC_NAME
  76. SCM_DEFINE (scm_primitive_property_set_x, "primitive-property-set!", 3, 0, 0,
  77. (SCM prop, SCM obj, SCM val),
  78. "Set the property @var{prop} of @var{obj} to @var{val}.")
  79. #define FUNC_NAME s_scm_primitive_property_set_x
  80. {
  81. SCM h, assoc;
  82. SCM_VALIDATE_CONS (SCM_ARG1, prop);
  83. h = scm_hashq_create_handle_x (scm_properties_whash, obj, SCM_EOL);
  84. assoc = scm_assq (prop, SCM_CDR (h));
  85. if (SCM_NIMP (assoc))
  86. SCM_SETCDR (assoc, val);
  87. else
  88. {
  89. assoc = scm_acons (prop, val, SCM_CDR (h));
  90. SCM_SETCDR (h, assoc);
  91. }
  92. return SCM_UNSPECIFIED;
  93. }
  94. #undef FUNC_NAME
  95. SCM_DEFINE (scm_primitive_property_del_x, "primitive-property-del!", 2, 0, 0,
  96. (SCM prop, SCM obj),
  97. "Remove any value associated with @var{prop} and @var{obj}.")
  98. #define FUNC_NAME s_scm_primitive_property_del_x
  99. {
  100. SCM h;
  101. SCM_VALIDATE_CONS (SCM_ARG1, prop);
  102. h = scm_hashq_get_handle (scm_properties_whash, obj);
  103. if (scm_is_true (h))
  104. SCM_SETCDR (h, scm_assq_remove_x (SCM_CDR (h), prop));
  105. return SCM_UNSPECIFIED;
  106. }
  107. #undef FUNC_NAME
  108. void
  109. scm_init_properties ()
  110. {
  111. scm_properties_whash = scm_make_weak_key_hash_table (SCM_UNDEFINED);
  112. #include "libguile/properties.x"
  113. }
  114. /*
  115. Local Variables:
  116. c-file-style: "gnu"
  117. End:
  118. */