e61f0de89e67401c511f1977bf564f257790ab57
[apps/homescreen.git] / homescreen / src / homescreenhandler.cpp
1 // SPDX-License-Identifier: Apache-2.0
2 /*
3  * Copyright (c) 2017, 2018, 2019 TOYOTA MOTOR CORPORATION
4  * Copyright (c) 2022 Konsulko Group
5  */
6
7 #include <QGuiApplication>
8 #include <QFileInfo>
9 #include <functional>
10
11 #include "homescreenhandler.h"
12 #include "hmi-debug.h"
13
14 // defined by meson build file
15 #include QT_QPA_HEADER
16
17 // LAUNCHER_APP_ID shouldn't be started by applaunchd as it is started as
18 // a user session by systemd
19 #define LAUNCHER_APP_ID          "launcher"
20
21 static struct wl_output *
22 getWlOutput(QPlatformNativeInterface *native, QScreen *screen);
23
24 HomescreenHandler::HomescreenHandler(Shell *_aglShell, ApplicationLauncher *launcher, QObject *parent) :
25         QObject(parent),
26         aglShell(_aglShell)
27 {
28         mp_launcher = launcher;
29         mp_applauncher_client = new AppLauncherClient();
30         QPlatformNativeInterface *native = qApp->platformNativeInterface();
31         m_output = getWlOutput(native, qApp->screens().first());
32
33         //
34         // The "started" event is received any time a start request is made to applaunchd,
35         // and the application either starts successfully or is already running. This
36         // effectively acts as a "switch to app X" action.
37         //
38         connect(mp_applauncher_client,
39                 &AppLauncherClient::appStatusEvent,
40                 this,
41                 &HomescreenHandler::processAppStatusEvent);
42 }
43
44 HomescreenHandler::~HomescreenHandler()
45 {
46         delete mp_applauncher_client;
47 }
48
49 static struct wl_output *
50 getWlOutput(QPlatformNativeInterface *native, QScreen *screen)
51 {
52         void *output = native->nativeResourceForScreen("output", screen);
53         return static_cast<struct ::wl_output*>(output);
54 }
55
56 void HomescreenHandler::tapShortcut(QString app_id)
57 {
58         HMI_DEBUG("HomeScreen","tapShortcut %s", app_id.toStdString().c_str());
59
60         if (app_id == LAUNCHER_APP_ID) {
61                 activateApp(app_id);
62                 return;
63         }
64
65         if (!mp_applauncher_client->startApplication(app_id)) {
66                 HMI_ERROR("HomeScreen","Unable to start application '%s'",
67                           app_id.toStdString().c_str());
68                 return;
69         }
70 }
71
72 /*
73  * Keep track of currently running apps and the order in which
74  * they were activated. That way, when an app is closed, we can
75  * switch back to the previously active one.
76  */
77 void HomescreenHandler::addAppToStack(const QString& app_id)
78 {
79         if (app_id == "homescreen")
80                 return;
81
82         if (!apps_stack.contains(app_id)) {
83                 apps_stack << app_id;
84         } else {
85                 int current_pos = apps_stack.indexOf(app_id);
86                 int last_pos = apps_stack.size() - 1;
87
88                 if (current_pos != last_pos)
89                         apps_stack.move(current_pos, last_pos);
90         }
91 }
92
93 void HomescreenHandler::activateApp(const QString& app_id)
94 {
95         struct agl_shell *agl_shell = aglShell->shell.get();
96
97         if (mp_launcher) {
98                 mp_launcher->setCurrent(app_id);
99         }
100
101         HMI_DEBUG("HomeScreen", "Activating application %s", app_id.toStdString().c_str());
102         agl_shell_activate_app(agl_shell, app_id.toStdString().c_str(), m_output);
103 }
104
105 void HomescreenHandler::deactivateApp(const QString& app_id)
106 {
107         if (apps_stack.contains(app_id)) {
108                 apps_stack.removeOne(app_id);
109                 if (!apps_stack.isEmpty())
110                         activateApp(apps_stack.last());
111         }
112 }
113
114 void HomescreenHandler::processAppStatusEvent(const QString &app_id, const QString &status)
115 {
116         HMI_DEBUG("HomeScreen", "Processing application %s, status %s",
117                         app_id.toStdString().c_str(), status.toStdString().c_str());
118
119         if (status == "started") {
120                 activateApp(app_id);
121         } else if (status == "terminated") {
122                 HMI_DEBUG("HomeScreen", "Application %s terminated, activating last app", app_id.toStdString().c_str());
123                 deactivateApp(app_id);
124         }
125 }