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
Line 
1/*
2 * $Id: Component_get_component.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Component.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13#undef  FUNCTION
14#define FUNCTION "Component::get_component"
15
16  std::string Component::get_component (void)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19
20    uint32_t               depth          = 0;
21    std::string                 separator      = "\n";
22    bool                   last_separator = false;
23
24    std::list<Tcomponent_t *>::iterator  i  = _list_component->begin();
25    bool                   empty = _list_component->empty();
26
27    std::string                 tab   = std::string(depth,'\t');
28    std::ostringstream          text;
29
30    if (not empty)
31      {
32        // First
33        if (i != _list_component->end())
34          {
35            text << tab << *((*i)->_entity);
36            ++i;
37          }
38       
39        while (i != _list_component->end())
40          {
41            text << separator;
42            text << tab << *((*i)->_entity);
43            ++i;
44          }
45       
46        if (last_separator)
47          text << separator;
48      }
49
50    log_printf(FUNC,Behavioural,FUNCTION,"End");
51
52    return text.str();
53  };
54
55}; // end namespace behavioural         
56}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.