You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

25 years ago
25 years ago
25 years ago
  1. // Symbols.
  2. #ifndef _CL_SYMBOL_H
  3. #define _CL_SYMBOL_H
  4. #include "cln/string.h"
  5. namespace cln {
  6. // Symbols are just strings, uniquified through a global hash table.
  7. struct cl_symbol : public cl_rcpointer {
  8. public:
  9. // Conversion to string.
  10. operator cl_string () const;
  11. // Constructors.
  12. cl_symbol (const cl_string&); // create or lookup a symbol from its name
  13. cl_symbol (const cl_symbol&);
  14. // Assignment operators.
  15. cl_symbol& operator= (const cl_symbol&);
  16. // Private pointer manipulations.
  17. cl_symbol (cl_private_thing p) : cl_rcpointer (p) {}
  18. public: /* ugh */
  19. // Create a new symbol given its name.
  20. cl_symbol (struct hashuniq * null, const cl_string& s);
  21. };
  22. CL_DEFINE_COPY_CONSTRUCTOR2(cl_symbol,cl_rcpointer)
  23. CL_DEFINE_ASSIGNMENT_OPERATOR(cl_symbol,cl_symbol)
  24. // A symbol points to a string, so to convert cl_symbol -> cl_string, we just
  25. // take the pointer and put it into a cl_string.
  26. inline cl_symbol::operator cl_string () const
  27. {
  28. return cl_string(_as_cl_private_thing());
  29. }
  30. // Comparison.
  31. inline bool equal (const cl_symbol& s1, const cl_symbol& s2)
  32. {
  33. return (s1.pointer == s2.pointer);
  34. }
  35. // Hash code.
  36. extern unsigned long hashcode (const cl_symbol& s);
  37. } // namespace cln
  38. #endif /* _CL_SYMBOL_H */