// file : CCF/IDL3/SemanticAction/Impl/EventTypeFactory.cpp // author : Boris Kolpackov // cvs-id : $Id$ #include "CCF/IDL3/SemanticAction/Impl/EventTypeFactory.hpp" #include using std::cerr; using std::endl; namespace CCF { namespace IDL3 { namespace SemanticAction { namespace Impl { using namespace SemanticGraph; EventTypeFactory:: EventTypeFactory (Context& c) : Base (c) { } void EventTypeFactory:: name (SimpleIdentifierPtr const& id) { if (ctx.trace ()) cerr << " " << id << endl; f_ = 0; SemanticGraph::EventType& h ( dynamic_cast(ctx.scope ())); SimpleName name (id->lexeme ()); f_ = &ctx.tu ().new_node ( ctx.file (), id->line ()); ctx.tu ().new_edge (*f_, h); ctx.tu ().new_edge (ctx.scope (), *f_, name); } void EventTypeFactory:: parameter (IdentifierPtr const& type_id, SimpleIdentifierPtr const& name_id) { if (ctx.trace ()) cerr << "parameter in " << " " << type_id << " " << name_id << endl; if (f_ == 0) return; Name name (type_id->lexeme ()); ScopedName from (ctx.scope ().scoped_name ()); try { try { Type& t (resolve (from, name, Flags::complete)); Parameter& p ( ctx.tu ().new_node ( ctx.file (), name_id->line (), name_id->lexeme ())); ctx.tu ().new_edge (p, t); ctx.tu ().new_edge (*f_, p); } catch (Resolve const&) { cerr << ctx.file () << ":" << type_id->line () << ": error: " << "invalid parameter declaration" << endl; throw; } } catch (NotFound const&) { cerr << ctx.file () << ":" << type_id->line () << ": error: " << "no type with name \'" << name << "\' visible from scope \'" << from << "\'" << endl; } catch (WrongType const&) { cerr << ctx.file () << ":" << type_id->line () << ": error: " << "declaration with name \'" << name << "\' visible from scope \'" << from << "\' is not a type declaration" << endl; cerr << ctx.file () << ":" << type_id->line () << ": error: " << "using non-type as an factory parameter type is " << "illegal" << endl; } catch (NotComplete const& e) { cerr << ctx.file () << ":" << type_id->line () << ": error: " << "type \'" << e.name () << "\' is not complete" << endl; } } void EventTypeFactory:: raises (IdentifierPtr const& id) { if (ctx.trace ()) cerr << "raises " << id << endl; if (f_ == 0) return; Name name (id->lexeme ()); ScopedName from (ctx.scope ().scoped_name ()); try { try { SemanticGraph::Exception& e ( resolve (from, name)); ctx.tu ().new_edge (*f_, e); } catch (Resolve const&) { cerr << ctx.file () << ":" << id->line () << ": error: " << "invalid raises declaration" << endl; throw; } } catch (NotFound const&) { cerr << ctx.file () << ":" << id->line () << ": error: " << "no exception with name \'" << name << "\' visible from scope \'" << from << "\'" << endl; } catch (WrongType const&) { cerr << ctx.file () << ":" << id->line () << ": error: " << "declaration with name \'" << name << "\' visible from scope \'" << from << "\' is not an exception declaration" << endl; cerr << ctx.file () << ":" << id->line () << ": error: " << "using non-exception type in raises declaration is " << "illegal" << endl; } } } } } }