summaryrefslogtreecommitdiffstats
path: root/src/rba_adapter.cpp
diff options
context:
space:
mode:
authorAnusha Gugale <external.agogale@jp.adit-jv.com>2020-12-17 15:08:36 +0530
committerMarius Vlad <marius.vlad@collabora.com>2021-01-12 11:01:21 +0000
commite1e8c07e202ffccc7b56f8f116a2ef1624028f91 (patch)
tree4f77d49747f380ced89fce12ef14d01b20c0505a /src/rba_adapter.cpp
parent838efcb58cbe08ca31dedbda9a140f4968dd7d29 (diff)
Added rba policy implementationkoi_10.92.0koi/10.92.010.92.0
- Added rba-policy option in meson file - Created new rba adapter file to call rba interfaces from librba - All the application from Homescreen will be allowed to display through rba policy as its added in RBAModel.json Bug-AGL: SPEC-3738 Signed-off-by: Anusha Gugale <external.agogale@jp.adit-jv.com> Change-Id: Iffd4ac16d9abe768476d025556cbe98a31553288
Diffstat (limited to 'src/rba_adapter.cpp')
-rw-r--r--src/rba_adapter.cpp83
1 files changed, 83 insertions, 0 deletions
diff --git a/src/rba_adapter.cpp b/src/rba_adapter.cpp
new file mode 100644
index 0000000..120d032
--- /dev/null
+++ b/src/rba_adapter.cpp
@@ -0,0 +1,83 @@
+/*
+ * Copyright (c) 2020 DENSO CORPORATION.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include <string>
+#include <iostream>
+#include <unistd.h>
+
+#include "rba_adapter.h"
+#include <libweston/libweston.h>
+
+#include "RBAJsonParser.hpp"
+#include "RBAArbitrator.hpp"
+using namespace std;
+
+#define JSONFILE "/etc/rba/RBAModel.json"
+rba::RBAJsonParser parser;
+rba::RBAModel* model = nullptr;
+rba::RBAArbitrator* arb = nullptr;
+unique_ptr<rba::RBAResult> result = nullptr;
+
+bool rba_adapter_initialize(void)
+{
+ if (arb == nullptr) {
+ if (access(JSONFILE, F_OK) == -1) {
+ weston_log("Unable to find %s file!!\n", JSONFILE);
+ return false;
+ }
+ model = parser.parse(JSONFILE);
+ if (model == nullptr) {
+ weston_log("RBAmodel is NULL\n");
+ return false;
+ }
+ arb = new rba::RBAArbitrator();
+ if (arb == nullptr) {
+ weston_log("RBAArbitrator is NULL\n");
+ return false;
+ }
+ arb->setModel(model);
+ return true;
+ }
+ weston_log("RBAArbitrator model is already created\n");
+ return true;
+}
+
+bool rba_adapter_arbitrate(const char *app_id)
+{
+ string id(app_id);
+
+ result = arb->execute(id+ "/NORMAL", true);
+
+ if (result->getStatusType() == rba::RBAResultStatusType::UNKNOWN_CONTENT_STATE) {
+ weston_log("ERROR: Unknown context app: %s\n", app_id);
+ return false;
+ }
+ if (result->getStatusType() == rba::RBAResultStatusType::FAILED ||
+ result->getStatusType() == rba::RBAResultStatusType::CANCEL_ERROR) {
+ weston_log("ERROR: execution failed or cancel for app: %s\n", app_id);
+ return false;
+ }
+ return true;
+}