source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Component_get_component.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.1 KB
RevLine 
[31]1/*
2 * $Id: Component_get_component.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
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::get_component"
15
[75]16  std::string Component::get_component (void)
[31]17  {
[43]18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19
[31]20    uint32_t               depth          = 0;
[75]21    std::string                 separator      = "\n";
[31]22    bool                   last_separator = false;
23
[75]24    std::list<Tcomponent_t *>::iterator  i  = _list_component->begin();
[31]25    bool                   empty = _list_component->empty();
26
[75]27    std::string                 tab   = std::string(depth,'\t');
28    std::ostringstream          text;
[31]29
30    if (not empty)
31      {
32        // First
33        if (i != _list_component->end())
34          {
[57]35            text << tab << *((*i)->_entity);
[31]36            ++i;
37          }
38       
39        while (i != _list_component->end())
40          {
41            text << separator;
[57]42            text << tab << *((*i)->_entity);
[31]43            ++i;
44          }
45       
46        if (last_separator)
47          text << separator;
48      }
49
[43]50    log_printf(FUNC,Behavioural,FUNCTION,"End");
51
[31]52    return text.str();
53  };
54
55}; // end namespace behavioural         
56}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.