summaryrefslogtreecommitdiff
path: root/src/include/logic.h
blob: c2b793dda5d20860defff1c9fcb24fef51d5b394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
 * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
 *
 *    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.
 */
/*
 * @file        logic.h
 * @author      Janusz Kozerski (j.kozerski@samsung.com)
 * @version     1.0
 * @brief       This file is the implementation of SQL queries
 */

#ifndef CCHECKER_LOGIC_H
#define CCHECKER_LOGIC_H

#include <gio/gio.h>
#include <package_manager.h>
#include <string>
#include <vector>

#include <app.h>

namespace CCHECKER {

enum error_t {
    NO_ERROR,
    REGISTER_CALLBACK_ERROR,
    DBUS_ERROR,
    PACKAGE_MANAGER_ERROR
};

class Logic {
    public:
        Logic(void);
        virtual ~Logic(void);
        int setup();
        static void pkg_manager_callback(
                const char *type,
                const char *package,
                package_manager_event_type_e eventType,
                package_manager_event_state_e eventState,
                int progress,
                package_manager_error_e error,
                void *logic_ptr);
        static void connman_callback(GDBusProxy *proxy,
                gchar      *sender_name,
                gchar      *signal_name,
                GVariant   *parameters,
                void *logic_ptr);

    private:
        //TODO: implement missing members

        void check_ocsp(app_t &app);
        void add_ocsp_url(const std::string &issuer, const std::string &url);
        void pkgmanager_uninstall(const app_t &app);
        void get_certs_from_signature(const std::string &signature, std::vector<std::string> &cert);
        error_t load_database_to_buffer();

        error_t register_connman_signal_handler ();

        bool m_is_online;
        package_manager_h m_request;
        GDBusProxy *m_proxy;

};

} // CCHECKER

#endif //CCHECKER_LOGIC_H