agl-shell: Add split functionality into agl-shell protocol
[src/agl-compositor.git] / src / rba_adapter.cpp
1 /*
2  * Copyright (c) 2020 DENSO CORPORATION.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25
26 #include <string>
27 #include <iostream>
28 #include <unistd.h>
29
30 #include "rba_adapter.h"
31 #include "ivi-compositor.h"
32 #include <libweston/config-parser.h>
33 #include <libweston/libweston.h>
34
35 #include "RBAJsonParser.hpp"
36 #include "RBAArbitrator.hpp"
37 using namespace std;
38
39 #define JSONFILE "/etc/rba/RBAModel.json"
40 rba::RBAJsonParser parser;
41 rba::RBAModel* model = nullptr;
42 rba::RBAArbitrator* arb = nullptr;
43 unique_ptr<rba::RBAResult> result = nullptr;
44
45 bool rba_adapter_initialize(void)
46 {
47         if (arb == nullptr) {
48                 if (access(JSONFILE, F_OK) == -1) {
49                         weston_log("Unable to find %s file!!\n", JSONFILE);
50                         return false;
51                 }
52                 model = parser.parse(JSONFILE);
53                 if (model == nullptr) {
54                         weston_log("RBAmodel is NULL\n");
55                         return false;
56                 }
57                 arb = new rba::RBAArbitrator(model);
58                 if (arb == nullptr) {
59                         weston_log("RBAArbitrator is NULL\n");
60                         return false;
61                 }
62                 return true;
63         }
64         weston_log("RBAArbitrator model is already created\n");
65         return true;
66 }
67
68 bool rba_adapter_arbitrate(const char *app_id, struct ivi_compositor *ivi)
69 {
70         bool allow_unregistred_app;
71         struct weston_config_section *section;
72         string id(app_id);
73
74         result = arb->execute(id+ "/NORMAL", true);
75         section = weston_config_get_section(ivi->config, "core", NULL, NULL);
76         weston_config_section_get_bool(section, "allow_unregistred_app",
77                                        &allow_unregistred_app, false);
78
79         if (result->getStatusType() == rba::RBAResultStatusType::UNKNOWN_CONTENT_STATE) {
80                 weston_log("ERROR: Unknown context app: %s\n", app_id);
81                 if(allow_unregistred_app) {
82                         result = arb->execute("unknown_app/NORMAL", true);
83                         weston_log("!!! WARNING !!! Allowed unknown application to open as allow_unregistred_app is set to 1 in config file.\n");
84                         weston_log("!!! WARNING !!! allow_unregistred_app should be disabled for release build.\n");
85                 } else {
86                         return false;
87                 }
88         }
89         if (result->getStatusType() == rba::RBAResultStatusType::FAILED ||
90             result->getStatusType() == rba::RBAResultStatusType::CANCEL_ERROR) {
91                 weston_log("ERROR: execution failed or cancel for app: %s\n", app_id);
92                 return false;
93         }
94         return true;
95 }