From 360b7316b520baeae11c98cbd6423029141c2137 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Fri, 9 Apr 2010 18:00:51 -0500 Subject: Finished wrapping afc interface. Implemented open(), lock(), link(), and symlink(). --- cython/afc.pxi | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) (limited to 'cython') diff --git a/cython/afc.pxi b/cython/afc.pxi index ff5c2b0..398ea39 100644 --- a/cython/afc.pxi +++ b/cython/afc.pxi @@ -67,6 +67,10 @@ cdef extern from "libimobiledevice/afc.h": afc_error_t afc_file_tell(afc_client_t client, uint64_t handle, uint64_t *position) afc_error_t afc_file_truncate(afc_client_t client, uint64_t handle, uint64_t newsize) +LOCK_SH = AFC_LOCK_SH +LOCK_EX = AFC_LOCK_EX +LOCK_UN = AFC_LOCK_UN + cdef class AfcError(BaseError): def __init__(self, *args, **kwargs): self._lookup_table = { @@ -115,6 +119,9 @@ cdef class AfcFile(Base): cpdef close(self): self.handle_error(afc_file_close(self._client._c_client, self._c_handle)) + cpdef lock(self, int operation): + self.handle_error(afc_file_lock(self._client._c_client, self._c_handle, operation)) + cpdef seek(self, int64_t offset, int whence): self.handle_error(afc_file_seek(self._client._c_client, self._c_handle, offset, whence)) @@ -208,14 +215,26 @@ cdef class AfcClient(BaseService): return result - cpdef AfcFile open(self, bytes filename): + cpdef AfcFile open(self, bytes filename, bytes mode='r'): cdef: - str mode = 'r' afc_file_mode_t c_mode uint64_t handle AfcFile f - if mode == 'r': + if mode == 'r': c_mode = AFC_FOPEN_RDONLY + elif mode == 'r+': + c_mode = AFC_FOPEN_RW + elif mode == 'w': + c_mode = AFC_FOPEN_WRONLY + elif mode == 'w+': + c_mode = AFC_FOPEN_WR + elif mode == 'a': + c_mode = AFC_FOPEN_APPEND + elif mode == 'a+': + c_mode = AFC_FOPEN_RDAPPEND + else: + raise ValueError("mode string must be 'r', 'r+', 'w', 'w+', 'a', or 'a+'") + self.handle_error(afc_file_open(self._c_client, filename, c_mode, &handle)) f = AfcFile.__new__(AfcFile) f._c_handle = handle @@ -257,5 +276,11 @@ cdef class AfcClient(BaseService): cpdef truncate(self, bytes path, uint64_t newsize): self.handle_error(afc_truncate(self._c_client, path, newsize)) + cpdef link(self, bytes source, bytes link_name): + self.handle_error(afc_make_link(self._c_client, AFC_HARDLINK, source, link_name)) + + cpdef symlink(self, bytes source, bytes link_name): + self.handle_error(afc_make_link(self._c_client, AFC_SYMLINK, source, link_name)) + cpdef set_file_time(self, bytes path, uint64_t mtime): self.handle_error(afc_set_file_time(self._c_client, path, mtime)) -- cgit v1.1-32-gdbae