rclone-api 1.1.79__py2.py3-none-any.whl → 1.1.80__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rclone_api/mount.py +9 -0
- {rclone_api-1.1.79.dist-info → rclone_api-1.1.80.dist-info}/METADATA +1 -1
- {rclone_api-1.1.79.dist-info → rclone_api-1.1.80.dist-info}/RECORD +7 -7
- {rclone_api-1.1.79.dist-info → rclone_api-1.1.80.dist-info}/LICENSE +0 -0
- {rclone_api-1.1.79.dist-info → rclone_api-1.1.80.dist-info}/WHEEL +0 -0
- {rclone_api-1.1.79.dist-info → rclone_api-1.1.80.dist-info}/entry_points.txt +0 -0
- {rclone_api-1.1.79.dist-info → rclone_api-1.1.80.dist-info}/top_level.txt +0 -0
rclone_api/mount.py
CHANGED
|
@@ -294,7 +294,9 @@ class MultiMountFileChunker:
|
|
|
294
294
|
chunk_size: SizeSuffix,
|
|
295
295
|
mounts: list[Mount],
|
|
296
296
|
executor: ThreadPoolExecutor,
|
|
297
|
+
verbose: bool | None = None,
|
|
297
298
|
) -> None:
|
|
299
|
+
from rclone_api.util import get_verbose
|
|
298
300
|
self.filename = filename
|
|
299
301
|
self.chunk_size = chunk_size
|
|
300
302
|
self.executor = executor
|
|
@@ -302,6 +304,7 @@ class MultiMountFileChunker:
|
|
|
302
304
|
self.mounts_availabe: list[Mount] = mounts
|
|
303
305
|
self.semaphore = Semaphore(len(mounts))
|
|
304
306
|
self.lock = Lock()
|
|
307
|
+
self.verbose = get_verbose(verbose)
|
|
305
308
|
|
|
306
309
|
def close(self) -> None:
|
|
307
310
|
self.executor.shutdown(wait=False, cancel_futures=True)
|
|
@@ -310,6 +313,8 @@ class MultiMountFileChunker:
|
|
|
310
313
|
executor.submit(lambda: mount.close())
|
|
311
314
|
|
|
312
315
|
def fetch(self, offset: int, size: int) -> bytes | Exception:
|
|
316
|
+
if self.verbose:
|
|
317
|
+
print(f"Fetching data range: offset={offset}, size={size}")
|
|
313
318
|
try:
|
|
314
319
|
try:
|
|
315
320
|
assert (
|
|
@@ -341,6 +346,10 @@ class MultiMountFileChunker:
|
|
|
341
346
|
def task(
|
|
342
347
|
offset=start, size=chunk_size, path=path, mount=mount
|
|
343
348
|
) -> bytes | Exception:
|
|
349
|
+
if self.verbose:
|
|
350
|
+
print(
|
|
351
|
+
f"Fetching chunk: offset={offset}, size={size}, path={path}"
|
|
352
|
+
)
|
|
344
353
|
try:
|
|
345
354
|
with path.open("rb") as f:
|
|
346
355
|
f.seek(offset)
|
|
@@ -11,7 +11,7 @@ rclone_api/exec.py,sha256=Pd7pUBd8ib5MzqvMybG2DQISPRbDRu20VjVRL2mLAVY,1076
|
|
|
11
11
|
rclone_api/file.py,sha256=EP5yT2dZ0H2p7CY5n0y5k5pHhIliV25pm8KOwBklUTk,1863
|
|
12
12
|
rclone_api/filelist.py,sha256=xbiusvNgaB_b_kQOZoHMJJxn6TWGtPrWd2J042BI28o,767
|
|
13
13
|
rclone_api/group_files.py,sha256=H92xPW9lQnbNw5KbtZCl00bD6iRh9yRbCuxku4j_3dg,8036
|
|
14
|
-
rclone_api/mount.py,sha256=
|
|
14
|
+
rclone_api/mount.py,sha256=1OijhIJ5i-adUTYUeTxq_ZdlfYWYnnZZU281pIAYFOE,13946
|
|
15
15
|
rclone_api/process.py,sha256=rBj_S86jC6nqCYop-jq8r9eMSteKeObxUrJMgH8LZvI,5084
|
|
16
16
|
rclone_api/rclone.py,sha256=3z1RY6AvYWL4aRuyY1aguXvake8bA99exemQc5Itenk,48754
|
|
17
17
|
rclone_api/remote.py,sha256=O9WDUFQy9f6oT1HdUbTixK2eg0xtBBm8k4Xl6aa6K00,431
|
|
@@ -33,9 +33,9 @@ rclone_api/s3/chunk_types.py,sha256=LbXayXY1KgVU1LkdbASD_BQ7TpVpwVnzMjtz--8LBaE,
|
|
|
33
33
|
rclone_api/s3/create.py,sha256=wgfkapv_j904CfKuWyiBIWJVxfAx_ftemFSUV14aT68,3149
|
|
34
34
|
rclone_api/s3/types.py,sha256=yBnJ38Tjk6RlydJ-sqZ7DSfyFloy8KDYJ0mv3vlOzLE,1388
|
|
35
35
|
rclone_api/s3/upload_file_multipart.py,sha256=y9azNAU8QH5Ovwz33V2HZwNmJdlFjJg-jrXLZ1gtMds,10364
|
|
36
|
-
rclone_api-1.1.
|
|
37
|
-
rclone_api-1.1.
|
|
38
|
-
rclone_api-1.1.
|
|
39
|
-
rclone_api-1.1.
|
|
40
|
-
rclone_api-1.1.
|
|
41
|
-
rclone_api-1.1.
|
|
36
|
+
rclone_api-1.1.80.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
|
37
|
+
rclone_api-1.1.80.dist-info/METADATA,sha256=jgvD0H-1sXZK-3Q1CTXgPuPsa7naFRJ7E3Oe4ZY6dz4,4537
|
|
38
|
+
rclone_api-1.1.80.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
|
|
39
|
+
rclone_api-1.1.80.dist-info/entry_points.txt,sha256=TV8kwP3FRzYwUEr0RLC7aJh0W03SAefIJNXTJ-FdMIQ,200
|
|
40
|
+
rclone_api-1.1.80.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
|
|
41
|
+
rclone_api-1.1.80.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|