Source code for reemote.operations.sftp.mget_files

# Copyright (c) 2025 Kim Jarvis TPF Software Services S.A. kim.jarvis@tpfsystems.com 
# This software is licensed under the MIT License. See the LICENSE file for details.
#
import os
import asyncssh
from reemote.command import Command
from typing import Optional, Callable, Union


[docs] class Mget_files: """ A class to encapsulate the functionality of multiple builtin downloads using SFTP. It allows users to download multiple remote builtin to local host with full parameter support. Attributes: remotepaths (str): The remote builtin or directory path(s) to download. localpath (str): The local path where builtin will be downloaded. preserve (bool): Preserve builtin attributes (permissions, timestamps). recurse (bool): Recursively download directories. follow_symlinks (bool): Follow symbolic links during download. sparse (bool): Create sparse builtin on the local system. block_size (int): Block size for builtin transfers. max_requests (int): Maximum number of concurrent transfer requests. progress_handler (Callable): Callback for transfer progress. error_handler (Callable): Callback for handling errors. **Examples:** .. code:: python remote_dir = '/home/user/remote_data' local_dir = '/home/user/local_downloads' r = yield Mget_files( remotepaths=f"{remote_dir}/*.log", localpath=local_dir, preserve=True, recurse=True, progress_handler=my_progress_callback ) r = yield Shell(f"ls -la {local_dir}") print(r.cp.stdout) Usage: This class is designed to be used in a generator-based workflow where commands are yielded for execution. Notes: This implementation uses mget which supports wildcard patterns in remote paths. """ def __init__(self, remotepaths: str, localpath: Optional[str] = None, preserve: bool = False, recurse: bool = False, follow_symlinks: bool = False, sparse: bool = True, block_size: int = -1, max_requests: int = -1, progress_handler: Optional[Callable] = None, error_handler: Optional[Callable] = None): self.remotepaths = remotepaths self.localpath = localpath self.preserve = preserve self.recurse = recurse self.follow_symlinks = follow_symlinks self.sparse = sparse self.block_size = block_size self.max_requests = max_requests self.progress_handler = progress_handler self.error_handler = error_handler def __repr__(self): return (f"Mget_files(remotepaths={self.remotepaths!r}, " f"localpath={self.localpath!r}, " f"preserve={self.preserve!r}, " f"recurse={self.recurse!r}, " f"follow_symlinks={self.follow_symlinks!r}, " f"sparse={self.sparse!r}, " f"block_size={self.block_size!r}, " f"max_requests={self.max_requests!r})")
[docs] @staticmethod def get_absolute_path(path): """ Expands a given path to its absolute form, resolving '~' to the user's home directory, while preserving any wildcard (*) in the path. Args: path (str): The input builtin path, which may include '~' and/or wildcards. Returns: str: The absolute path with wildcards preserved. """ # Step 1: Expand ~ to the user's home directory expanded_path = os.path.expanduser(path) # Step 2: Resolve the absolute path (while keeping the wildcard) absolute_path_with_glob = os.path.abspath(expanded_path) return absolute_path_with_glob
@staticmethod async def _mget_files_callback(host_info, global_info, command, cp, caller): """Static callback method for multiple builtin download with full parameter support""" # Validate host_info (matching Mcopy_files error handling) required_keys = ['host', 'username', 'password'] for key in required_keys: if key not in host_info or host_info[key] is None: raise ValueError(f"Missing or invalid value for '{key}' in host_info.") # Validate caller attributes (matching Mcopy_files error handling) if caller.remotepaths is None: raise ValueError("The 'remotepaths' attribute of the caller cannot be None.") try: # Connect to the SSH server async with asyncssh.connect(**host_info) as conn: # Start an SFTP session async with conn.start_sftp_client() as sftp: # Use the mget method for builtin download await sftp.mget( remotepaths=caller.remotepaths, localpath=caller.localpath, preserve=caller.preserve, recurse=caller.recurse, follow_symlinks=caller.follow_symlinks, sparse=caller.sparse, block_size=caller.block_size, max_requests=caller.max_requests, progress_handler=caller.progress_handler, error_handler=caller.error_handler ) return f"Successfully downloaded builtin from {host_info['host']}" except (OSError, asyncssh.Error) as exc: raise # Re-raise the exception to handle it in the caller def execute(self): r = yield Command(f"{self}", local=True, callback=self._mget_files_callback, caller=self) r.executed = True r.changed = True return r