summaryrefslogtreecommitdiffstats
path: root/include/libiphone/installation_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libiphone/installation_proxy.h')
-rw-r--r--include/libiphone/installation_proxy.h73
1 files changed, 73 insertions, 0 deletions
diff --git a/include/libiphone/installation_proxy.h b/include/libiphone/installation_proxy.h
new file mode 100644
index 0000000..dcf668f
--- /dev/null
+++ b/include/libiphone/installation_proxy.h
@@ -0,0 +1,73 @@
1/**
2 * @file libiphone/installation_proxy.h
3 * @brief Implementation to talk to the installation proxy on a device
4 * \internal
5 *
6 * Copyright (c) 2009 Nikias Bassen All Rights Reserved.
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#ifndef INSTALLATION_PROXY_H
24#define INSTALLATION_PROXY_H
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#include <libiphone/libiphone.h>
31
32/* Error Codes */
33#define INSTPROXY_E_SUCCESS 0
34#define INSTPROXY_E_INVALID_ARG -1
35#define INSTPROXY_E_PLIST_ERROR -2
36#define INSTPROXY_E_CONN_FAILED -3
37#define INSTPROXY_E_OP_IN_PROGRESS -4
38#define INSTPROXY_E_OP_FAILED -5
39
40#define INSTPROXY_E_UNKNOWN_ERROR -256
41
42typedef int16_t instproxy_error_t;
43
44typedef enum {
45 INSTPROXY_APPTYPE_ALL = 0,
46 INSTPROXY_APPTYPE_SYSTEM = 1,
47 INSTPROXY_APPTYPE_USER = 2
48} instproxy_apptype_t;
49
50struct instproxy_client_int;
51typedef struct instproxy_client_int *instproxy_client_t;
52
53typedef void (*instproxy_status_cb_t) (const char *operation, plist_t status);
54
55/* Interface */
56instproxy_error_t instproxy_client_new(iphone_device_t device, int dst_port, instproxy_client_t *client);
57instproxy_error_t instproxy_client_free(instproxy_client_t client);
58
59instproxy_error_t instproxy_browse(instproxy_client_t client, instproxy_apptype_t apptype, plist_t *result);
60instproxy_error_t instproxy_install(instproxy_client_t client, const char *pkg_path, plist_t sinf, plist_t metadata, instproxy_status_cb_t status_cb);
61instproxy_error_t instproxy_upgrade(instproxy_client_t client, const char *pkg_path, plist_t sinf, plist_t metadata, instproxy_status_cb_t status_cb);
62instproxy_error_t instproxy_uninstall(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
63
64instproxy_error_t instproxy_lookup_archives(instproxy_client_t client, plist_t *result);
65instproxy_error_t instproxy_archive(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
66instproxy_error_t instproxy_restore(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
67instproxy_error_t instproxy_remove_archive(instproxy_client_t client, const char *appid, instproxy_status_cb_t status_cb);
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif