forked from ParallelSSH/ssh2-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfileinfo.pyx
More file actions
94 lines (75 loc) · 2.42 KB
/
fileinfo.pyx
File metadata and controls
94 lines (75 loc) · 2.42 KB
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
# This file is part of ssh2-python.
# Copyright (C) 2017-2020 Panos Kittenis
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, version 2.1.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Fileinfo attributes returned by SCP functions in libssh2 >= 1.7"""
from libc.stdlib cimport malloc, free
cimport c_ssh2
cdef class FileInfo:
"""Representation of stat structure - libssh2 >= 1.7"""
def __cinit__(self):
self._stat = <c_ssh2.libssh2_struct_stat *>malloc(
sizeof(c_ssh2.libssh2_struct_stat))
if self._stat is NULL:
raise MemoryError
def __dealloc__(self):
free(self._stat)
@property
def st_size(self):
return self._stat.st_size
@property
def st_mode(self):
return self._stat.st_mode
@property
def st_ino(self):
return self._stat.st_ino
@property
def st_nlink(self):
return self._stat.st_nlink
@property
def st_uid(self):
return self._stat.st_uid
@property
def st_gid(self):
return self._stat.st_gid
@property
def st_rdev(self):
return self._stat.st_rdev
@property
def st_blksize(self):
"""This property is not supported by Windows platforms.
Always returns ``None`` on Windows.
"""
IF UNAME_SYSNAME != 'Windows':
return self._stat.st_blksize
ELSE:
return None
@property
def st_blocks(self):
"""This property is not supported by Windows platforms.
Always returns ``None`` on Windows.
"""
IF UNAME_SYSNAME != 'Windows':
return self._stat.st_blocks
ELSE:
return None
@property
def st_atime(self):
return self._stat.st_atime
@property
def st_mtime(self):
return self._stat.st_mtime
@property
def st_ctime(self):
return self._stat.st_ctime