2f6fd8008b473eba7cab3247c1f9f657bbf7f25b
[platform/core/security/askuser.git] / src / client / api / ApiInterface.h
1 /*
2  *  Copyright (c) 2017 - 2018 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16
17 /**
18  * @file        ApiInterface.h
19  * @author      Piotr Sawicki <p.sawicki2@partner.samsung.com>
20  * @author      Ernest Borowski <e.borowski@partner.samsung.com>
21  * @brief       This file contains the declaration of ApiInterface.
22  */
23
24 #pragma once
25
26 #include <string>
27 #include <vector>
28
29 #include <askuser-notification-client.h>
30
31 namespace AskUser {
32
33 namespace Client {
34
35 using RequestId = int;
36
37 class ApiInterface
38 {
39 public:
40     virtual ~ApiInterface() {}
41
42     virtual int process(int fd, int events) = 0;
43     virtual askuser_check_result checkPrivilege(const std::string &privilege) = 0;
44     virtual RequestId popupRequest(const std::string &privilege,
45                                    const askuser_popup_response_callback callback,
46                                    void *userData) = 0;
47     virtual RequestId popupRequest(const std::vector<std::string> &privileges,
48                                    const askuser_popup_multiple_response_callback callback,
49                                    void *userData) = 0;
50     virtual bool popupRequestInProgress(const std::string &privilege) const = 0;
51 };
52
53 } // namespace Client
54
55 } // namespace AskUser
56