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 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
|
/*
* 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 "GUIWindowPVRBase.h"
#include "FileItem.h"
#include "GUIUserMessages.h"
#include "ServiceBroker.h"
#include "addons/AddonManager.h"
#include "addons/addoninfo/AddonType.h"
#include "dialogs/GUIDialogExtendedProgressBar.h"
#include "dialogs/GUIDialogSelect.h"
#include "guilib/GUIComponent.h"
#include "guilib/GUIMessage.h"
#include "guilib/GUIWindowManager.h"
#include "guilib/LocalizeStrings.h"
#include "input/actions/Action.h"
#include "input/actions/ActionIDs.h"
#include "messaging/ApplicationMessenger.h"
#include "messaging/helpers/DialogOKHelper.h"
#include "pvr/PVRManager.h"
#include "pvr/PVRPlaybackState.h"
#include "pvr/channels/PVRChannelGroup.h"
#include "pvr/channels/PVRChannelGroups.h"
#include "pvr/channels/PVRChannelGroupsContainer.h"
#include "pvr/filesystem/PVRGUIDirectory.h"
#include "pvr/guilib/PVRGUIActionsChannels.h"
#include "utils/Variant.h"
#include "utils/log.h"
#include <iterator>
#include <memory>
#include <mutex>
#include <string>
#include <utility>
#include <vector>
using namespace std::chrono_literals;
#define MAX_INVALIDATION_FREQUENCY 2000ms // limit to one invalidation per X milliseconds
using namespace PVR;
using namespace KODI::MESSAGING;
namespace PVR
{
class CGUIPVRChannelGroupsSelector
{
public:
virtual ~CGUIPVRChannelGroupsSelector() = default;
bool Initialize(CGUIWindow* parent, bool bRadio);
bool HasFocus() const;
std::shared_ptr<CPVRChannelGroup> GetSelectedChannelGroup() const;
bool SelectChannelGroup(const std::shared_ptr<CPVRChannelGroup>& newGroup);
private:
CGUIControl* m_control = nullptr;
std::vector<std::shared_ptr<CPVRChannelGroup>> m_channelGroups;
};
} // namespace PVR
bool CGUIPVRChannelGroupsSelector::Initialize(CGUIWindow* parent, bool bRadio)
{
CGUIControl* control = parent->GetControl(CONTROL_LSTCHANNELGROUPS);
if (control && control->IsContainer())
{
m_control = control;
m_channelGroups = CServiceBroker::GetPVRManager().ChannelGroups()->Get(bRadio)->GetMembers(true);
CFileItemList channelGroupItems;
CPVRGUIDirectory::GetChannelGroupsDirectory(bRadio, true, channelGroupItems);
CGUIMessage msg(GUI_MSG_LABEL_BIND, m_control->GetID(), CONTROL_LSTCHANNELGROUPS, 0, 0, &channelGroupItems);
m_control->OnMessage(msg);
return true;
}
return false;
}
bool CGUIPVRChannelGroupsSelector::HasFocus() const
{
return m_control && m_control->HasFocus();
}
std::shared_ptr<CPVRChannelGroup> CGUIPVRChannelGroupsSelector::GetSelectedChannelGroup() const
{
if (m_control)
{
CGUIMessage msg(GUI_MSG_ITEM_SELECTED, m_control->GetID(), CONTROL_LSTCHANNELGROUPS);
m_control->OnMessage(msg);
const auto it = std::next(m_channelGroups.begin(), msg.GetParam1());
if (it != m_channelGroups.end())
{
return *it;
}
}
return std::shared_ptr<CPVRChannelGroup>();
}
bool CGUIPVRChannelGroupsSelector::SelectChannelGroup(const std::shared_ptr<CPVRChannelGroup>& newGroup)
{
if (m_control && newGroup)
{
int iIndex = 0;
for (const auto& group : m_channelGroups)
{
if (*newGroup == *group)
{
CGUIMessage msg(GUI_MSG_ITEM_SELECT, m_control->GetID(), CONTROL_LSTCHANNELGROUPS, iIndex);
m_control->OnMessage(msg);
return true;
}
++iIndex;
}
}
return false;
}
CGUIWindowPVRBase::CGUIWindowPVRBase(bool bRadio, int id, const std::string& xmlFile) :
CGUIMediaWindow(id, xmlFile.c_str()),
m_bRadio(bRadio),
m_channelGroupsSelector(new CGUIPVRChannelGroupsSelector),
m_progressHandle(nullptr)
{
// prevent removable drives to appear in directory listing (base class default behavior).
m_rootDir.AllowNonLocalSources(false);
CServiceBroker::GetPVRManager().Events().Subscribe(this, &CGUIWindowPVRBase::Notify);
}
CGUIWindowPVRBase::~CGUIWindowPVRBase()
{
if (m_channelGroup)
m_channelGroup->Events().Unsubscribe(this);
CServiceBroker::GetPVRManager().Events().Unsubscribe(this);
}
void CGUIWindowPVRBase::UpdateSelectedItemPath()
{
CServiceBroker::GetPVRManager().Get<PVR::GUI::Channels>().SetSelectedChannelPath(
m_bRadio, m_viewControl.GetSelectedItemPath());
}
void CGUIWindowPVRBase::Notify(const PVREvent& event)
{
// call virtual event handler function
NotifyEvent(event);
}
void CGUIWindowPVRBase::NotifyEvent(const PVREvent& event)
{
if (event == PVREvent::ManagerStopped)
{
ClearData();
}
else if (m_active)
{
if (event == PVREvent::SystemSleep)
{
CGUIMessage m(GUI_MSG_SYSTEM_SLEEP, GetID(), 0, static_cast<int>(event));
CServiceBroker::GetAppMessenger()->SendGUIMessage(m);
}
else if (event == PVREvent::SystemWake)
{
CGUIMessage m(GUI_MSG_SYSTEM_WAKE, GetID(), 0, static_cast<int>(event));
CServiceBroker::GetAppMessenger()->SendGUIMessage(m);
}
else
{
CGUIMessage m(GUI_MSG_REFRESH_LIST, GetID(), 0, static_cast<int>(event));
CServiceBroker::GetAppMessenger()->SendGUIMessage(m);
}
}
}
bool CGUIWindowPVRBase::OnAction(const CAction& action)
{
switch (action.GetID())
{
case ACTION_PREVIOUS_CHANNELGROUP:
ActivatePreviousChannelGroup();
return true;
case ACTION_NEXT_CHANNELGROUP:
ActivateNextChannelGroup();
return true;
case ACTION_MOVE_RIGHT:
case ACTION_MOVE_LEFT:
{
if (m_channelGroupsSelector->HasFocus() && CGUIMediaWindow::OnAction(action))
{
SetChannelGroup(m_channelGroupsSelector->GetSelectedChannelGroup());
return true;
}
}
}
return CGUIMediaWindow::OnAction(action);
}
bool CGUIWindowPVRBase::ActivatePreviousChannelGroup()
{
const std::shared_ptr<CPVRChannelGroup> channelGroup = GetChannelGroup();
if (channelGroup)
{
const CPVRChannelGroups* groups = CServiceBroker::GetPVRManager().ChannelGroups()->Get(channelGroup->IsRadio());
if (groups)
{
SetChannelGroup(groups->GetPreviousGroup(*channelGroup));
return true;
}
}
return false;
}
bool CGUIWindowPVRBase::ActivateNextChannelGroup()
{
const std::shared_ptr<CPVRChannelGroup> channelGroup = GetChannelGroup();
if (channelGroup)
{
const CPVRChannelGroups* groups = CServiceBroker::GetPVRManager().ChannelGroups()->Get(channelGroup->IsRadio());
if (groups)
{
SetChannelGroup(groups->GetNextGroup(*channelGroup));
return true;
}
}
return false;
}
void CGUIWindowPVRBase::ClearData()
{
std::unique_lock<CCriticalSection> lock(m_critSection);
m_channelGroup.reset();
m_channelGroupsSelector.reset(new CGUIPVRChannelGroupsSelector);
}
void CGUIWindowPVRBase::OnInitWindow()
{
SetProperty("IsRadio", m_bRadio ? "true" : "");
if (InitChannelGroup())
{
m_channelGroupsSelector->Initialize(this, m_bRadio);
CGUIMediaWindow::OnInitWindow();
// mark item as selected by channel path
m_viewControl.SetSelectedItem(
CServiceBroker::GetPVRManager().Get<PVR::GUI::Channels>().GetSelectedChannelPath(m_bRadio));
// This has to be done after base class OnInitWindow to restore correct selection
m_channelGroupsSelector->SelectChannelGroup(GetChannelGroup());
}
else
{
CGUIWindow::OnInitWindow(); // do not call CGUIMediaWindow as it will do a Refresh which in no case works in this state (no channelgroup!)
ShowProgressDialog(g_localizeStrings.Get(19235), 0); // PVR manager is starting up
}
}
void CGUIWindowPVRBase::OnDeinitWindow(int nextWindowID)
{
HideProgressDialog();
UpdateSelectedItemPath();
CGUIMediaWindow::OnDeinitWindow(nextWindowID);
}
bool CGUIWindowPVRBase::OnMessage(CGUIMessage& message)
{
bool bReturn = false;
switch (message.GetMessage())
{
case GUI_MSG_CLICKED:
{
switch (message.GetSenderId())
{
case CONTROL_BTNCHANNELGROUPS:
return OpenChannelGroupSelectionDialog();
case CONTROL_LSTCHANNELGROUPS:
{
switch (message.GetParam1())
{
case ACTION_SELECT_ITEM:
case ACTION_MOUSE_LEFT_CLICK:
{
SetChannelGroup(m_channelGroupsSelector->GetSelectedChannelGroup());
bReturn = true;
break;
}
}
}
}
break;
}
case GUI_MSG_REFRESH_LIST:
{
switch (static_cast<PVREvent>(message.GetParam1()))
{
case PVREvent::ManagerStarted:
case PVREvent::ClientsInvalidated:
case PVREvent::ChannelGroupsInvalidated:
{
if (InitChannelGroup())
{
m_channelGroupsSelector->Initialize(this, m_bRadio);
m_channelGroupsSelector->SelectChannelGroup(GetChannelGroup());
HideProgressDialog();
Refresh(true);
m_viewControl.SetFocused();
}
break;
}
default:
break;
}
if (IsActive())
{
// Only the active window must set the selected item path which is shared
// between all PVR windows, not the last notified window (observer).
UpdateSelectedItemPath();
}
bReturn = true;
break;
}
case GUI_MSG_NOTIFY_ALL:
{
switch (message.GetParam1())
{
case GUI_MSG_UPDATE_SOURCES:
{
// removable drive connected/disconnected. base class triggers a window
// content refresh, which makes no sense for pvr windows.
bReturn = true;
break;
}
}
break;
}
}
return bReturn || CGUIMediaWindow::OnMessage(message);
}
void CGUIWindowPVRBase::SetInvalid()
{
if (m_refreshTimeout.IsTimePast())
{
for (const auto& item : *m_vecItems)
item->SetInvalid();
CGUIMediaWindow::SetInvalid();
m_refreshTimeout.Set(MAX_INVALIDATION_FREQUENCY);
}
}
bool CGUIWindowPVRBase::CanBeActivated() const
{
// check if there is at least one enabled PVR add-on
if (!CServiceBroker::GetAddonMgr().HasAddons(ADDON::AddonType::PVRDLL))
{
HELPERS::ShowOKDialogText(CVariant{19296}, CVariant{19272}); // No PVR add-on enabled, You need a tuner, backend software...
return false;
}
return true;
}
bool CGUIWindowPVRBase::OpenChannelGroupSelectionDialog()
{
CGUIDialogSelect* dialog = CServiceBroker::GetGUI()->GetWindowManager().GetWindow<CGUIDialogSelect>(WINDOW_DIALOG_SELECT);
if (!dialog)
return false;
CFileItemList options;
CPVRGUIDirectory::GetChannelGroupsDirectory(m_bRadio, true, options);
dialog->Reset();
dialog->SetHeading(CVariant{g_localizeStrings.Get(19146)});
dialog->SetItems(options);
dialog->SetMultiSelection(false);
if (const std::shared_ptr<CPVRChannelGroup> channelGroup = GetChannelGroup())
{
dialog->SetSelected(channelGroup->GroupName());
}
dialog->Open();
if (!dialog->IsConfirmed())
return false;
const CFileItemPtr item = dialog->GetSelectedFileItem();
if (!item)
return false;
SetChannelGroup(CServiceBroker::GetPVRManager().ChannelGroups()->Get(m_bRadio)->GetByName(item->m_strTitle));
return true;
}
bool CGUIWindowPVRBase::InitChannelGroup()
{
if (!CServiceBroker::GetPVRManager().IsStarted())
return false;
std::shared_ptr<CPVRChannelGroup> group;
if (m_channelGroupPath.empty())
{
group = CServiceBroker::GetPVRManager().PlaybackState()->GetActiveChannelGroup(m_bRadio);
}
else
{
group = CServiceBroker::GetPVRManager().ChannelGroups()->Get(m_bRadio)->GetGroupByPath(m_channelGroupPath);
if (group)
CServiceBroker::GetPVRManager().PlaybackState()->SetActiveChannelGroup(group);
else
CLog::LogF(LOGERROR, "Found no {} channel group with path '{}'!", m_bRadio ? "radio" : "TV",
m_channelGroupPath);
m_channelGroupPath.clear();
}
if (group)
{
std::unique_lock<CCriticalSection> lock(m_critSection);
if (m_channelGroup != group)
{
m_viewControl.SetSelectedItem(0);
SetChannelGroup(std::move(group), false);
}
// Path might have changed since last init. Set it always, not just on group change.
m_vecItems->SetPath(GetDirectoryPath());
return true;
}
return false;
}
std::shared_ptr<CPVRChannelGroup> CGUIWindowPVRBase::GetChannelGroup()
{
std::unique_lock<CCriticalSection> lock(m_critSection);
return m_channelGroup;
}
void CGUIWindowPVRBase::SetChannelGroup(std::shared_ptr<CPVRChannelGroup> &&group, bool bUpdate /* = true */)
{
if (!group)
return;
std::shared_ptr<CPVRChannelGroup> updateChannelGroup;
{
std::unique_lock<CCriticalSection> lock(m_critSection);
if (m_channelGroup != group)
{
if (m_channelGroup)
m_channelGroup->Events().Unsubscribe(this);
m_channelGroup = std::move(group);
// we need to register the window to receive changes from the new group
m_channelGroup->Events().Subscribe(this, &CGUIWindowPVRBase::Notify);
if (bUpdate)
updateChannelGroup = m_channelGroup;
}
}
if (updateChannelGroup)
{
CServiceBroker::GetPVRManager().PlaybackState()->SetActiveChannelGroup(updateChannelGroup);
Update(GetDirectoryPath());
}
}
bool CGUIWindowPVRBase::Update(const std::string& strDirectory, bool updateFilterPath /*= true*/)
{
if (m_bUpdating)
{
// no concurrent updates
return false;
}
CUpdateGuard guard(m_bUpdating);
if (!GetChannelGroup())
{
// no updates before fully initialized
return false;
}
int iOldCount = m_vecItems->Size();
int iSelectedItem = m_viewControl.GetSelectedItem();
const std::string oldPath = m_vecItems->GetPath();
bool bReturn = CGUIMediaWindow::Update(strDirectory, updateFilterPath);
if (bReturn &&
iSelectedItem != -1) // something must have been selected
{
int iNewCount = m_vecItems->Size();
if (iOldCount > iNewCount && // at least one item removed by Update()
oldPath == m_vecItems->GetPath()) // update not due changing into another folder
{
// restore selected item if we just deleted one or more items.
if (iSelectedItem >= iNewCount)
iSelectedItem = iNewCount - 1;
m_viewControl.SetSelectedItem(iSelectedItem);
}
}
return bReturn;
}
void CGUIWindowPVRBase::UpdateButtons()
{
CGUIMediaWindow::UpdateButtons();
const std::shared_ptr<CPVRChannelGroup> channelGroup = GetChannelGroup();
if (channelGroup)
{
SET_CONTROL_LABEL(CONTROL_BTNCHANNELGROUPS, g_localizeStrings.Get(19141) + ": " + channelGroup->GroupName());
}
m_channelGroupsSelector->SelectChannelGroup(channelGroup);
}
void CGUIWindowPVRBase::ShowProgressDialog(const std::string& strText, int iProgress)
{
if (!m_progressHandle)
{
CGUIDialogExtendedProgressBar* loadingProgressDialog = CServiceBroker::GetGUI()->GetWindowManager().GetWindow<CGUIDialogExtendedProgressBar>(WINDOW_DIALOG_EXT_PROGRESS);
if (!loadingProgressDialog)
{
CLog::LogF(LOGERROR, "Unable to get WINDOW_DIALOG_EXT_PROGRESS!");
return;
}
m_progressHandle = loadingProgressDialog->GetHandle(g_localizeStrings.Get(19235)); // PVR manager is starting up
}
m_progressHandle->SetPercentage(static_cast<float>(iProgress));
m_progressHandle->SetText(strText);
}
void CGUIWindowPVRBase::HideProgressDialog()
{
if (m_progressHandle)
{
m_progressHandle->MarkFinished();
m_progressHandle = nullptr;
}
}
|