Add debug mode request
[platform/core/appfw/slp-pkgmgr.git] / client / src / pkgmgr_client_internal.h
1 /*
2  * slp-pkgmgr
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>,
7  * Jaeho Lee <jaeho81.lee@samsung.com>, Shobhit Srivastava <shobhit.s@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22
23 #ifndef __PKGMGR_CLIENT_INTERNAL_H__
24 #define __PKGMGR_CLIENT_INTERNAL_H__
25
26 #include <unistd.h>
27 #include <ctype.h>
28
29 #include <glib.h>
30 #include <gio/gio.h>
31
32 #include "package-manager-plugin.h"
33 #include "package-manager.h"
34
35 #define BUFMAX 4096
36
37 struct cb_info {
38         int req_id;
39         char *req_key;
40         int status_type;
41         pkgmgr_handler event_cb;
42         pkgmgr_app_handler app_event_cb;
43         pkgmgr_pkg_size_info_receive_cb size_info_cb;
44         void *data;
45         struct pkgmgr_client_t *client;
46         guint sid;
47 };
48
49 struct pkgmgr_client_t {
50         pkgmgr_client_type pc_type;
51         int status_type;
52         GDBusConnection *conn;
53         GList *cb_info_list;
54         char *tep_path;
55         bool tep_move;
56         bool debug_mode;
57 };
58
59 int pkgmgr_client_connection_connect(struct pkgmgr_client_t *pc);
60 void pkgmgr_client_connection_disconnect(struct pkgmgr_client_t *pc);
61 int pkgmgr_client_connection_set_callback(struct pkgmgr_client_t *pc,
62                 struct cb_info *cb_info);
63 void pkgmgr_client_connection_unset_callback(struct pkgmgr_client_t *pc,
64                 struct cb_info *cb_info);
65 int pkgmgr_client_connection_send_request(struct pkgmgr_client_t *pc,
66                 const char *method, GVariant *params, GVariant **result);
67
68
69 typedef package_manager_pkg_info_t package_manager_app_info_t;
70
71
72 package_manager_pkg_info_t *_pkg_malloc_appinfo(int num);
73
74 pkg_plugin_set *_pkg_plugin_load_library(const char *pkg_type,
75                                          const char *library_path);
76
77 int _pkg_plugin_get_library_path(const char *pkg_type, char *library_path);
78
79 pkg_plugin_set *_package_manager_load_library(const char *pkg_type);
80
81 char *_get_info_string(const char *key,
82                        const package_manager_pkg_detail_info_t *
83                        pkg_detail_info);
84
85 int _get_info_int(const char *key,
86                   const package_manager_pkg_detail_info_t *pkg_detail_info);
87
88 time_t _get_info_time(const char *key,
89                       const package_manager_pkg_detail_info_t *
90                       pkg_detail_info);
91
92
93 #define PKG_FRONTEND    "frontend:"
94 #define PKG_BACKEND             "backend:"
95 #define PKG_BACKENDLIB  "backendlib:"
96 #define PKG_PARSERLIB   "parserlib:"
97 #define PKG_CONF_PATH   "/etc/package-manager/pkg_path.conf"
98
99 #define PKG_STATUS              "STATUS"
100
101 #define PKG_STRING_LEN_MAX 1024
102 #define PKG_EXT_LEN_MAX          20
103 #define PKG_ARGC_MAX             16
104
105 void _app_str_trim(char *input);
106
107 int _get_mime_from_file(const char *filename, char *mimetype, int len);
108 int _get_mime_extension(const char *mimetype, char *ext, int len);
109
110 #endif                          /* __PKGMGR_CLIENT_INTERNAL_H__ */