summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp152
1 files changed, 0 insertions, 152 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp b/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp
deleted file mode 100644
index f87138f9b70..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp
+++ /dev/null
@@ -1,152 +0,0 @@
-// file : CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/SemanticAction/Impl/ValueTypeFactory.hpp"
-
-#include <iostream>
-
-using std::cerr;
-using std::endl;
-
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticAction
- {
- namespace Impl
- {
- using namespace SemanticGraph;
-
- ValueTypeFactory::
- ValueTypeFactory (Context& c)
- : Base (c)
- {
- }
-
- void ValueTypeFactory::
- name (SimpleIdentifierPtr const& id)
- {
- if (ctx.trace ()) cerr << " " << id << endl;
-
- f_ = 0;
-
- SemanticGraph::ValueType& h (
- dynamic_cast<SemanticGraph::ValueType&>(ctx.scope ()));
-
- SimpleName name (id->lexeme ());
-
- f_ = &ctx.tu ().new_node<SemanticGraph::ValueTypeFactory> (
- ctx.file (), id->line ());
-
- ctx.tu ().new_edge<Returns> (*f_, h);
- ctx.tu ().new_edge<Defines> (ctx.scope (), *f_, name);
- }
-
-
- void ValueTypeFactory::
- 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<Type> (from, name, Flags::complete));
-
- Parameter& p (
- ctx.tu ().new_node<InParameter> (
- ctx.file (), name_id->line (), name_id->lexeme ()));
-
- ctx.tu ().new_edge<Belongs> (p, t);
- ctx.tu ().new_edge<Receives> (*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 ValueTypeFactory::
- 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<SemanticGraph::Exception> (from, name));
-
- ctx.tu ().new_edge<Raises> (*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;
- }
- }
- }
- }
- }
-}