Moved procfs for app lifecycle to plugin and separate plugins
[platform/core/connectivity/stc-manager.git] / plugin / appstatus / include / stc-plugin-appstatus.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
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 #ifndef __STC_PLUGIN_APPSTATUS_H__
18 #define __STC_PLUGIN_APPSTATUS_H__
19
20 #include <glib.h>
21 #include "stc-error.h"
22 #include "stc-manager.h"
23
24 typedef stc_error_e (*stc_plugin_app_state_changed_cb)(stc_cmd_type_e cmd,
25                                                        pid_t pid,
26                                                        const gchar *app_id,
27                                                        const gchar *pkg_id,
28                                                        stc_app_type_e app_type);
29
30 typedef struct {
31         /* popup */
32         int (*send_restriction_message_to_net_popup) (const char *,
33                         const char *, const char *, const char *, const char *);
34         int (*send_warn_message_to_net_popup) (const char *,
35                         const char *, const char *, const char *, const char *);
36         /* app status */
37         int (*register_state_changed_cb) (stc_s *stc,
38                         stc_plugin_app_state_changed_cb cb, void *data);
39         int (*deregister_state_changed_cb) (stc_s *stc);
40 } stc_plugin_appstatus_s;
41
42 int stc_plugin_popup_send_restriction_message(const char *content,
43                 const char *type, const char *app_id, const char *iftype, const char *limit);
44 int stc_plugin_popup_send_restriction_message(const char *content,
45                 const char *type, const char *app_id, const char *iftype, const char *limit);
46
47 int stc_plugin_appstatus_register_changed_cb(stc_s *stc,
48                 stc_plugin_app_state_changed_cb cb, void *data);
49 int stc_plugin_appstatus_deregister_changed_cb(stc_s *stc);
50
51 #endif /* __STC_PLUGIN_APPSTATUS_H__ */