source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Component_port_map.cpp @ 88

Last change on this file since 88 was 88, checked in by rosiere, 16 years ago

Almost complete design
with Test and test platform

  • Property svn:keywords set to Id
File size: 4.0 KB
RevLine 
[31]1/*
2 * $Id: Component_port_map.cpp 88 2008-12-10 18:31:39Z rosiere $
3 *
[82]4 * [ Description ]
[31]5 *
6 */
7
[42]8#include "Behavioural/include/Component.h"
[31]9
10namespace morpheo              {
11namespace behavioural          {
12
[43]13#undef  FUNCTION
14#define FUNCTION "Component::port_map"
[75]15  void Component::port_map (std::string component_src ,
16                            std::string port_src      ,
17                            std::string component_dest,
18                            std::string port_dest     )
[31]19  {
[43]20    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
21
[88]22//     log_printf(INFO,Behavioural,FUNCTION,"Map %s.%s with %s.%s",
[78]23//             component_src.c_str(),
24//             port_src.c_str(),
25//             component_dest.c_str(),
26//             port_dest.c_str());
27
[75]28    std::string name_entity = _entity->get_name();
[31]29
[42]30    // First entity
31    Entity * entity_dest = find_entity(component_dest);
[31]32
[42]33    if (entity_dest == NULL)
[82]34      throw (ERRORMORPHEO (FUNCTION,"In component \""+name_entity+"\", try map \""+component_src+"."+port_src+"\" with \""+component_dest+"."+port_dest+"\" but the component \""+component_dest+"\" is unknow.\n"));
[31]35
[42]36    Signal * signal_dest = entity_dest->find_signal (port_dest);
[31]37
[42]38    if (signal_dest == NULL)
[82]39      throw (ERRORMORPHEO (FUNCTION,"In component \""+name_entity+"\",try map \""+component_src+"."+port_src+"\" with \""+component_dest+"."+port_dest+"\" but the component \""+component_dest+"\" have not the signal \""+port_dest+"\".\n"));
[31]40
[42]41    // Second entity
42    Entity * entity_src = find_entity(component_src);
[31]43
[42]44    if (entity_src == NULL)
[82]45      throw (ERRORMORPHEO (FUNCTION,"In component \""+name_entity+"\", try map \""+component_src+"."+port_src+"\" with \""+component_dest+"."+port_dest+"\" but the component \""+component_src+"\" is unknow.\n"));
[31]46
[42]47    Signal * signal_src = entity_src->find_signal (port_src);
[31]48
[42]49    if (signal_src == NULL)
[82]50      throw (ERRORMORPHEO (FUNCTION,"In component \""+name_entity+"\", try map \""+component_src+"."+port_src+"\" with \""+component_dest+"."+port_dest+"\" but the component \""+component_src+"\" have not the signal \""+port_src+"\".\n"));
[31]51
[42]52    // If all is ok, mapping
[82]53    log_printf(TRACE,Behavioural,FUNCTION, _("Signal \"%s.%s\"\tlink with \"%s.%s\"")
[44]54               ,entity_src ->get_name().c_str()
55               ,signal_src ->get_name().c_str()
56               ,entity_dest->get_name().c_str()
57               ,signal_dest->get_name().c_str());
[43]58
[62]59    // need an internal signal ?
[78]60    bool src_is_port  = (entity_src  == _entity);
61    bool dest_is_port = (entity_dest == _entity);
[62]62
63    if (src_is_port == true)
[82]64      throw (ERRORMORPHEO (FUNCTION,"In component \""+name_entity+"\", try map \""+component_src+"."+port_src+"\" with \""+component_dest+"."+port_dest+"\" but the component \""+component_src+" is the Top_level, and we can't be use interface's port of the top level as a source.\n"));
[43]65   
[62]66    // 2 cases :
67    //  a) dest is a top level port -> direct connection
68    //  b) dest is a component port -> need internal signal
69    if (dest_is_port == false)
70      {
71        // 1) find productor of signal
72        //       
73        // Interface      Component
[78]74        //    |              |     
[62]75        //  ----> (IN)     --X-> (IN)
[78]76        //    |              |     
[62]77        //  <-X-- (OUT)    <---- (OUT)
78        //    |              |       
79       
80        Signal * signal_productor;
81        Entity * entity_productor;
82
83        bool     src_is_productor = (signal_src->get_direction() == OUT);
84
85        if (src_is_productor == true)
86          {
87            signal_productor = signal_src;
88            entity_productor = entity_src;
89          }
90        else
91          {
92            signal_productor = signal_dest;
93            entity_productor = entity_dest;
94          }
95
[78]96        // Create internal signal
[65]97        signal_dest= signal_internal (entity_productor, signal_productor);
98        signal_dest->set_size_max(signal_src->get_size());
[62]99      }
100   
101    try
102      {
103        signal_src->link(signal_dest,
104                         dest_is_port);
105      }
106    catch (morpheo::ErrorMorpheo & error)
107      {
[82]108      throw (ERRORMORPHEO (FUNCTION,"In component \""+name_entity+"\", try map \""+component_src+"."+port_src+"\" with \""+component_dest+"."+port_dest+"\" but "+error.what ()));
[62]109      }
110    //catch (...)
111    //  {
112    //  }
113
[43]114    log_printf(FUNC,Behavioural,FUNCTION,"End");
[31]115  };
116
117}; // end namespace behavioural         
118}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.