Added rba policy implementation
[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 <libweston/libweston.h>
32
33 #include "RBAJsonParser.hpp"
34 #include "RBAArbitrator.hpp"
35 using namespace std;
36
37 #define JSONFILE "/etc/rba/RBAModel.json"
38 rba::RBAJsonParser parser;
39 rba::RBAModel* model = nullptr;
40 rba::RBAArbitrator* arb = nullptr;
41 unique_ptr<rba::RBAResult> result = nullptr;
42
43 bool rba_adapter_initialize(void)
44 {
45         if (arb == nullptr) {
46                 if (access(JSONFILE, F_OK) == -1) {
47                         weston_log("Unable to find %s file!!\n", JSONFILE);
48                         return false;
49                 }
50                 model = parser.parse(JSONFILE);
51                 if (model == nullptr) {
52                         weston_log("RBAmodel is NULL\n");
53                         return false;
54                 }
55                 arb = new rba::RBAArbitrator();
56                 if (arb == nullptr) {
57                         weston_log("RBAArbitrator is NULL\n");
58                         return false;
59                 }
60                 arb->setModel(model);
61                 return true;
62         }
63         weston_log("RBAArbitrator model is already created\n");
64         return true;
65 }
66
67 bool rba_adapter_arbitrate(const char *app_id)
68 {
69         string id(app_id);
70
71         result = arb->execute(id+ "/NORMAL", true);
72
73         if (result->getStatusType() == rba::RBAResultStatusType::UNKNOWN_CONTENT_STATE) {
74                 weston_log("ERROR: Unknown context app: %s\n", app_id);
75                 return false;
76         }
77         if (result->getStatusType() == rba::RBAResultStatusType::FAILED ||
78             result->getStatusType() == rba::RBAResultStatusType::CANCEL_ERROR) {
79                 weston_log("ERROR: execution failed or cancel for app: %s\n", app_id);
80                 return false;
81         }
82         return true;
83 }