summaryrefslogtreecommitdiff
path: root/ext/dsent/model/EventInfo.cc
blob: 6bbe781e5cae74b083ef910f72b8ba1c60bd2c1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include "model/EventInfo.h"

#include "model/PortInfo.h"
#include "model/TransitionInfo.h"

namespace DSENT
{
    EventInfo::EventInfo(const String& event_name_, const Map<PortInfo*>* port_infos_)
        : m_event_name_(event_name_)
    {
        m_trans_info_map_ = new Map<TransitionInfo>;

        // Get the name of each input port and add a transition info for it
        Map<PortInfo*>::ConstIterator it_begin = port_infos_->begin();
        Map<PortInfo*>::ConstIterator it_end = port_infos_->end();
        Map<PortInfo*>::ConstIterator it;
        for(it = it_begin; it != it_end; ++it)
        {
            const String& port_name = it->first;
            m_trans_info_map_->set(port_name, TransitionInfo());
        }
    }

    EventInfo::~EventInfo()
    {
        delete m_trans_info_map_;
    }

    const String& EventInfo::getEventName() const
    {
        return m_event_name_;
    }

    void EventInfo::setTransitionInfo(const String& port_name_, const TransitionInfo& trans_info_)
    {
        ASSERT(m_trans_info_map_->keyExist(port_name_), "[Error] " + getEventName() + 
                " -> Port (" + port_name_ + ") does not exist!");

        m_trans_info_map_->set(port_name_, trans_info_);
        return;
    }

    void EventInfo::setStaticTransitionInfo(const String& port_name_)
    {
        ASSERT(m_trans_info_map_->keyExist(port_name_), "[Error] " + getEventName() + 
                " -> Port (" + port_name_ + ") does not exist!");

        m_trans_info_map_->set(port_name_, TransitionInfo(0.5, 0.0, 0.5));
        return;
    }

    void EventInfo::setRandomTransitionInfos()
    {
        Map<TransitionInfo>::Iterator it_begin = m_trans_info_map_->begin();
        Map<TransitionInfo>::Iterator it_end = m_trans_info_map_->end();
        Map<TransitionInfo>::Iterator it;
        for(it = it_begin; it != it_end; ++it)
        {
            TransitionInfo& trans_info = it->second;
            trans_info = TransitionInfo();
        }
        return;
    }

    void EventInfo::setStaticTransitionInfos()
    {
        Map<TransitionInfo>::Iterator it_begin = m_trans_info_map_->begin();
        Map<TransitionInfo>::Iterator it_end = m_trans_info_map_->end();
        Map<TransitionInfo>::Iterator it;
        for(it = it_begin; it != it_end; ++it)
        {
            TransitionInfo& trans_info = it->second;
            trans_info = TransitionInfo(0.5, 0.0, 0.5);
        }
        return;
    }

    const TransitionInfo& EventInfo::getTransitionInfo(const String& port_name_) const
    {
        ASSERT(m_trans_info_map_->keyExist(port_name_), "[Error] " + getEventName() + 
                " -> Port (" + port_name_ + ") does not exist!");

        return m_trans_info_map_->get(port_name_);
    }
} // namespace DSENT