90f81de10a4cf2c4d92159d497f18ebdea37c188
[apps/launcher.git] / launcher / src / applicationmodel.cpp
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
4  * Copyright (c) 2018 TOYOTA MOTOR CORPORATION
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include "applicationmodel.h"
20 #include "appinfo.h"
21
22 #include "hmi-debug.h"
23
24 #include <QtDBus/QDBusInterface>
25 #include <QtDBus/QDBusReply>
26
27 #include "afm_user_daemon_proxy.h"
28
29 extern org::AGL::afm::user *afm_user_daemon_proxy;
30
31 class ApplicationModel::Private
32 {
33 public:
34     Private();
35
36     QList<AppInfo> data;
37 };
38
39 namespace {
40     QString get_icon_name(QJsonObject const &i)
41     {
42         QString icon = i["name"].toString().toLower();
43
44         if ( !QFile::exists(QString(":/images/%1_active.svg").arg(icon)) ||
45              !QFile::exists(QString(":/images/%1_inactive.svg").arg(icon)) )
46         {
47             icon = "blank";
48         }
49         return icon;
50     }
51 }
52
53 ApplicationModel::Private::Private()
54 {
55     QString apps = afm_user_daemon_proxy->runnables(QStringLiteral(""));
56     QJsonDocument japps = QJsonDocument::fromJson(apps.toUtf8());
57     for (auto const &app : japps.array()) {
58         QJsonObject const &jso = app.toObject();
59         auto const name = jso["name"].toString();
60         auto const id = jso["id"].toString();
61         auto const icon = get_icon_name(jso);
62
63         // Hide HomeScreen icon itself
64         if (name != "launcher" && name != "homescreen-2017" && name != "OnScreenApp") {
65             this->data.append(AppInfo(icon, name, id));
66         }
67
68         HMI_DEBUG("launcher","name: %s icon: %s id: %s.", name.toStdString().c_str(), icon.toStdString().c_str(), id.toStdString().c_str());
69     }
70 }
71
72 ApplicationModel::ApplicationModel(QObject *parent)
73     : QAbstractListModel(parent)
74     , d(new Private())
75 {
76 }
77
78 ApplicationModel::~ApplicationModel()
79 {
80     delete this->d;
81 }
82
83 int ApplicationModel::rowCount(const QModelIndex &parent) const
84 {
85     if (parent.isValid())
86         return 0;
87
88     return this->d->data.count();
89 }
90
91 QVariant ApplicationModel::data(const QModelIndex &index, int role) const
92 {
93     QVariant ret;
94     if (!index.isValid())
95         return ret;
96
97     switch (role) {
98     case Qt::DecorationRole:
99         ret = this->d->data[index.row()].iconPath();
100         break;
101     case Qt::DisplayRole:
102         ret = this->d->data[index.row()].name();
103         break;
104     case Qt::UserRole:
105         ret = this->d->data[index.row()].id();
106         break;
107     default:
108         break;
109     }
110
111     return ret;
112 }
113
114 QHash<int, QByteArray> ApplicationModel::roleNames() const
115 {
116     QHash<int, QByteArray> roles;
117     roles[Qt::DecorationRole] = "icon";
118     roles[Qt::DisplayRole] = "name";
119     roles[Qt::UserRole] = "id";
120     return roles;
121 }
122
123 QString ApplicationModel::id(int i) const
124 {
125     return data(index(i), Qt::UserRole).toString();
126 }
127
128 QString ApplicationModel::name(int i) const
129 {
130     return data(index(i), Qt::DisplayRole).toString();
131 }
132
133 void ApplicationModel::move(int from, int to)
134 {
135     QModelIndex parent;
136     if (to < 0 || to > rowCount()) return;
137     if (from < to) {
138         if (!beginMoveRows(parent, from, from, parent, to + 1)) {
139             HMI_NOTICE("launcher","from : %d, to : %d. false.", from, to);
140             return;
141         }
142         d->data.move(from, to);
143         endMoveRows();
144     } else if (from > to) {
145         if (!beginMoveRows(parent, from, from, parent, to)) {
146             HMI_NOTICE("launcher","from : %d, to : %d. false.", from, to);
147             return;
148         }
149         d->data.move(from, to);
150         endMoveRows();
151     } else {
152         HMI_NOTICE("launcher","from : %d, to : %d. false.", from, to);
153     }
154 }