aboutsummaryrefslogtreecommitdiffstats
path: root/homescreenappframeworkbinderagl/src
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2017-01-18 15:27:02 +0100
committerBocklage, Jens <Jens_Bocklage@mentor.com>2017-01-18 15:27:02 +0100
commitff4d716fb8034cf7ab89a2bd6b28647a788b9068 (patch)
treec107bb0bb1e377007b4e320d35e2a6b621a986b3 /homescreenappframeworkbinderagl/src
parent1e4ff9ad72e7b8f4f3d46d62b833627d04840a1d (diff)
Initial source commit
Taken from https://gerrit.automotivelinux.org/gerrit/p/staging/HomeScreen.git Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
Diffstat (limited to 'homescreenappframeworkbinderagl/src')
-rw-r--r--homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.cpp98
-rw-r--r--homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.h46
-rw-r--r--homescreenappframeworkbinderagl/src/main.cpp54
3 files changed, 198 insertions, 0 deletions
diff --git a/homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.cpp b/homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.cpp
new file mode 100644
index 0000000..3e7c55d
--- /dev/null
+++ b/homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.cpp
@@ -0,0 +1,98 @@
+/*
+ * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "homescreenappframeworkbinderagl.h"
+
+
+HomeScreenAppFrameworkBinderAgl::HomeScreenAppFrameworkBinderAgl(QObject *parent) :
+ QObject(parent),
+ mp_appframeworkAdaptor(0),
+ m_apps(),
+ mp_dBusAfmUserProxy(0)
+{
+ qDebug("D-Bus: register as org.agl.homescreenappframeworkbinder");
+
+ //m_apps.clear();
+
+ // publish app framework interface
+ mp_appframeworkAdaptor = new AppframeworkAdaptor((QObject*)this);
+ QDBusConnection dbus = QDBusConnection::sessionBus();
+ dbus.registerObject("/AppFramework", this);
+ dbus.registerService("org.agl.homescreenappframeworkbinder");
+
+ qDebug("D-Bus: connect to org.AGL.afm.user /org/AGL/afm/user");
+ mp_dBusAfmUserProxy = new org::AGL::afm::user("org.AGL.afm.user",
+ "/org/AGL/afm/user",
+ QDBusConnection::sessionBus(),
+ 0);
+
+ QString runnables = mp_dBusAfmUserProxy->runnables("{\"dummy\": \"entry\"}");
+ qDebug("runnables: %s", runnables.toStdString().c_str());
+
+ QJsonDocument jsonResponse = QJsonDocument::fromJson(runnables.toUtf8());
+ QJsonArray appsArray = jsonResponse.array();
+ for (int i = 0; i < appsArray.size(); ++i)
+ {
+ qDebug("new app %d", i);
+ QJsonObject appObject = appsArray[i].toObject();
+ AppInfo appInfo;
+ appInfo.read(appObject);
+ qDebug("name %s", appInfo.name().toStdString().c_str());
+ m_apps.append(appInfo);
+
+ }
+}
+
+HomeScreenAppFrameworkBinderAgl::~HomeScreenAppFrameworkBinderAgl()
+{
+ delete mp_appframeworkAdaptor;
+}
+
+QList<AppInfo> HomeScreenAppFrameworkBinderAgl::getAvailableApps()
+{
+ return m_apps;
+}
+
+int HomeScreenAppFrameworkBinderAgl::launchApp(const QString &name)
+{
+ int pid = -1;
+ qDebug("launchApp name: %s", name.toStdString().c_str());
+ QString jsonLaunch = "{\"id\":\"" + name + "\", \"mode\":\"local\"}";
+ qDebug("jsonLaunch %s", jsonLaunch.toStdString().c_str());
+ QString stateString = mp_dBusAfmUserProxy->once(jsonLaunch);
+ qDebug("stateString %s", stateString.toStdString().c_str());
+
+ QJsonDocument jsonResponse = QJsonDocument::fromJson(stateString.toUtf8());
+ QJsonObject obj = jsonResponse.object();
+ QJsonArray pidArray = obj["pids"].toArray();
+ for (int i = 0; i < pidArray.size(); ++i)
+ {
+ qDebug("pid %d", pidArray[i].toInt());
+ }
+ if (1 == pidArray.size())
+ {
+ pid = pidArray[0].toInt();
+ }
+ if (2 == pidArray.size())
+ {
+ pid = pidArray[1].toInt();
+ }
+
+ qDebug("launchApp pid: %d", pid);
+
+ return pid;
+}
+
diff --git a/homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.h b/homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.h
new file mode 100644
index 0000000..742ce7e
--- /dev/null
+++ b/homescreenappframeworkbinderagl/src/homescreenappframeworkbinderagl.h
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef HOMESCREENAPPFRAMEWORKBINDERAGL_H
+#define HOMESCREENAPPFRAMEWORKBINDERAGL_H
+
+#include <QObject>
+#include <include/appframework.hpp>
+#include "appframework_adaptor.h"
+#include "afm_user_daemon_proxy.h"
+
+
+class HomeScreenAppFrameworkBinderAgl : public QObject
+{
+ Q_OBJECT
+public:
+ explicit HomeScreenAppFrameworkBinderAgl(QObject *parent = 0);
+ ~HomeScreenAppFrameworkBinderAgl();
+private:
+ AppframeworkAdaptor *mp_appframeworkAdaptor;
+ QList<AppInfo> m_apps;
+
+ //from appframework_adaptor.h
+public Q_SLOTS: // METHODS
+ QList<AppInfo> getAvailableApps();
+ int launchApp(const QString &name);
+
+private:
+ org::AGL::afm::user *mp_dBusAfmUserProxy;
+
+};
+
+#endif // HOMESCREENAPPFRAMEWORKBINDERAGL_H
diff --git a/homescreenappframeworkbinderagl/src/main.cpp b/homescreenappframeworkbinderagl/src/main.cpp
new file mode 100644
index 0000000..12ed15c
--- /dev/null
+++ b/homescreenappframeworkbinderagl/src/main.cpp
@@ -0,0 +1,54 @@
+/*
+ * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <QCoreApplication>
+#include <QCommandLineParser>
+#include "homescreenappframeworkbinderagl.h"
+
+void noOutput(QtMsgType, const QMessageLogContext &, const QString &)
+{
+}
+
+int main(int argc, char *argv[])
+{
+ QCoreApplication a(argc, argv);
+
+ QCoreApplication::setOrganizationDomain("LinuxFoundation");
+ QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
+ QCoreApplication::setApplicationName("HomeScreenAppFrameworkBinderAGL");
+ QCoreApplication::setApplicationVersion("0.7.0");
+
+ QCommandLineParser parser;
+ parser.setApplicationDescription("AGL Application Framwork Proxy - see wwww... for more details");
+ parser.addHelpOption();
+ parser.addVersionOption();
+ QCommandLineOption quietOption(QStringList() << "q" << "quiet",
+ QCoreApplication::translate("main", "Be quiet. No outputs."));
+ parser.addOption(quietOption);
+ parser.process(a);
+
+ if (parser.isSet(quietOption))
+ {
+ qInstallMessageHandler(noOutput);
+ }
+
+ qDBusRegisterMetaType<AppInfo>();
+ qDBusRegisterMetaType<QList<AppInfo> >();
+
+ HomeScreenAppFrameworkBinderAgl *tdp = new HomeScreenAppFrameworkBinderAgl();
+
+ return a.exec();
+}