-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.py
388 lines (319 loc) · 8.32 KB
/
util.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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
"""
Utilities for class imports, filesystem packaging, serialization and
deserialization used in other modules.
Attributes
----------
ID_SYMBOLS : str
Symbols used to generate data node id.
ID_LENGTH : int
Length of data node id.
"""
import os
import sys
import csv
import random
import string
import tarfile
from typing import List, Any, Tuple
from io import BytesIO, IOBase
from importlib import import_module
def path_join(first: str, *args: List[str]) -> str:
"""
Join paths and normalize.
Parameters
----------
first : str
Base path.
args : List[str]
Path segments.
Returns
-------
str:
Normalized path.
"""
return os.path.normpath(os.path.join(first, *args))
def import_class(path: str) -> object:
"""
Import python class using path in format 'package.subpackage.Class'.
Parameters
----------
path : str
Path to class in format 'package.subpackage.Class'.
Returns
-------
object:
Imported class.
"""
parts = path.split('.')
package_parts, klass = parts[:-1], parts[-1]
if package_parts:
return getattr(import_module('.'.join(package_parts)), klass)
return getattr(sys.modules[__name__], klass)
class CommandError(Exception):
"""
User related error to used in python part of DFS API
"""
pass
ID_SYMBOLS = string.digits + 'abcdef'
ID_LENGTH = 6
def gen_id() -> str:
"""
Generate data node id.
Returns
-------
str:
Id of data node.
"""
return ''.join(random.choice(ID_SYMBOLS) for _ in range(ID_LENGTH))
def package(path: str) -> bytes:
"""
Tarball and gzip contents under path.
Parameters
----------
path : str
Path to directory of file to package.
Returns
-------
bytes:
Compressed tarball of given path.
"""
packaged = BytesIO()
with tarfile.open(fileobj=packaged, mode='w|gz') as tar:
tar.add(path, '/')
return packaged.getvalue()
def unpack(package: bytes, path: str):
"""
Read package as gzip compressed tarball and extract its contents
to path.
Parameters
----------
package : bytes
Compressed tarball.
path : str
Path to extract contents.
"""
packaged = BytesIO(package)
with tarfile.open(fileobj=packaged, mode='r|gz') as tar:
def is_within_directory(directory, target):
abs_directory = os.path.abspath(directory)
abs_target = os.path.abspath(target)
prefix = os.path.commonprefix([abs_directory, abs_target])
return prefix == abs_directory
def safe_extract(tar, path=".", members=None, *, numeric_owner=False):
for member in tar.getmembers():
member_path = os.path.join(path, member.name)
if not is_within_directory(path, member_path):
raise Exception("Attempted Path Traversal in Tar File")
tar.extractall(path, members, numeric_owner=numeric_owner)
safe_extract(tar, path)
def deserialize(
stream: IOBase,
content_len: int,
remote_ip: str,
) -> Any:
"""
Deserialize stream using information from server.
Generic deserialization for following formats:
1. single utf-8 string without whitespaces
2. utf-8 string and raw byte data separated by first zero byte
3. two utf-8 string separated by first space in stream
4. utf-8 string and flag represented by single '!' and separated
by space
Parameters
----------
stream : IOBase
Stream of request body.
content_len : int
Length of request body.
remote_ip : str
IP address of client.
Returns
-------
Any:
One of the options described above
"""
it = iter(stream.read(content_len))
has_blob = False
path = b''
for b in it:
b = bytes([b])
if b == b' ':
break
if b == b'\0':
has_blob = True
break
path += b
else:
return (path.decode('utf-8'),) if path else ()
path = path.decode('utf-8')
if has_blob:
return path, bytes(it)
b = bytes([next(it)])
if b == b'!':
nb = bytes([nnext(it)])
if not nb:
return path, True
b += nb
b += bytes(it)
return path, b.decode('utf-8')
def serialize(data: Any) -> bytes:
"""
Serialize data with generic method.
Serialization is done by converting to string andencoding with
utf-8 for non-iterable types, and by joining with space and utf-8
encoding for iterable types.
Parameters
----------
data : Any
Data to serialize.
Returns
-------
bytes:
Serialized data.
"""
if data == None:
return b''
if type(data) == bytes:
return data
if type(data) == str:
return data.encode('utf-8')
try:
iterator = iter(data)
except TypeError:
return str(data).encode('utf-8')
return ' '.join(str(x) for x in iterator).encode('utf-8')
def deserialize_tuple(
stream: IOBase,
content_len: int,
remote_ip: str,
) -> Tuple[int, int, int]:
"""
Deserialize tuple returned by df.
Parameters
----------
stream : IOBase
Stream of request body.
content_len : int
Length of request body.
remote_ip : str
IP address of client.
Returns
-------
Tuple[int, int, int]:
Total, used and free memory in bytes.
"""
tmp = stream.read(content_len).decode('utf-8')
total, used, free = (int(x) for x in tmp.split())
return total, used, free
def deserialize_list(
stream: IOBase,
content_len: int,
remote_ip: str,
) -> List[str]:
"""
Deserialize list.
Parameters
----------
stream : IOBase
Stream of request body.
content_len : int
Length of request body.
remote_ip : str
IP address of client.
Returns
-------
List[str]:
Deserialized list.
"""
tmp = stream.read(content_len).decode('utf-8')
return tmp.split()
def deserialize_stat(
stream: IOBase,
content_len: int,
remote_ip: str,
) -> Tuple[str, int, int]:
"""
Deserialize tuple returned by stat.
Parameters
----------
stream : IOBase
Stream of request body.
content_len : int
Length of request body.
remote_ip : str
IP address of client.
Returns
-------
Tuple[str, int, int]:
Full path, size and mode.
"""
tmp = stream.read(content_len).decode('utf-8')
tmp = tmp.split()
return tmp[0], int(tmp[1]), int(tmp[2])
def deserialize_matrix(
stream: IOBase,
content_len: int,
remote_ip: str,
) -> List[List[str]]:
"""
Deserialize list of lists of strings.
Parameters
----------
stream : IOBase
Stream of request body.
content_len : int
Length of request body.
remote_ip : str
IP address of client.
Returns
-------
List[List[str]]:
List of lists.
"""
tmp = stream.read(content_len).decode('utf-8')
lines = tmp.split('\n')
return [l.split('\t') for l in lines]
def deserialize_join(
stream: IOBase,
content_len: int,
remote_ip: str,
) -> Tuple[str, str, str]:
"""
Deserialize data for NameNode.add_node().
Parameters
----------
stream : IOBase
Stream of request body.
content_len : int
Length of request body.
remote_ip : str
IP address of client.
Returns
-------
Tuple[str, str, str]:
Public ip, access url and id of data node.
"""
tmp = stream.read(content_len).decode('utf-8').split(' ')
public_url = None
if len(tmp) > 2:
public_url, port, id = tmp
else:
port, id = tmp
if ':' in port:
remote_ip, port = port.split(':')
url = 'http://' + remote_ip + ':' + port + '/'
return public_url, url, id
def serialize_matrix(data: List[List[str]]) -> bytes:
"""
Serialize list of lists.
Parameters
----------
data : List[List[str]]
Lists to serialize.
Returns
-------
bytes:
Serialized lists.
"""
lines = ['\t'.join([str(y) for y in x]) for x in data]
return '\n'.join(lines).encode('utf-8')