summaryrefslogtreecommitdiffstats
path: root/xbmc/pvr/PVREventLogJob.cpp
blob: b70ad1cb6235c3de777758ea78a66d50850b28c4 (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
/*
 *  Copyright (C) 2012-2018 Team Kodi
 *  This file is part of Kodi - https://kodi.tv
 *
 *  SPDX-License-Identifier: GPL-2.0-or-later
 *  See LICENSES/README.md for more information.
 */

#include "PVREventLogJob.h"

#include "ServiceBroker.h"
#include "dialogs/GUIDialogKaiToast.h"
#include "events/EventLog.h"
#include "events/NotificationEvent.h"

namespace PVR
{

CPVREventLogJob::CPVREventLogJob(bool bNotifyUser,
                                 EventLevel eLevel,
                                 const std::string& label,
                                 const std::string& msg,
                                 const std::string& icon)
{
  AddEvent(bNotifyUser, eLevel, label, msg, icon);
}

void CPVREventLogJob::AddEvent(bool bNotifyUser,
                               EventLevel eLevel,
                               const std::string& label,
                               const std::string& msg,
                               const std::string& icon)
{
  m_events.emplace_back(Event(bNotifyUser, eLevel, label, msg, icon));
}

bool CPVREventLogJob::DoWork()
{
  for (const auto& event : m_events)
  {
    if (event.m_bNotifyUser)
      CGUIDialogKaiToast::QueueNotification(event.m_eLevel == EventLevel::Error
                                                ? CGUIDialogKaiToast::Error
                                                : CGUIDialogKaiToast::Info,
                                            event.m_label, event.m_msg, 5000, true);

    // Write event log entry.
    auto eventLog = CServiceBroker::GetEventLog();
    if (eventLog)
      eventLog->Add(std::make_shared<CNotificationEvent>(event.m_label, event.m_msg, event.m_icon,
                                                         event.m_eLevel));
  }
  return true;
}

} // namespace PVR