From 4974b4763bd60eb875f93a71dbe2fe82ecfed9fc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 5 Sep 2009 16:29:23 +0200 Subject: Add semantic graph and traversal mechanism The parser now builds the semantic graph. --- cli/semantics/unit.hxx | 298 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 298 insertions(+) create mode 100644 cli/semantics/unit.hxx (limited to 'cli/semantics/unit.hxx') diff --git a/cli/semantics/unit.hxx b/cli/semantics/unit.hxx new file mode 100644 index 0000000..01bb195 --- /dev/null +++ b/cli/semantics/unit.hxx @@ -0,0 +1,298 @@ +// file : cli/semantics/unit.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#ifndef CLI_SEMANTICS_UNIT_HXX +#define CLI_SEMANTICS_UNIT_HXX + +#include +#include + +#include +#include + +namespace semantics +{ + // + // + class cli_unit; + class cxx_unit; + + // + // + class includes: public edge + { + public: + cli_unit& + includer () const + { + return *includer_; + } + + path + file () const + { + return file_; + } + + protected: + friend class graph; + + includes (path const& file) + : file_ (file) + { + } + + void + set_left_node (cli_unit& n) + { + includer_ = &n; + } + + protected: + path file_; + cli_unit* includer_; + }; + + // + // + class cli_includes: public includes + { + public: + cli_unit& + includee () const + { + return *includee_; + } + + protected: + friend class graph; + + cli_includes (path const& file) + : includes (file) + { + } + + void + set_right_node (cli_unit& n) + { + includee_ = &n; + } + + private: + cli_unit* includee_; + }; + + // + // + class cxx_includes: public includes + { + public: + cxx_unit& + includee () const + { + return *includee_; + } + + protected: + friend class graph; + + cxx_includes (path const& file) + : includes (file) + { + } + + void + set_right_node (cxx_unit& n) + { + includee_ = &n; + } + + private: + cxx_unit* includee_; + }; + + // + // + class cxx_unit: public node + { + protected: + friend class graph; + + cxx_unit (path const& file, size_t line, size_t column) + : node (file, line, column) + { + } + + void + add_edge_right (cxx_includes&) + { + } + }; + + // + // + class cli_unit: public graph, public namespace_ + { + typedef std::vector includes_list; + + public: + typedef + pointer_iterator + includes_iterator; + + includes_iterator + includes_begin () const + { + return includes_.begin (); + } + + includes_iterator + includes_end () const + { + return includes_.end (); + } + + public: + cli_unit (path const& file) + : namespace_ (file, 1, 1) + { + // Use a special edge to get this->name() return the global + // namespace name (""). + // + new_edge (*this, *this); + } + + public: + template + T& + new_node (path const& file, size_t line, size_t column) + { + return graph ().new_node (file, line, column); + } + + template + T& + new_node (path const& file, size_t line, size_t column, A0 const& a0) + { + return graph ().new_node (file, line, column, a0); + } + + template + T& + new_node (path const& file, size_t line, size_t column, + A0 const& a0, A1 const& a1) + { + return graph ().new_node (file, line, column, a0, a1); + } + + template + T& + new_node (path const& file, size_t line, size_t column, + A0 const& a0, A1 const& a1, A2 const& a2) + { + return graph ().new_node (file, line, column, a0, a1, a2); + } + + template + T& + new_node (path const& file, size_t line, size_t column, + A0 const& a0, A1 const& a1, A2 const& a2, A3 const& a3) + { + return graph ().new_node (file, line, column, a0, a1, a2, a3); + } + + public: + type& + new_type (path const& file, size_t l, size_t c, string const& name) + { + type_map::iterator i (types_.find (name)); + + return i != types_.end () + ? *i->second + : *(types_[name] = &new_node (file, l, c, name)); + } + + protected: + // Special names edge for the global namespace. + // + class global_names: public names + { + protected: + friend class graph; + + global_names () + : names ("") + { + scope_ = 0; + } + + void + set_left_node (cli_unit&) + { + } + + void + set_right_node (nameable& n) + { + named_ = &n; + } + + void + clear_left_node (cli_unit&) + { + } + + void + clear_right_node (nameable& n) + { + assert (named_ == &n); + named_ = 0; + } + }; + + protected: + friend class graph; + + void + add_edge_left (cli_includes& e) + { + includes_.push_back (&e); + } + + void + add_edge_left (cxx_includes& e) + { + includes_.push_back (&e); + } + + void + add_edge_left (global_names&) + { + } + + void + add_edge_right (cli_includes&) + { + } + + using namespace_::add_edge_right; + + private: + semantics::graph& + graph () + { + return *this; + } + + private: + typedef std::map type_map; + + private: + includes_list includes_; + type_map types_; + }; +} + +#endif // CLI_SEMANTICS_UNIT_HXX -- cgit v1.1