summaryrefslogtreecommitdiffstats
path: root/dev/msync.py
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-01-13 22:56:35 +0100
committerGravatar Jonathan Beck2009-01-13 22:56:35 +0100
commit47347ff723dd3c03b0006c150b02abaa2b9f4a76 (patch)
tree47400f8607303d57a2de5e30607127507f9bdc17 /dev/msync.py
parentd4694679f918750e920a2238d891cd2fbb741a90 (diff)
downloadlibimobiledevice-47347ff723dd3c03b0006c150b02abaa2b9f4a76.tar.gz
libimobiledevice-47347ff723dd3c03b0006c150b02abaa2b9f4a76.tar.bz2
Fix some bugs in interface (Receive() still doesn't work).
Diffstat (limited to 'dev/msync.py')
-rwxr-xr-xdev/msync.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/dev/msync.py b/dev/msync.py
new file mode 100755
index 0000000..4170f87
--- /dev/null
+++ b/dev/msync.py
@@ -0,0 +1,40 @@
1#! /usr/bin/env python
2
3from libiphone.iPhone import *
4
5# get msync client
6def GetMobileSyncClient() :
7 phone = iPhone()
8 if not phone.InitDevice() :
9 print "Couldn't find device, is it connected ?\n"
10 return None
11 lckd = phone.GetLockdownClient()
12 if not lckd :
13 print "Failed to start lockdown service.\n"
14 return None
15 msync = lckd.GetMobileSyncClient()
16 if not msync :
17 print "Failed to start mobilesync service.\n"
18 return None
19 return msync
20
21
22msync = GetMobileSyncClient()
23
24if not msync :
25 exit(1)
26
27array = PListNode(PLIST_ARRAY)
28array.AddSubString("SDMessageSyncDataClassWithDevice")
29array.AddSubString("com.apple.Contacts");
30array.AddSubString("---");
31array.AddSubString("2009-01-13 22:25:58 +0100");
32array.AddSubUInt(106);
33array.AddSubString("___EmptyParameterString___");
34
35msync.Send(array)
36array = msync.Receive()
37print array.ToXml()
38
39
40