-
Notifications
You must be signed in to change notification settings - Fork 67
/
afc.py
313 lines (262 loc) · 7.57 KB
/
afc.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#!/usr/bin/python
# coding: utf-8
# Copyright (c) 2013 Mountainstorm
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
from MobileDevice import *
from amdevice import *
from ctypes import *
from posixpath import *
import stat
import os
def _stat_from_afcdict(afcdict):
class AFCLStat(object):
pass
retval = AFCLStat()
name = c_char_p()
value = c_char_p()
while AFCKeyValueRead(afcdict, byref(name), byref(value)) == MDERR_OK:
if name.value is None or value.value is None:
break
strname = name.value.decode(u'utf-8')
if strname == u'st_ifmt':
modes = {
u'S_IFSOCK': stat.S_IFSOCK,
u'S_IFLNK': stat.S_IFLNK,
u'S_IFREG': stat.S_IFREG,
u'S_IFBLK': stat.S_IFBLK,
u'S_IFDIR': stat.S_IFDIR,
u'S_IFCHR': stat.S_IFCHR,
u'S_IFIFO': stat.S_IFIFO
}
v = value.value.decode(u'utf-8')
if v not in modes:
raise RuntimeError(u'Unknown file type:', v)
setattr(
retval,
strname,
modes[v]
)
elif strname == u'st_mtime' or strname == u'st_birthtime':
setattr(
retval,
strname,
value.value.decode(u'utf-8')[:10]
)
else:
setattr(
retval,
strname,
value.value.decode(u'utf-8')
)
return retval
class AFCFile(object):
# XXX creation, read, write, seek tell etc
def __init__(self, afc, path, mode):
self.afc_con = afc.get_con()
self.mode = 0
if mode.find(u'r') != -1:
self.mode |= 0x1
if mode.find(u'w') != -1:
self.mode |= 0x2
if mode.find(u'a') != -1:
self.mode |= 0x3
self.f = AFCFileRef()
self.closed = True
if AFCFileRefOpen(
self.afc_con,
path.encode(u'utf-8'),
self.mode,
byref(self.f)) != MDERR_OK:
raise IOError(u'Unable to open file:', path, mode)
self.closed = False
if mode.find(u'a') != -1:
size = int(afc.lstat(path).st_size)
self.seek(size)
def __del__(self):
self.close()
def close(self):
if not self.closed:
AFCFileRefClose(self.afc_con, self.f)
self.closed = True
def flush(self):
pass
def readable(self):
return self.mode & 0x1
def readline(self, limit=-1):
raise NotImplementedError()
def readlines(self, limit=-1):
raise NotImplementedError()
def seek(self, offset, whence=os.SEEK_SET):
res = AFCFileRefSeek(
self.afc_con,
self.f,
offset,
whence)
if res != MDERR_OK:
raise ValueError(u'Unable to set file location %s' % res)
def seekable(self):
return True
def tell(self):
idx = CFIndex()
if AFCFileRefTell(self.afc_con, self.f, byref(idx)) != MDERR_OK:
raise ValueError(u'Unable to read file location')
return idx.value
def truncate(size=None):
if size is None:
size = self.tell()
if AFCFileRefSetFileSize(self.afc_con, self.f, size) != MDERR_OK:
raise ValueError(u'Unable to truncate file')
def writable(self):
return self.mode & 0x2
def writelines(self, lines):
raise NotImplementedError()
def lock(self):
if AFCFileRefLock(self.afc_con, self.f) != MDERR_OK:
raise ValueError(u'Unable to lock file')
def unlock(self):
if AFCFileRefUnlock(self.afc_con, self.f) != MDERR_OK:
raise ValueError(u'Unable to unlock file')
def read(self, n=-1):
retval = ''
br = 0
buflen = c_uint32(4096)
buf = (c_char * buflen.value)()
while br < n or n == -1:
buflen.value = 4096
if AFCFileRefRead(
self.afc_con,
self.f,
buf,
byref(buflen)
) != MDERR_OK or buflen.value == 0:
break # eof
retval += buf.raw[:buflen.value]
br += buflen.value
return retval
def readall(self):
return self.read()
def readinto(self, b):
raise NotImplementedError()
def write(self, b):
buflen = c_uint32(len(b))
buf = c_char_p(b)
if AFCFileRefWrite(
self.afc_con,
self.f,
buf,
buflen
) != MDERR_OK:
raise RuntimeError(u'Error during write')
class AFC(object):
def __init__(self, s):
self.s = s
self.afc_con = AFCConnectionRef()
if AFCConnectionOpen(self.s, 0, byref(self.afc_con)) != MDERR_OK:
raise RuntimeError(u'Unable to open AFC connection')
def get_con(self):
return self.afc_con
def disconnect(self):
AFCConnectionClose(self.afc_con)
def link(self, target, link_name):
if AFCLinkPath(
self.afc_con,
1, # hard
target.encode(u'utf-8'),
link_name.encode(u'utf-8')
) != MDERR_OK:
raise OSError(u'Unable to create hard link:', target, link_name)
return True
# typically you get a class with the following members
# st_mtime, st_blocks, st_nlink, st_birthtime, st_ifmt, st_size
def lstat(self, path):
info = AFCDictionaryRef()
if AFCFileInfoOpen(
self.afc_con,
path.encode(u'utf-8'),
byref(info)
) != MDERR_OK:
raise OSError(u'Unable to open path:', path)
retval = _stat_from_afcdict(info)
AFCKeyValueClose(info)
return retval
def listdir(self, path):
afc_dir = AFCDirectoryRef()
if AFCDirectoryOpen(
self.afc_con,
path.encode(u'utf-8'),
byref(afc_dir)
) != MDERR_OK:
raise OSError(u'Unable to open AFC directory:', path)
retval = []
name = c_char_p()
while AFCDirectoryRead(self.afc_con, afc_dir, byref(name)) == MDERR_OK:
if name.value is None:
break
path = name.value.decode(u'utf-8')
if path != u'.' and path != u'..':
retval.append(path)
# XXX do we need to free buffer on error
AFCDirectoryClose(self.afc_con, afc_dir)
return retval
def mkdir(self, path):
if AFCDirectoryCreate(self.afc_con, path) != MDERR_OK:
raise OSError(u'Unable to create directory:', path)
def makedirs(self, path):
raise NotImplementedError()
def readlink(self, path):
s = self.lstat(path)
if not hasattr(s, u'LinkTarget'):
raise OSError(u'Path is not symlink:', path)
return s.LinkTarget
def remove(self, path):
return self.unlink(path)
def removedirs(self, path):
raise NotImplementedError()
def rename(self, src, dst):
if AFCRenamePath(
self.afc_con,
src.encode(u'utf-8'),
dst.encode(u'utf-8')
) != MDERR_OK:
raise OSError(u'Unable to rename file:', src, dst)
def renames(self, old, new):
raise NotImplementedError()
def rmdir(self, path):
return self.unlink(path)
def stat(self, path):
retval = self.lstat(path)
if hasattr(retval, u'LinkTarget'):
# its a symlink - so stat the link target
retval = self.lstat(retval.LinkTarget)
return retval
def symlink(self, target, link_name):
if AFCLinkPath(
self.afc_con,
2, # soft
target.encode(u'utf-8'),
link_name.encode(u'utf-8')
) != MDERR_OK:
raise OSError(u'Unable to create symlink:', target, link_name)
return True
def unlink(self, path):
if AFCRemovePath(self.afc_con, path.encode(u'utf-8')) != MDERR_OK:
raise OSError(u'Unable to remove file:', path)
def open(self, path, mode):
return AFCFile(self, path, mode)