// file : odb/context.hxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC // license : GNU GPL v3; see accompanying LICENSE file #ifndef ODB_CONTEXT_HXX #define ODB_CONTEXT_HXX #include #include #include #include #include // std::size_t #include #include #include #include #include #include using std::endl; using std::cerr; class generation_failed {}; // Keep this enum synchronized with the one in libodb/odb/container-traits.hxx. // enum container_kind { ck_ordered, ck_set, ck_multiset, ck_map, ck_multimap }; class context { public: typedef std::size_t size_t; typedef std::string string; typedef ::options options_type; // Predicates. // public: // Composite value type is a class type that was explicitly marked // as value type and there was no database type mapping provided for // it by the user (specifying the database type makes the value type // simple). // static bool comp_value (semantics::class_& c) { return c.count ("value") && !c.count ("type"); } // Return the class object if this type is a composite value type // and NULL otherwise. // static semantics::class_* comp_value (semantics::type& t) { semantics::class_* c (dynamic_cast (&t)); return c != 0 && t.count ("value") && !t.count ("type") ? c : 0; } static bool container (semantics::type& t) { return t.count ("container-kind"); } // Database names and types. // public: string table_name (semantics::class_&) const; // Table name for the container member. // struct table_prefix { string prefix; size_t level; }; string table_name (semantics::data_member&, table_prefix const&) const; string column_name (semantics::data_member&) const; string column_name (semantics::data_member&, string const& key_prefix, string const& default_name) const; virtual string column_type (semantics::data_member&, string const& key_prefix = string ()) const; // Return empty string if there is no mapping. The second argument // is the custom type or empty string if it is not specified. // string column_type_impl (semantics::type& t, string const& type, semantics::context* ctx) const { return data_->column_type_impl (t, type, ctx); } // Cleaned-up member name that can be used for database names. // string public_name_db (semantics::data_member&) const; // C++ names. // public: // Cleaned-up and escaped member name that can be used in public C++ // interfaces. // string public_name (semantics::data_member&) const; // Escape C++ keywords, reserved names, and illegal characters. // string escape (string const&) const; // Counts and other information. // public: static size_t column_count (semantics::class_&); semantics::data_member& id_member (semantics::class_&); // Container information. // public: typedef ::container_kind container_kind_type; static container_kind_type container_kind (semantics::type& c) { return c.get ("container-kind"); } static semantics::type& container_vt (semantics::type& c) { return *c.get ("tree-value-type"); } static string container_fq_vt (semantics::data_member& m) { return "container_traits< " + m.type ().fq_name (m.belongs ().hint ()) + " >::value_type"; } static semantics::type& container_it (semantics::type& c) { return *c.get ("tree-index-type"); } static string container_fq_it (semantics::data_member& m) { return "container_traits< " + m.type ().fq_name (m.belongs ().hint ()) + " >::index_type"; } static semantics::type& container_kt (semantics::type& c) { return *c.get ("tree-key-type"); } static string container_fq_kt (semantics::data_member& m) { return "container_traits< " + m.type ().fq_name (m.belongs ().hint ()) + " >::key_type"; } protected: struct data; typedef cutl::shared_ptr data_ptr; data_ptr data_; public: std::ostream& os; semantics::unit& unit; options_type const& options; typedef std::set keyword_set_type; keyword_set_type const& keyword_set; struct db_type_type { db_type_type () {} db_type_type (string const& t, string const& it) : type (t), id_type (it) { } string type; string id_type; }; typedef std::map type_map_type; protected: struct data { virtual ~data () {} // Per-database customizable functionality. // public: virtual string column_type_impl (semantics::type&, string const& type, semantics::context*) const; keyword_set_type keyword_set_; type_map_type type_map_; }; public: context (std::ostream&, semantics::unit&, options_type const&, data_ptr = data_ptr ()); context (context&); virtual ~context (); private: context& operator= (context const&); }; // Checks if scope Y names any of X. // template bool has (Y& y) { for (semantics::scope::names_iterator i (y.names_begin ()), e (y.names_end ()); i != e; ++i) if (i->named (). template is_a ()) return true; return false; } // Standard namespace traverser. // struct namespace_: traversal::namespace_, context { namespace_ (context& c) : context (c) {} virtual void traverse (type&); }; #endif // ODB_CONTEXT_HXX