aboutsummaryrefslogtreecommitdiff
path: root/source/Core/Listener.cpp
blob: 15a698784681993ca6813bd9d86ac9993ba007ac (plain) (blame)
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
//===-- Listener.cpp --------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "lldb/Core/Listener.h"

// C Includes
// C++ Includes
#include <algorithm>

// Other libraries and framework includes
// Project includes
#include "lldb/Core/Broadcaster.h"
#include "lldb/Core/Log.h"
#include "lldb/Core/StreamString.h"
#include "lldb/Core/Event.h"
#include "lldb/Host/TimeValue.h"

using namespace lldb;
using namespace lldb_private;

namespace
{
    class BroadcasterManagerWPMatcher
    {
    public:
        BroadcasterManagerWPMatcher (BroadcasterManagerSP manager_sp) : m_manager_sp(manager_sp) {}
        bool operator() (const BroadcasterManagerWP input_wp) const
        {
            BroadcasterManagerSP input_sp = input_wp.lock();
            return (input_sp && input_sp == m_manager_sp);
        }

        BroadcasterManagerSP m_manager_sp;
    };
} // anonymous namespace

Listener::Listener(const char *name)
    : m_name(name), m_broadcasters(), m_broadcasters_mutex(), m_events(), m_events_mutex(Mutex::eMutexTypeNormal)
{
    Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
    if (log != nullptr)
        log->Printf ("%p Listener::Listener('%s')",
                     static_cast<void*>(this), m_name.c_str());
}

Listener::~Listener()
{
    Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_OBJECT));

    Clear();

    if (log)
        log->Printf("%p Listener::%s('%s')", static_cast<void *>(this), __FUNCTION__, m_name.c_str());
}

void
Listener::Clear()
{
    Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_OBJECT));
    std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
    broadcaster_collection::iterator pos, end = m_broadcasters.end();
    for (pos = m_broadcasters.begin(); pos != end; ++pos)
    {
        Broadcaster::BroadcasterImplSP broadcaster_sp(pos->first.lock());
        if (broadcaster_sp)
            broadcaster_sp->RemoveListener (this, pos->second.event_mask);
    }
    m_broadcasters.clear();

    Mutex::Locker event_locker(m_events_mutex);
    m_events.clear();
    size_t num_managers = m_broadcaster_managers.size();

    for (size_t i = 0; i < num_managers; i++)
    {
        BroadcasterManagerSP manager_sp(m_broadcaster_managers[i].lock());
        if (manager_sp)
            manager_sp->RemoveListener(this);
    }

    if (log)
        log->Printf("%p Listener::%s('%s')", static_cast<void *>(this), __FUNCTION__, m_name.c_str());
}

uint32_t
Listener::StartListeningForEvents (Broadcaster* broadcaster, uint32_t event_mask)
{
    if (broadcaster)
    {
        // Scope for "locker"
        // Tell the broadcaster to add this object as a listener
        {
            std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
            Broadcaster::BroadcasterImplWP impl_wp(broadcaster->GetBroadcasterImpl());
            m_broadcasters.insert(std::make_pair(impl_wp, BroadcasterInfo(event_mask)));
        }

        uint32_t acquired_mask = broadcaster->AddListener (this->shared_from_this(), event_mask);

        Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS));
        if (log != nullptr)
            log->Printf ("%p Listener::StartListeningForEvents (broadcaster = %p, mask = 0x%8.8x) acquired_mask = 0x%8.8x for %s",
                         static_cast<void*>(this),
                         static_cast<void*>(broadcaster), event_mask,
                         acquired_mask, m_name.c_str());

        return acquired_mask;
    }
    return 0;
}

uint32_t
Listener::StartListeningForEvents (Broadcaster* broadcaster, uint32_t event_mask, HandleBroadcastCallback callback, void *callback_user_data)
{
    if (broadcaster)
    {
        // Scope for "locker"
        // Tell the broadcaster to add this object as a listener
        {
            std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
            Broadcaster::BroadcasterImplWP impl_wp(broadcaster->GetBroadcasterImpl());
            m_broadcasters.insert(std::make_pair(impl_wp,
                                                 BroadcasterInfo(event_mask, callback, callback_user_data)));
        }

        uint32_t acquired_mask = broadcaster->AddListener (this->shared_from_this(), event_mask);

        Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS));
        if (log != nullptr)
        {
            void **pointer = reinterpret_cast<void**>(&callback);
            log->Printf ("%p Listener::StartListeningForEvents (broadcaster = %p, mask = 0x%8.8x, callback = %p, user_data = %p) acquired_mask = 0x%8.8x for %s",
                         static_cast<void*>(this),
                         static_cast<void*>(broadcaster), event_mask, *pointer,
                         static_cast<void*>(callback_user_data), acquired_mask,
                         m_name.c_str());
        }

        return acquired_mask;
    }
    return 0;
}

bool
Listener::StopListeningForEvents (Broadcaster* broadcaster, uint32_t event_mask)
{
    if (broadcaster)
    {
        // Scope for "locker"
        {
            std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
            m_broadcasters.erase (broadcaster->GetBroadcasterImpl());
        }
        // Remove the broadcaster from our set of broadcasters
        return broadcaster->RemoveListener (this->shared_from_this(), event_mask);
    }

    return false;
}

// Called when a Broadcaster is in its destructor. We need to remove all
// knowledge of this broadcaster and any events that it may have queued up
void
Listener::BroadcasterWillDestruct (Broadcaster *broadcaster)
{
    // Scope for "broadcasters_locker"
    {
        std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
        m_broadcasters.erase (broadcaster->GetBroadcasterImpl());
    }

    // Scope for "event_locker"
    {
        Mutex::Locker event_locker(m_events_mutex);
        // Remove all events for this broadcaster object.
        event_collection::iterator pos = m_events.begin();
        while (pos != m_events.end())
        {
            if ((*pos)->GetBroadcaster() == broadcaster)
                pos = m_events.erase(pos);
            else
                ++pos;
        }
    }
}

void
Listener::BroadcasterManagerWillDestruct (BroadcasterManagerSP manager_sp)
{
    // Just need to remove this broadcast manager from the list of managers:
    broadcaster_manager_collection::iterator iter, end_iter = m_broadcaster_managers.end();
    BroadcasterManagerWP manager_wp;

    BroadcasterManagerWPMatcher matcher(manager_sp);
    iter = std::find_if<broadcaster_manager_collection::iterator, BroadcasterManagerWPMatcher>(m_broadcaster_managers.begin(), end_iter, matcher);
    if (iter != end_iter)
        m_broadcaster_managers.erase (iter);
}

void
Listener::AddEvent (EventSP &event_sp)
{
    Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS));
    if (log != nullptr)
        log->Printf ("%p Listener('%s')::AddEvent (event_sp = {%p})",
                     static_cast<void*>(this), m_name.c_str(),
                     static_cast<void*>(event_sp.get()));

    Mutex::Locker locker(m_events_mutex);
    m_events.push_back (event_sp);
    m_events_condition.Broadcast();
}

class EventBroadcasterMatches
{
public:
    EventBroadcasterMatches (Broadcaster *broadcaster) :
        m_broadcaster (broadcaster)
    {
    }

    bool operator() (const EventSP &event_sp) const
    {
        return event_sp->BroadcasterIs(m_broadcaster);
    }

private:
    Broadcaster *m_broadcaster;
};

class EventMatcher
{
public:
    EventMatcher (Broadcaster *broadcaster, const ConstString *broadcaster_names, uint32_t num_broadcaster_names, uint32_t event_type_mask) :
        m_broadcaster (broadcaster),
        m_broadcaster_names (broadcaster_names),
        m_num_broadcaster_names (num_broadcaster_names),
        m_event_type_mask (event_type_mask)
    {
    }

    bool operator() (const EventSP &event_sp) const
    {
        if (m_broadcaster && !event_sp->BroadcasterIs(m_broadcaster))
            return false;

        if (m_broadcaster_names)
        {
            bool found_source = false;
            const ConstString &event_broadcaster_name = event_sp->GetBroadcaster()->GetBroadcasterName();
            for (uint32_t i = 0; i < m_num_broadcaster_names; ++i)
            {
                if (m_broadcaster_names[i] == event_broadcaster_name)
                {
                    found_source = true;
                    break;
                }
            }
            if (!found_source)
                return false;
        }

        if (m_event_type_mask == 0 || m_event_type_mask & event_sp->GetType())
            return true;
        return false;
    }

private:
    Broadcaster *m_broadcaster;
    const ConstString *m_broadcaster_names;
    const uint32_t m_num_broadcaster_names;
    const uint32_t m_event_type_mask;
};

bool
Listener::FindNextEventInternal
(
    Mutex::Locker& lock,
    Broadcaster *broadcaster,   // nullptr for any broadcaster
    const ConstString *broadcaster_names, // nullptr for any event
    uint32_t num_broadcaster_names,
    uint32_t event_type_mask,
    EventSP &event_sp,
    bool remove)
{
    // NOTE: callers of this function must lock m_events_mutex using a Mutex::Locker
    // and pass the locker as the first argument. m_events_mutex is no longer recursive.
    Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS));

    if (m_events.empty())
        return false;

    Listener::event_collection::iterator pos = m_events.end();

    if (broadcaster == nullptr && broadcaster_names == nullptr && event_type_mask == 0)
    {
        pos = m_events.begin();
    }
    else
    {
        pos = std::find_if (m_events.begin(), m_events.end(), EventMatcher (broadcaster, broadcaster_names, num_broadcaster_names, event_type_mask));
    }

    if (pos != m_events.end())
    {
        event_sp = *pos;

        if (log != nullptr)
            log->Printf ("%p '%s' Listener::FindNextEventInternal(broadcaster=%p, broadcaster_names=%p[%u], event_type_mask=0x%8.8x, remove=%i) event %p",
                         static_cast<void*>(this), GetName(),
                         static_cast<void*>(broadcaster),
                         static_cast<const void*>(broadcaster_names),
                         num_broadcaster_names, event_type_mask, remove,
                         static_cast<void*>(event_sp.get()));

        if (remove)
        {
            m_events.erase(pos);
            // Unlock the event queue here.  We've removed this event and are about to return
            // it so it should be okay to get the next event off the queue here - and it might
            // be useful to do that in the "DoOnRemoval".
            lock.Unlock();
            event_sp->DoOnRemoval();
        }
        return true;
    }

    event_sp.reset();
    return false;
}

Event *
Listener::PeekAtNextEvent ()
{
    Mutex::Locker lock(m_events_mutex);
    EventSP event_sp;
    if (FindNextEventInternal(lock, nullptr, nullptr, 0, 0, event_sp, false))
        return event_sp.get();
    return nullptr;
}

Event *
Listener::PeekAtNextEventForBroadcaster (Broadcaster *broadcaster)
{
    Mutex::Locker lock(m_events_mutex);
    EventSP event_sp;
    if (FindNextEventInternal(lock, broadcaster, nullptr, 0, 0, event_sp, false))
        return event_sp.get();
    return nullptr;
}

Event *
Listener::PeekAtNextEventForBroadcasterWithType (Broadcaster *broadcaster, uint32_t event_type_mask)
{
    Mutex::Locker lock(m_events_mutex);
    EventSP event_sp;
    if (FindNextEventInternal(lock, broadcaster, nullptr, 0, event_type_mask, event_sp, false))
        return event_sp.get();
    return nullptr;
}

bool
Listener::GetNextEventInternal(Broadcaster *broadcaster,             // nullptr for any broadcaster
                               const ConstString *broadcaster_names, // nullptr for any event
                               uint32_t num_broadcaster_names,
                               uint32_t event_type_mask,
                               EventSP &event_sp)
{
    Mutex::Locker lock(m_events_mutex);
    return FindNextEventInternal (lock, broadcaster, broadcaster_names, num_broadcaster_names, event_type_mask, event_sp, true);
}

bool
Listener::GetNextEvent (EventSP &event_sp)
{
    return GetNextEventInternal(nullptr, nullptr, 0, 0, event_sp);
}

bool
Listener::GetNextEventForBroadcaster (Broadcaster *broadcaster, EventSP &event_sp)
{
    return GetNextEventInternal(broadcaster, nullptr, 0, 0, event_sp);
}

bool
Listener::GetNextEventForBroadcasterWithType (Broadcaster *broadcaster, uint32_t event_type_mask, EventSP &event_sp)
{
    return GetNextEventInternal(broadcaster, nullptr, 0, event_type_mask, event_sp);
}

bool
Listener::WaitForEventsInternal(const TimeValue *timeout,
                                Broadcaster *broadcaster,             // nullptr for any broadcaster
                                const ConstString *broadcaster_names, // nullptr for any event
                                uint32_t num_broadcaster_names,
                                uint32_t event_type_mask,
                                EventSP &event_sp)
{
    Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS));
    if (log != nullptr)
        log->Printf ("%p Listener::WaitForEventsInternal (timeout = { %p }) for %s",
                     static_cast<void*>(this), static_cast<const void*>(timeout),
                     m_name.c_str());

    Mutex::Locker lock(m_events_mutex);

    while (true)
    {
        if (FindNextEventInternal (lock, broadcaster, broadcaster_names, num_broadcaster_names, event_type_mask, event_sp, true))
        {
            return true;
        }
        else
        {
            bool timed_out = false;
            if (m_events_condition.Wait(m_events_mutex, timeout, &timed_out) != 0)
            {
                if (timed_out)
                {
                    log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS);
                    if (log != nullptr)
                        log->Printf ("%p Listener::WaitForEventsInternal() timed out for %s",
                                     static_cast<void*>(this), m_name.c_str());
                }
                else
                {
                    log = lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_EVENTS);
                    if (log != nullptr)
                        log->Printf ("%p Listener::WaitForEventsInternal() unknown error for %s",
                                     static_cast<void*>(this), m_name.c_str());
                }
                return false;
            }
        }
    }

    return false;
}

bool
Listener::WaitForEventForBroadcasterWithType(const TimeValue *timeout,
                                             Broadcaster *broadcaster,
                                             uint32_t event_type_mask,
                                             EventSP &event_sp)
{
    return WaitForEventsInternal(timeout, broadcaster, nullptr, 0, event_type_mask, event_sp);
}

bool
Listener::WaitForEventForBroadcaster(const TimeValue *timeout,
                                     Broadcaster *broadcaster,
                                     EventSP &event_sp)
{
    return WaitForEventsInternal(timeout, broadcaster, nullptr, 0, 0, event_sp);
}

bool
Listener::WaitForEvent (const TimeValue *timeout, EventSP &event_sp)
{
    return WaitForEventsInternal(timeout, nullptr, nullptr, 0, 0, event_sp);
}

size_t
Listener::HandleBroadcastEvent (EventSP &event_sp)
{
    size_t num_handled = 0;
    std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
    Broadcaster *broadcaster = event_sp->GetBroadcaster();
    if (!broadcaster)
        return 0;
    broadcaster_collection::iterator pos;
    broadcaster_collection::iterator end = m_broadcasters.end();
    Broadcaster::BroadcasterImplSP broadcaster_impl_sp(broadcaster->GetBroadcasterImpl());
    for (pos = m_broadcasters.find (broadcaster_impl_sp);
        pos != end && pos->first.lock() == broadcaster_impl_sp;
        ++pos)
    {
        BroadcasterInfo info = pos->second;
        if (event_sp->GetType () & info.event_mask)
        {
            if (info.callback != nullptr)
            {
                info.callback (event_sp, info.callback_user_data);
                ++num_handled;
            }
        }
    }
    return num_handled;
}

uint32_t
Listener::StartListeningForEventSpec (BroadcasterManagerSP manager_sp,
                             const BroadcastEventSpec &event_spec)
{
    if (!manager_sp)
        return 0;
    
    // The BroadcasterManager mutex must be locked before m_broadcasters_mutex 
    // to avoid violating the lock hierarchy (manager before broadcasters).
    std::lock_guard<std::recursive_mutex> manager_guard(manager_sp->m_manager_mutex);
    std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);

    uint32_t bits_acquired = manager_sp->RegisterListenerForEvents(this->shared_from_this(), event_spec);
    if (bits_acquired)
    {
        broadcaster_manager_collection::iterator iter, end_iter = m_broadcaster_managers.end();
        BroadcasterManagerWP manager_wp(manager_sp);
        BroadcasterManagerWPMatcher matcher(manager_sp);
        iter = std::find_if<broadcaster_manager_collection::iterator, BroadcasterManagerWPMatcher>(m_broadcaster_managers.begin(), end_iter, matcher);
        if (iter == end_iter)
            m_broadcaster_managers.push_back(manager_wp);
    }
    
    return bits_acquired;
}
    
bool
Listener::StopListeningForEventSpec (BroadcasterManagerSP manager_sp,
                             const BroadcastEventSpec &event_spec)
{
    if (!manager_sp)
        return false;

    std::lock_guard<std::recursive_mutex> guard(m_broadcasters_mutex);
    return manager_sp->UnregisterListenerForEvents (this->shared_from_this(), event_spec);
}
    
ListenerSP
Listener::MakeListener(const char *name)
{
    return ListenerSP(new Listener(name));
}