summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/event_engine/event_dispatcher_impl.cc
blob: 0d7dc9cfe0e991f0bb9a1eea228cb81d87271461 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*
 Copyright (c) 2016, Ford Motor Company
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:

 Redistributions of source code must retain the above copyright notice, this
 list of conditions and the following disclaimer.

 Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following
 disclaimer in the documentation and/or other materials provided with the
 distribution.

 Neither the name of the Ford Motor Company nor the names of its contributors
 may be used to endorse or promote products derived from this software
 without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 */

#include "application_manager/event_engine/event_dispatcher_impl.h"
#include <algorithm>
#include "application_manager/event_engine/event_observer.h"
#include "interfaces/HMI_API.h"

namespace application_manager {
namespace event_engine {
using namespace sync_primitives;

EventDispatcherImpl::EventDispatcherImpl() : observers_event_() {}

EventDispatcherImpl::~EventDispatcherImpl() {}

void EventDispatcherImpl::raise_event(const Event& event) {
  ObserverVector observers;
  AutoLock observer_lock(observer_lock_);
  {
    AutoLock state_lock(state_lock_);

    // check if event is notification
    if (hmi_apis::messageType::notification == event.smart_object_type()) {
      const uint32_t notification_correlation_id = 0;
      observers = observers_event_[event.id()][notification_correlation_id];
    }

    if (hmi_apis::messageType::response == event.smart_object_type() ||
        hmi_apis::messageType::error_response == event.smart_object_type()) {
      observers =
          observers_event_[event.id()][event.smart_object_correlation_id()];
    }
  }

  while (!observers.empty()) {
    EventObserver* temp = *observers.begin();
    observers.erase(observers.begin());
    AutoUnlock unlock_observer(observer_lock);

    if (temp->IncrementReferenceCount()) {
      temp->HandleOnEvent(event);
      temp->DecrementReferenceCount();
    }
  }
}

void EventDispatcherImpl::add_observer(const Event::EventID& event_id,
                                       int32_t hmi_correlation_id,
                                       EventObserver& observer) {
  AutoLock auto_lock(state_lock_);
  observers_event_[event_id][hmi_correlation_id].push_back(&observer);
}

struct IdCheckFunctor {
  explicit IdCheckFunctor(const unsigned long id) : target_id(id) {}

  bool operator()(const EventObserver* obs) const {
    return (obs->id() == target_id);
  }

 private:
  const unsigned long target_id;
};

void EventDispatcherImpl::remove_observer(const Event::EventID& event_id,
                                          const int32_t hmi_correlation_id) {
  AutoLock auto_lock(state_lock_);
  auto& observers = observers_event_[event_id][hmi_correlation_id];
  for (auto observer : observers) {
    remove_observer_from_vector(*observer);
  }
}

void EventDispatcherImpl::remove_observer(const Event::EventID& event_id,
                                          EventObserver& observer) {
  remove_observer_from_vector(observer);
  AutoLock auto_lock(state_lock_);
  ObserversMap::iterator it = observers_event_[event_id].begin();

  for (; observers_event_[event_id].end() != it; ++it) {
    ObserverVector& obs_vec = it->second;
    const ObserverVector::iterator obs_vec_it = obs_vec.end();
    obs_vec.erase(
        std::remove_if(
            obs_vec.begin(), obs_vec_it, IdCheckFunctor(observer.id())),
        obs_vec_it);
  }
}

void EventDispatcherImpl::remove_observer(EventObserver& observer) {
  remove_observer_from_vector(observer);
  EventObserverMap::iterator event_map = observers_event_.begin();

  for (; observers_event_.end() != event_map; ++event_map) {
    remove_observer(event_map->first, observer);
  }
}

void EventDispatcherImpl::remove_observer_from_vector(EventObserver& observer) {
  AutoLock auto_lock(observer_lock_);

  observers_.erase(
      std::remove_if(
          observers_.begin(), observers_.end(), IdCheckFunctor(observer.id())),
      observers_.end());
}

// Mobile Events

void EventDispatcherImpl::raise_mobile_event(const MobileEvent& event) {
  AutoLock observer_lock(mobile_observer_lock_);
  {
    AutoLock state_lock(mobile_state_lock_);

    // check if event is notification
    if (mobile_apis::messageType::notification == event.smart_object_type()) {
      const uint32_t notification_correlation_id = 0;
      mobile_observers_ =
          mobile_observers_event_[event.id()][notification_correlation_id];
    }

    if (mobile_apis::messageType::response == event.smart_object_type()) {
      mobile_observers_ =
          mobile_observers_event_[event.id()]
                                 [event.smart_object_correlation_id()];
    }
  }

  // Call observers
  while (!mobile_observers_.empty()) {
    EventObserver* temp = *mobile_observers_.begin();
    mobile_observers_.erase(mobile_observers_.begin());
    AutoUnlock unlock_observer(observer_lock);

    if (temp->IncrementReferenceCount()) {
      temp->HandleOnEvent(event);
      temp->DecrementReferenceCount();
    }
  }
}

void EventDispatcherImpl::add_mobile_observer(
    const MobileEvent::MobileEventID& event_id,
    int32_t mobile_correlation_id,
    EventObserver& observer) {
  AutoLock auto_lock(mobile_state_lock_);
  mobile_observers_event_[event_id][mobile_correlation_id].push_back(&observer);
}

void EventDispatcherImpl::remove_mobile_observer(
    const MobileEvent::MobileEventID& event_id, EventObserver& observer) {
  remove_mobile_observer_from_vector(observer);
  AutoLock auto_lock(mobile_state_lock_);
  ObserversMap::iterator it = mobile_observers_event_[event_id].begin();

  for (; mobile_observers_event_[event_id].end() != it; ++it) {
    ObserverVector& obs_vec = it->second;
    const ObserverVector::iterator obs_vec_it = obs_vec.end();
    obs_vec.erase(
        std::remove_if(
            obs_vec.begin(), obs_vec_it, IdCheckFunctor(observer.id())),
        obs_vec_it);
  }
}

void EventDispatcherImpl::remove_mobile_observer(EventObserver& observer) {
  remove_mobile_observer_from_vector(observer);
  MobileEventObserverMap::iterator event_map = mobile_observers_event_.begin();

  for (; mobile_observers_event_.end() != event_map; ++event_map) {
    remove_mobile_observer(event_map->first, observer);
  }
}

void EventDispatcherImpl::remove_mobile_observer_from_vector(
    EventObserver& observer) {
  AutoLock auto_lock(mobile_observer_lock_);

  mobile_observers_.erase(
      std::remove_if(
          observers_.begin(), observers_.end(), IdCheckFunctor(observer.id())),
      observers_.end());
}

}  // namespace event_engine
}  // namespace application_manager