diff options
| author | 2009-04-13 08:48:00 -0700 | |
|---|---|---|
| committer | 2009-04-13 08:48:00 -0700 | |
| commit | 6671ca3d6de6a1fd27853e3b1ce7a81d568703f0 (patch) | |
| tree | 735c5ace7ed57cd4e19f2fde423b22e6104eaa98 /dev/msync.py | |
| parent | bd31783d7fde0b5bd101f4a3f97ca1aca2aa6fab (diff) | |
| parent | 288929f45cb2641690879b52ec514097995cd41a (diff) | |
| download | libimobiledevice-6671ca3d6de6a1fd27853e3b1ce7a81d568703f0.tar.gz libimobiledevice-6671ca3d6de6a1fd27853e3b1ce7a81d568703f0.tar.bz2 | |
Merged in Jonathan's libplist libiphone. [#2 state:resolved]
Diffstat (limited to 'dev/msync.py')
| -rwxr-xr-x | dev/msync.py | 40 |
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 | |||
| 3 | from libiphone.iPhone import * | ||
| 4 | |||
| 5 | # get msync client | ||
| 6 | def 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 | |||
| 22 | msync = GetMobileSyncClient() | ||
| 23 | |||
| 24 | if not msync : | ||
| 25 | exit(1) | ||
| 26 | |||
| 27 | array = PListNode(PLIST_ARRAY) | ||
| 28 | array.AddSubString("SDMessageSyncDataClassWithDevice") | ||
| 29 | array.AddSubString("com.apple.Contacts"); | ||
| 30 | array.AddSubString("---"); | ||
| 31 | array.AddSubString("2009-01-13 22:25:58 +0100"); | ||
| 32 | array.AddSubUInt(106); | ||
| 33 | array.AddSubString("___EmptyParameterString___"); | ||
| 34 | |||
| 35 | msync.Send(array) | ||
| 36 | array = msync.Receive() | ||
| 37 | print array.ToXml() | ||
| 38 | |||
| 39 | |||
| 40 | |||
