Source code for b2sdk.sync.folder

######################################################################
#
# File: b2sdk/sync/folder.py
#
# Copyright 2019 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################

import logging
import os
import platform
import re
import sys

from abc import ABCMeta, abstractmethod
from b2sdk.exception import CommandError
from .exception import EnvironmentEncodingError, UnSyncableFilename
from .file import File, B2File, FileVersion, B2FileVersion
from .scan_policies import DEFAULT_SCAN_MANAGER
from ..utils import fix_windows_path_limit, get_file_mtime, is_file_readable

DRIVE_MATCHER = re.compile(r"^([A-Za-z]):([/\\])")
ABSOLUTE_PATH_MATCHER = re.compile(r"^(/)|^(\\)")
RELATIVE_PATH_MATCHER = re.compile(
                           # "abc" and "xyz" represent anything, including "nothing"
    r"^(\.\.[/\\])|" +     # ../abc or ..\abc
    r"^(\.[/\\])|" +       # ./abc or .\abc
    r"([/\\]\.\.[/\\])|" + # abc/../xyz or abc\..\xyz or abc\../xyz or abc/..\xyz
    r"([/\\]\.[/\\])|" +   # abc/./xyz or abc\.\xyz or abc\./xyz or abc/.\xyz
    r"([/\\]\.\.)$|" +     # abc/.. or abc\..
    r"([/\\]\.)$|" +       # abc/. or abc\. 
    r"^(\.\.)$|" +         # just ".."
    r"([/\\][/\\])|" +     # abc\/xyz or abc/\xyz or abc//xyz or abc\\xyz
    r"^(\.)$"              # just "."
)  # yapf: disable

logger = logging.getLogger(__name__)


[docs]class AbstractFolder(metaclass=ABCMeta): """ Interface to a folder full of files, which might be a B2 bucket, a virtual folder in a B2 bucket, or a directory on a local file system. Files in B2 may have multiple versions, while files in local folders have just one. """
[docs] @abstractmethod def all_files(self, reporter, policies_manager=DEFAULT_SCAN_MANAGER): """ Return an iterator over all of the files in the folder, in the order that B2 uses. It also performs filtering using policies manager. No matter what the folder separator on the local file system is, "/" is used in the returned file names. If a file is found, but does not exist (for example due to a broken symlink or a race), reporter will be informed about each such problem. :param reporter: a place to report errors :param policies_manager: a policies manager object """
[docs] @abstractmethod def folder_type(self): """ Return one of: 'b2', 'local'. :rtype: str """
[docs] @abstractmethod def make_full_path(self, file_name): """ Return the full path to the file. :param file_name: a file name :type file_name: str :rtype: str """
[docs]def join_b2_path(b2_dir, b2_name): """ Like os.path.join, but for B2 file names where the root directory is called ''. :param b2_dir: a directory path :type b2_dir: str :param b2_name: a file name :type b2_name: str """ if b2_dir == '': return b2_name else: return b2_dir + '/' + b2_name
[docs]class LocalFolder(AbstractFolder): """ Folder interface to a directory on the local machine. """
[docs] def __init__(self, root): """ Initialize a new folder. :param root: path to the root of the local folder. Must be unicode. :type root: str """ if not isinstance(root, str): raise ValueError('folder path should be unicode: %s' % repr(root)) self.root = fix_windows_path_limit(os.path.abspath(root))
[docs] def folder_type(self): """ Return folder type. :rtype: str """ return 'local'
[docs] def all_files(self, reporter, policies_manager=DEFAULT_SCAN_MANAGER): """ Yield all files. :param reporter: a place to report errors :param policies_manager: a policy manager object, default is DEFAULT_SCAN_MANAGER """ for file_object in self._walk_relative_paths(self.root, '', reporter, policies_manager): yield file_object
[docs] def make_full_path(self, file_name): """ Convert a file name into an absolute path, ensure it is not outside self.root :param file_name: a file name :type file_name: str """ # Fix OS path separators file_name = file_name.replace('/', os.path.sep) # Generate the full path to the file full_path = os.path.normpath(os.path.join(self.root, file_name)) # Get the common prefix between the new full_path and self.root common_prefix = os.path.commonprefix([full_path, self.root]) # Ensure the new full_path is inside the self.root directory if common_prefix != self.root: raise UnSyncableFilename("illegal file name", full_path) return full_path
[docs] def ensure_present(self): """ Make sure that the directory exists. """ if not os.path.exists(self.root): try: os.mkdir(self.root) except OSError: raise Exception('unable to create directory %s' % (self.root,)) elif not os.path.isdir(self.root): raise Exception('%s is not a directory' % (self.root,))
[docs] def ensure_non_empty(self): """ Make sure that the directory exists and is non-empty. """ self.ensure_present() if not os.listdir(self.root): raise CommandError( 'Directory %s is empty. Use --allowEmptySource to sync anyway.' % (self.root,) )
@classmethod def _walk_relative_paths(cls, local_dir, b2_dir, reporter, policies_manager): """ Yield a File object for each of the files anywhere under this folder, in the order they would appear in B2, unless the path is excluded by policies manager. :param local_dir: the local directory to list files in :param b2_dir: the B2 path of this directory, or '' if at the root :param reporter: a place to report errors :param policies_manager: a manager for polices scan results :return: """ if not isinstance(local_dir, str): raise ValueError('folder path should be unicode: %s' % repr(local_dir)) # Collect the names. We do this before returning any results, because # directories need to sort as if their names end in '/'. # # With a directory containing 'a', 'a.txt', and 'a0.txt', with 'a' being # a directory containing 'b.txt', and 'c.txt', the results returned # should be: # # a.txt # a/b.txt # a/c.txt # a0.txt # # This is because in Unicode '.' comes before '/', which comes before '0'. names = [] # list of (name, local_path, b2_path) for name in os.listdir(local_dir): # We expect listdir() to return unicode if dir_path is unicode. # If the file name is not valid, based on the file system # encoding, then listdir() will return un-decoded str/bytes. if not isinstance(name, str): name = cls._handle_non_unicode_file_name(name) if '/' in name: raise UnSyncableFilename( "sync does not support file names that include '/'", "%s in dir %s" % (name, local_dir) ) local_path = os.path.join(local_dir, name) b2_path = join_b2_path(b2_dir, name) # Skip broken symlinks or other inaccessible files if not is_file_readable(local_path, reporter): continue if policies_manager.exclude_all_symlinks and os.path.islink(local_path): if reporter is not None: reporter.symlink_skipped(local_path) continue if os.path.isdir(local_path): name += '/' if policies_manager.should_exclude_directory(b2_path): continue else: if policies_manager.should_exclude_file(b2_path): continue names.append((name, local_path, b2_path)) # Yield all of the answers. # # Sorting the list of triples puts them in the right order because 'name', # the sort key, is the first thing in the triple. for (name, local_path, b2_path) in sorted(names): if name.endswith('/'): for subdir_file in cls._walk_relative_paths( local_path, b2_path, reporter, policies_manager ): yield subdir_file else: # Check that the file still exists and is accessible, since it can take a long time # to iterate through large folders if is_file_readable(local_path, reporter): file_mod_time = get_file_mtime(local_path) file_size = os.path.getsize(local_path) version = FileVersion(local_path, b2_path, file_mod_time, 'upload', file_size) if policies_manager.should_exclude_file_version(version): continue yield File(b2_path, [version]) @classmethod def _handle_non_unicode_file_name(cls, name): """ Decide what to do with a name returned from os.listdir() that isn't unicode. We think that this only happens when the file name can't be decoded using the file system encoding. Just in case that's not true, we'll allow all-ascii names. """ # if it's all ascii, allow it if all(b <= 127 for b in name): return name raise EnvironmentEncodingError(repr(name), sys.getfilesystemencoding()) def __repr__(self): return 'LocalFolder(%s)' % (self.root,)
[docs]class B2Folder(AbstractFolder): """ Folder interface to b2. """
[docs] def __init__(self, bucket_name, folder_name, api): """ :param bucket_name: a name of the bucket :type bucket_name: str :param folder_name: a folder name :type folder_name: str :param api: an API object :type api: b2sdk.api.B2Api """ self.bucket_name = bucket_name self.folder_name = folder_name self.bucket = api.get_bucket_by_name(bucket_name) self.prefix = '' if self.folder_name == '' else self.folder_name + '/'
[docs] def all_files(self, reporter, policies_manager=DEFAULT_SCAN_MANAGER): """ Yield all files. :param reporter: a place to report errors :param policies_manager: a policies manager object, default is DEFAULT_SCAN_MANAGER """ current_name = None current_versions = [] current_file_version_info = None for file_version_info, _ in self.bucket.ls( self.folder_name, show_versions=True, recursive=True, ): if current_file_version_info is None: current_file_version_info = file_version_info assert file_version_info.file_name.startswith(self.prefix) if file_version_info.action == 'start': continue file_name = file_version_info.file_name[len(self.prefix):] if policies_manager.should_exclude_file(file_name): continue # Do not allow relative paths in file names if RELATIVE_PATH_MATCHER.search(file_name): raise UnSyncableFilename( "sync does not support file names that include relative paths", file_name ) # Do not allow absolute paths in file names if ABSOLUTE_PATH_MATCHER.search(file_name): raise UnSyncableFilename( "sync does not support file names with absolute paths", file_name ) # On Windows, do not allow drive letters in file names if platform.system() == "Windows" and DRIVE_MATCHER.search(file_name): raise UnSyncableFilename( "sync does not support file names with drive letters", file_name ) if current_name != file_name and current_name is not None and current_versions: yield B2File(current_name, current_versions) current_versions = [] current_name = file_name file_version = B2FileVersion(file_version_info) if policies_manager.should_exclude_file_version(file_version): continue current_versions.append(file_version) if current_name is not None and current_versions: yield B2File(current_name, current_versions)
[docs] def folder_type(self): """ Return folder type. :rtype: str """ return 'b2'
[docs] def make_full_path(self, file_name): """ Make an absolute path from a file name. :param file_name: a file name :type file_name: str """ if self.folder_name == '': return file_name else: return self.folder_name + '/' + file_name
def __str__(self): return 'B2Folder(%s, %s)' % (self.bucket_name, self.folder_name)