summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2009-12-31 03:19:43 +0100
committerGravatar Matt Colyer2010-01-04 07:33:19 -0800
commitdd3d8700dcdc7acc28e2db58405f247bb98228ab (patch)
tree0f9f329c283a96341feb3d3cdf00038576d67c0b /include
parentc6982451d82c340ee8a57c76e39db160c625a1a3 (diff)
downloadlibimobiledevice-dd3d8700dcdc7acc28e2db58405f247bb98228ab.tar.gz
libimobiledevice-dd3d8700dcdc7acc28e2db58405f247bb98228ab.tar.bz2
New installation_proxy interface.
Allows enumeration, install, uninstall, upgrade, and some other stuff with apps.
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am1
-rw-r--r--include/libiphone/installation_proxy.h73
-rw-r--r--include/libiphone/libiphone.h1
3 files changed, 75 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 5e25a58..54dae0e 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -2,5 +2,6 @@ nobase_include_HEADERS = libiphone/libiphone.h \
2 libiphone/lockdown.h \ 2 libiphone/lockdown.h \
3 libiphone/afc.h \ 3 libiphone/afc.h \
4 libiphone/notification_proxy.h \ 4 libiphone/notification_proxy.h \
5 libiphone/installation_proxy.h \
5 libiphone/sbservices.h \ 6 libiphone/sbservices.h \
6 libiphone/mobilesync.h 7 libiphone/mobilesync.h
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
diff --git a/include/libiphone/libiphone.h b/include/libiphone/libiphone.h
index 6b95edc..923bc58 100644
--- a/include/libiphone/libiphone.h
+++ b/include/libiphone/libiphone.h
@@ -53,6 +53,7 @@ typedef struct iphone_connection_int *iphone_connection_t;
53#define DBGMASK_NONE 0x0000 53#define DBGMASK_NONE 0x0000
54#define DBGMASK_LOCKDOWND (1 << 1) 54#define DBGMASK_LOCKDOWND (1 << 1)
55#define DBGMASK_MOBILESYNC (1 << 2) 55#define DBGMASK_MOBILESYNC (1 << 2)
56#define DBGMASK_INSTPROXY (1 << 3)
56 57
57/* generic */ 58/* generic */
58void iphone_set_debug_mask(uint16_t mask); 59void iphone_set_debug_mask(uint16_t mask);