// Copyright (c) 2017-2020, Mudita Sp. z.o.o. All rights reserved. // For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md #include "ApplicationDesktop.hpp" #include "Dialog.hpp" #include "MessageType.hpp" #include "windows/DesktopMainWindow.hpp" #include "windows/MenuWindow.hpp" #include "windows/PinLockWindow.hpp" #include "windows/PowerOffWindow.hpp" #include "windows/LockedInfoWindow.hpp" #include "windows/Reboot.hpp" #include "windows/Update.hpp" #include "windows/MmiPullWindow.hpp" #include "windows/MmiPushWindow.hpp" #include "windows/MmiInternalMsgWindow.hpp" #include "AppWindow.hpp" #include "data/LockPhoneData.hpp" #include #include #include #include #include #include #include #include #include #include #include #include namespace app { ApplicationDesktop::ApplicationDesktop(std::string name, std::string parent, StartInBackground startInBackground) : Application(name, parent, startInBackground), lockHandler(this) { busChannels.push_back(sys::BusChannels::ServiceDBNotifications); addActionReceiver(app::manager::actions::RequestPin, [this](auto &&data) { lockHandler.handlePasscodeRequest(gui::PinLock::LockType::SimPin, std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::RequestPuk, [this](auto &&data) { lockHandler.handlePasscodeRequest(gui::PinLock::LockType::SimPuk, std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::RequestPinChange, [this](auto &&data) { lockHandler.handlePinChangeRequest(std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::BlockSim, [this](auto &&data) { lockHandler.handleSimBlocked(std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::UnlockSim, [this](auto &&data) { lockHandler.handleUnlockSim(std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::DisplayCMEError, [this](auto &&data) { lockHandler.handleCMEError(std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::ShowMMIResponse, [this](auto &&data) { switchWindow(app::window::name::desktop_mmi_pull, std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::ShowMMIPush, [this](auto &&data) { switchWindow(app::window::name::desktop_mmi_push, std::move(data)); return msgHandled(); }); addActionReceiver(app::manager::actions::ShowMMIResult, [this](auto &&data) { switchWindow(app::window::name::desktop_mmi_internal, std::move(data)); return msgHandled(); }); } ApplicationDesktop::~ApplicationDesktop() { LOG_INFO("Desktop destruktor"); } // Invoked upon receiving data message sys::MessagePointer ApplicationDesktop::DataReceivedHandler(sys::DataMessage *msgl, sys::ResponseMessage *resp) { auto retMsg = Application::DataReceivedHandler(msgl); // if message was handled by application's template there is no need to process further. if (dynamic_cast(retMsg.get())->retCode == sys::ReturnCodes::Success) { return retMsg; } bool handled = false; if (auto msg = dynamic_cast(msgl)) { handled = handle(msg); } else if (auto msg = dynamic_cast(msgl)) { handled = handle(msg); } else if (auto msg = dynamic_cast(msgl)) { if (auto event = dynamic_cast(msg->event.get())) { handled = handle(event); } } else if (auto msg = dynamic_cast(msgl)) { handled = handle(msg); } // handle database response if (resp != nullptr) { if (auto msg = dynamic_cast(resp)) { auto result = msg->getResult(); if (auto response = dynamic_cast(result.get())) { handled = handle(response); } } } if (handled) { return std::make_shared(); } else { return std::make_shared(sys::ReturnCodes::Unresolved); } } auto ApplicationDesktop::handle(sdesktop::UpdateOsMessage *msg) -> bool { if (msg != nullptr && msg->messageType == updateos::UpdateMessageType::UpdateFoundOnBoot) { if (msg->updateStats.updateFile.has_filename()) { LOG_DEBUG("handle pending update found: %s", msg->updateStats.updateFile.c_str()); } } return true; } auto ApplicationDesktop::handle(sdesktop::developerMode::ScreenlockCheckEvent *event) -> bool { if (event != nullptr) { auto event = std::make_unique(lockHandler.isScreenLocked()); auto msg = std::make_shared(std::move(event)); sys::Bus::SendUnicast(std::move(msg), service::name::service_desktop, this); } return true; } auto ApplicationDesktop::handle(db::query::notifications::GetAllResult *msg) -> bool { assert(msg); auto records = *msg->getResult(); bool rebuildMainWindow = false; for (auto record : records) { switch (record.key) { case NotificationsRecord::Key::Calls: rebuildMainWindow |= record.value != notifications.notSeen.Calls; notifications.notSeen.Calls = record.value; break; case NotificationsRecord::Key::Sms: rebuildMainWindow |= record.value != notifications.notSeen.SMS; notifications.notSeen.SMS = record.value; break; case NotificationsRecord::Key::NotValidKey: case NotificationsRecord::Key::NumberOfKeys: LOG_ERROR("Not a valid key"); return false; } } auto ptr = getCurrentWindow(); if (rebuildMainWindow && ptr->getName() == app::window::name::desktop_main_window) { ptr->rebuild(); } return true; } auto ApplicationDesktop::handle(db::NotificationMessage *msg) -> bool { assert(msg); if (msg->interface == db::Interface::Name::Notifications && msg->type == db::Query::Type::Update) { return requestNotSeenNotifications(); } if ((msg->interface == db::Interface::Name::Calllog || msg->interface == db::Interface::Name::SMSThread || msg->interface == db::Interface::Name::SMS) && msg->type != db::Query::Type::Read) { requestNotReadNotifications(); if (auto menuWindow = dynamic_cast(getWindow(app::window::name::desktop_menu)); menuWindow != nullptr) { menuWindow->refresh(); return true; } } return false; } auto ApplicationDesktop::handle(cellular::StateChange *msg) -> bool { assert(msg); if (msg->request == cellular::State::ST::URCReady) { if (need_sim_select && !lockHandler.isScreenLocked()) { manager::Controller::sendAction(this, manager::actions::SelectSimCard); return true; } else if (need_sim_select == false) { sys::Bus::SendUnicast(std::make_shared(MessageType::CellularSimProcedure), ServiceCellular::serviceName, this); } } if (msg->request == cellular::State::ST::ModemFatalFailure) { switchWindow(app::window::name::desktop_reboot); } return false; } bool ApplicationDesktop::showCalls() { LOG_DEBUG("show calls!"); return manager::Controller::sendAction(this, manager::actions::ShowCallLog); } bool ApplicationDesktop::clearCallsNotification() { LOG_DEBUG("Clear Call notifications"); DBServiceAPI::GetQuery(this, db::Interface::Name::Notifications, std::make_unique(NotificationsRecord::Key::Calls)); notifications.notSeen.Calls = 0; return true; } bool ApplicationDesktop::clearMessagesNotification() { LOG_DEBUG("Clear Sms notifications"); DBServiceAPI::GetQuery(this, db::Interface::Name::Notifications, std::make_unique(NotificationsRecord::Key::Sms)); notifications.notSeen.SMS = 0; return true; } bool ApplicationDesktop::requestNotSeenNotifications() { const auto [succeed, _] = DBServiceAPI::GetQuery( this, db::Interface::Name::Notifications, std::make_unique()); return succeed; } bool ApplicationDesktop::requestNotReadNotifications() { notifications.notRead.Calls = DBServiceAPI::CalllogGetCount(this, EntryState::UNREAD); notifications.notRead.SMS = DBServiceAPI::ThreadGetCount(this, EntryState::UNREAD); return true; } // Invoked during initialization sys::ReturnCodes ApplicationDesktop::InitHandler() { auto ret = Application::InitHandler(); if (ret != sys::ReturnCodes::Success) { return ret; } requestNotReadNotifications(); requestNotSeenNotifications(); createUserInterface(); setActiveWindow(gui::name::window::main_window); connect(sdesktop::UpdateOsMessage(), [&](sys::Message *msg) { auto *updateMsg = dynamic_cast(msg); if (updateMsg != nullptr && updateMsg->messageType == updateos::UpdateMessageType::UpdateFoundOnBoot) { if (getWindow(app::window::name::desktop_update)) { std::unique_ptr data = std::make_unique(updateMsg); switchWindow(app::window::name::desktop_update, gui::ShowMode::GUI_SHOW_INIT, std::move(data)); } } if (updateMsg != nullptr && updateMsg->messageType == updateos::UpdateMessageType::UpdateInform) { if (getWindow(app::window::name::desktop_update)) { std::unique_ptr data = std::make_unique(updateMsg); getWindow(app::window::name::desktop_update)->handleSwitchData(data.get()); } } return msgHandled(); }); auto msgToSend = std::make_shared(updateos::UpdateMessageType::UpdateCheckForUpdateOnce); sys::Bus::SendUnicast(msgToSend, service::name::service_desktop, this); settings->registerValueChange(settings::SystemProperties::activeSim, [this](std::string value) { activeSimChanged(value); }); Store::GSM::get()->selected = Store::GSM::SIM::NONE; settings->registerValueChange(settings::SystemProperties::lockPassHash, [this](std::string value) { lockPassHashChanged(value); }); return sys::ReturnCodes::Success; } sys::ReturnCodes ApplicationDesktop::DeinitHandler() { LOG_INFO("DeinitHandler"); return sys::ReturnCodes::Success; } void ApplicationDesktop::createUserInterface() { using namespace app::window::name; windowsFactory.attach(desktop_main_window, [](Application *app, const std::string &name) { return std::make_unique(app); }); windowsFactory.attach(desktop_pin_lock, [&](Application *app, const std::string newname) { return std::make_unique(app, desktop_pin_lock); }); windowsFactory.attach(desktop_menu, [](Application *app, const std::string newname) { return std::make_unique(app); }); windowsFactory.attach(desktop_poweroff, [](Application *app, const std::string newname) { return std::make_unique(app); }); windowsFactory.attach(desktop_locked, [](Application *app, const std::string newname) { return std::make_unique(app); }); windowsFactory.attach(desktop_reboot, [](Application *app, const std::string newname) { return std::make_unique(app); }); windowsFactory.attach(desktop_update, [](Application *app, const std::string newname) { return std::make_unique(app); }); windowsFactory.attach(desktop_mmi_pull, [](Application *app, const std::string newname) { return std::make_unique(app, desktop_mmi_pull); }); windowsFactory.attach(desktop_mmi_push, [](Application *app, const std::string newname) { return std::make_unique(app, desktop_mmi_push); }); windowsFactory.attach(desktop_mmi_internal, [](Application *app, const std::string newname) { return std::make_unique(app, desktop_mmi_internal); }); } void ApplicationDesktop::destroyUserInterface() {} void ApplicationDesktop::activeSimChanged(std::string value) { auto sim = magic_enum::enum_cast(value); if (sim.has_value()) { Store::GSM::get()->selected = sim.value(); } else { Store::GSM::get()->selected = Store::GSM::SIM::NONE; } if (Store::GSM::SIM::NONE == sim) { need_sim_select = true; } } void ApplicationDesktop::lockPassHashChanged(std::string value) { if (!value.empty()) { lockPassHash = utils::getNumericValue(value); } else { lockPassHash = 0; } } } // namespace app