Source code for azure.storage.fileshare._file_client

# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
# pylint: disable=too-many-lines, too-many-public-methods
import functools
import time
from io import BytesIO
from typing import ( # pylint: disable=unused-import
    Optional, Union, IO, List, Dict, Any, Iterable, Tuple,
    TYPE_CHECKING
)


try:
    from urllib.parse import urlparse, quote, unquote
except ImportError:
    from urlparse import urlparse # type: ignore
    from urllib2 import quote, unquote # type: ignore

import six
from azure.core.exceptions import HttpResponseError
from azure.core.paging import ItemPaged  # pylint: disable=ungrouped-imports
from azure.core.tracing.decorator import distributed_trace

from ._generated import AzureFileStorage
from ._generated.models import FileHTTPHeaders
from ._shared.uploads import IterStreamer, FileChunkUploader, upload_data_chunks
from ._shared.base_client import StorageAccountHostsMixin, parse_connection_str, parse_query
from ._shared.request_handlers import add_metadata_headers, get_length
from ._shared.response_handlers import return_response_headers, process_storage_error
from ._shared.parser import _str
from ._parser import _get_file_permission, _datetime_to_str
from ._lease import ShareLeaseClient
from ._serialize import get_source_conditions, get_access_conditions, get_smb_properties, get_api_version
from ._deserialize import deserialize_file_properties, deserialize_file_stream, get_file_ranges_result
from ._models import HandlesPaged, NTFSAttributes  # pylint: disable=unused-import
from ._download import StorageStreamDownloader

if TYPE_CHECKING:
    from datetime import datetime
    from ._models import ShareProperties, ContentSettings, FileProperties, Handle
    from ._generated.models import HandleItem


def _upload_file_helper(
        client,
        stream,
        size,
        metadata,
        content_settings,
        validate_content,
        timeout,
        max_concurrency,
        file_settings,
        file_attributes="none",
        file_creation_time="now",
        file_last_write_time="now",
        file_permission=None,
        file_permission_key=None,
        **kwargs):
    try:
        if size is None or size < 0:
            raise ValueError("A content size must be specified for a File.")
        response = client.create_file(
            size,
            content_settings=content_settings,
            metadata=metadata,
            timeout=timeout,
            file_attributes=file_attributes,
            file_creation_time=file_creation_time,
            file_last_write_time=file_last_write_time,
            file_permission=file_permission,
            permission_key=file_permission_key,
            **kwargs
        )
        if size == 0:
            return response

        responses = upload_data_chunks(
            service=client,
            uploader_class=FileChunkUploader,
            total_size=size,
            chunk_size=file_settings.max_range_size,
            stream=stream,
            max_concurrency=max_concurrency,
            validate_content=validate_content,
            timeout=timeout,
            **kwargs
        )
        return sorted(responses, key=lambda r: r.get('last_modified'))[-1]
    except HttpResponseError as error:
        process_storage_error(error)


[docs]class ShareFileClient(StorageAccountHostsMixin): """A client to interact with a specific file, although that file may not yet exist. For more optional configuration, please click `here <https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.6.0b1/sdk/storage/azure-storage-file-share #optional-configuration>`_. :param str account_url: The URI to the storage account. In order to create a client given the full URI to the file, use the :func:`from_file_url` classmethod. :param share_name: The name of the share for the file. :type share_name: str :param str file_path: The file path to the file with which to interact. If specified, this value will override a file value specified in the file URL. :param str snapshot: An optional file snapshot on which to operate. This can be the snapshot ID string or the response returned from :func:`ShareClient.create_snapshot`. :param credential: The credential with which to authenticate. This is optional if the account URL already has a SAS token. The value can be a SAS token string, an instance of a AzureSasCredential from azure.core.credentials or an account shared access key. :keyword str api_version: The Storage API version to use for requests. Default value is '2019-07-07'. Setting to an older version may result in reduced feature compatibility. .. versionadded:: 12.1.0 :keyword str secondary_hostname: The hostname of the secondary endpoint. :keyword int max_range_size: The maximum range size used for a file upload. Defaults to 4*1024*1024. """ def __init__( # type: ignore self, account_url, # type: str share_name, # type: str file_path, # type: str snapshot=None, # type: Optional[Union[str, Dict[str, Any]]] credential=None, # type: Optional[Any] **kwargs # type: Any ): # type: (...) -> None try: if not account_url.lower().startswith('http'): account_url = "https://" + account_url except AttributeError: raise ValueError("Account URL must be a string.") parsed_url = urlparse(account_url.rstrip('/')) if not (share_name and file_path): raise ValueError("Please specify a share name and file name.") if not parsed_url.netloc: raise ValueError("Invalid URL: {}".format(account_url)) if hasattr(credential, 'get_token'): raise ValueError("Token credentials not supported by the File service.") path_snapshot = None path_snapshot, sas_token = parse_query(parsed_url.query) if not sas_token and not credential: raise ValueError( 'You need to provide either an account shared key or SAS token when creating a storage service.') try: self.snapshot = snapshot.snapshot # type: ignore except AttributeError: try: self.snapshot = snapshot['snapshot'] # type: ignore except TypeError: self.snapshot = snapshot or path_snapshot self.share_name = share_name self.file_path = file_path.split('/') self.file_name = self.file_path[-1] self.directory_path = "/".join(self.file_path[:-1]) self._query_str, credential = self._format_query_string( sas_token, credential, share_snapshot=self.snapshot) super(ShareFileClient, self).__init__(parsed_url, service='file-share', credential=credential, **kwargs) self._client = AzureFileStorage(url=self.url, pipeline=self._pipeline) default_api_version = self._client._config.version # pylint: disable=protected-access self._client._config.version = get_api_version(kwargs, default_api_version) # pylint: disable=protected-access
[docs] @classmethod def from_file_url( cls, file_url, # type: str snapshot=None, # type: Optional[Union[str, Dict[str, Any]]] credential=None, # type: Optional[Any] **kwargs # type: Any ): # type: (...) -> ShareFileClient """A client to interact with a specific file, although that file may not yet exist. :param str file_url: The full URI to the file. :param str snapshot: An optional file snapshot on which to operate. This can be the snapshot ID string or the response returned from :func:`ShareClient.create_snapshot`. :param credential: The credential with which to authenticate. This is optional if the account URL already has a SAS token. The value can be a SAS token string, an instance of a AzureSasCredential from azure.core.credentials or an account shared access key. :returns: A File client. :rtype: ~azure.storage.fileshare.ShareFileClient """ try: if not file_url.lower().startswith('http'): file_url = "https://" + file_url except AttributeError: raise ValueError("File URL must be a string.") parsed_url = urlparse(file_url.rstrip('/')) if not (parsed_url.netloc and parsed_url.path): raise ValueError("Invalid URL: {}".format(file_url)) account_url = parsed_url.netloc.rstrip('/') + "?" + parsed_url.query path_share, _, path_file = parsed_url.path.lstrip('/').partition('/') path_snapshot, _ = parse_query(parsed_url.query) snapshot = snapshot or path_snapshot share_name = unquote(path_share) file_path = '/'.join([unquote(p) for p in path_file.split('/')]) return cls(account_url, share_name, file_path, snapshot, credential, **kwargs)
def _format_url(self, hostname): """Format the endpoint URL according to the current location mode hostname. """ share_name = self.share_name if isinstance(share_name, six.text_type): share_name = share_name.encode('UTF-8') return "{}://{}/{}/{}{}".format( self.scheme, hostname, quote(share_name), "/".join([quote(p, safe='~') for p in self.file_path]), self._query_str)
[docs] @classmethod def from_connection_string( cls, conn_str, # type: str share_name, # type: str file_path, # type: str snapshot=None, # type: Optional[Union[str, Dict[str, Any]]] credential=None, # type: Optional[Any] **kwargs # type: Any ): # type: (...) -> ShareFileClient """Create ShareFileClient from a Connection String. :param str conn_str: A connection string to an Azure Storage account. :param share_name: The name of the share. :type share_name: str :param str file_path: The file path. :param str snapshot: An optional file snapshot on which to operate. This can be the snapshot ID string or the response returned from :func:`ShareClient.create_snapshot`. :param credential: The credential with which to authenticate. This is optional if the account URL already has a SAS token. The value can be a SAS token string, an instance of a AzureSasCredential from azure.core.credentials or an account shared access key. :returns: A File client. :rtype: ~azure.storage.fileshare.ShareFileClient .. admonition:: Example: .. literalinclude:: ../samples/file_samples_hello_world.py :start-after: [START create_file_client] :end-before: [END create_file_client] :language: python :dedent: 12 :caption: Creates the file client with connection string. """ account_url, secondary, credential = parse_connection_str(conn_str, credential, 'file') if 'secondary_hostname' not in kwargs: kwargs['secondary_hostname'] = secondary return cls( account_url, share_name=share_name, file_path=file_path, snapshot=snapshot, credential=credential, **kwargs)
[docs] @distributed_trace def acquire_lease(self, lease_id=None, **kwargs): # type: (Optional[str], **Any) -> ShareLeaseClient """Requests a new lease. If the file does not have an active lease, the File Service creates a lease on the blob and returns a new lease. :param str lease_id: Proposed lease ID, in a GUID string format. The File Service returns 400 (Invalid request) if the proposed lease ID is not in the correct format. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: A ShareLeaseClient object. :rtype: ~azure.storage.fileshare.ShareLeaseClient .. admonition:: Example: .. literalinclude:: ../samples/file_samples_client.py :start-after: [START acquire_and_release_lease_on_file] :end-before: [END acquire_and_release_lease_on_file] :language: python :dedent: 12 :caption: Acquiring a lease on a file. """ kwargs['lease_duration'] = -1 lease = ShareLeaseClient(self, lease_id=lease_id) # type: ignore lease.acquire(**kwargs) return lease
[docs] @distributed_trace def create_file( # type: ignore self, size, # type: int file_attributes="none", # type: Union[str, NTFSAttributes] file_creation_time="now", # type: Union[str, datetime] file_last_write_time="now", # type: Union[str, datetime] file_permission=None, # type: Optional[str] permission_key=None, # type: Optional[str] **kwargs # type: Any ): # type: (...) -> Dict[str, Any] """Creates a new file. Note that it only initializes the file with no content. :param int size: Specifies the maximum size for the file, up to 1 TB. :param file_attributes: The file system attributes for files and directories. If not set, the default value would be "None" and the attributes will be set to "Archive". Here is an example for when the var type is str: 'Temporary|Archive'. file_attributes value is not case sensitive. :type file_attributes: str or :class:`~azure.storage.fileshare.NTFSAttributes` :param file_creation_time: Creation time for the file Default value: Now. :type file_creation_time: str or ~datetime.datetime :param file_last_write_time: Last write time for the file Default value: Now. :type file_last_write_time: str or ~datetime.datetime :param file_permission: If specified the permission (security descriptor) shall be set for the directory/file. This header can be used if Permission size is <= 8KB, else x-ms-file-permission-key header shall be used. Default value: Inherit. If SDDL is specified as input, it must have owner, group and dacl. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type file_permission: str :param permission_key: Key of the permission to be set for the directory/file. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type permission_key: str :keyword ~azure.storage.fileshare.ContentSettings content_settings: ContentSettings object used to set file properties. Used to set content type, encoding, language, disposition, md5, and cache control. :keyword dict(str,str) metadata: Name-value pairs associated with the file as metadata. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: File-updated property dict (Etag and last modified). :rtype: dict(str, Any) .. admonition:: Example: .. literalinclude:: ../samples/file_samples_client.py :start-after: [START create_file] :end-before: [END create_file] :language: python :dedent: 12 :caption: Create a file. """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) content_settings = kwargs.pop('content_settings', None) metadata = kwargs.pop('metadata', None) timeout = kwargs.pop('timeout', None) if self.require_encryption and not self.key_encryption_key: raise ValueError("Encryption required but no key was provided.") headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) file_http_headers = None if content_settings: file_http_headers = FileHTTPHeaders( file_cache_control=content_settings.cache_control, file_content_type=content_settings.content_type, file_content_md5=bytearray(content_settings.content_md5) if content_settings.content_md5 else None, file_content_encoding=content_settings.content_encoding, file_content_language=content_settings.content_language, file_content_disposition=content_settings.content_disposition ) file_permission = _get_file_permission(file_permission, permission_key, 'Inherit') try: return self._client.file.create( # type: ignore file_content_length=size, metadata=metadata, file_attributes=_str(file_attributes), file_creation_time=_datetime_to_str(file_creation_time), file_last_write_time=_datetime_to_str(file_last_write_time), file_permission=file_permission, file_permission_key=permission_key, file_http_headers=file_http_headers, lease_access_conditions=access_conditions, headers=headers, timeout=timeout, cls=return_response_headers, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def upload_file( self, data, # type: Any length=None, # type: Optional[int] file_attributes="none", # type: Union[str, NTFSAttributes] file_creation_time="now", # type: Union[str, datetime] file_last_write_time="now", # type: Union[str, datetime] file_permission=None, # type: Optional[str] permission_key=None, # type: Optional[str] **kwargs # type: Any ): # type: (...) -> Dict[str, Any] """Uploads a new file. :param Any data: Content of the file. :param int length: Length of the file in bytes. Specify its maximum size, up to 1 TiB. :param file_attributes: The file system attributes for files and directories. If not set, the default value would be "None" and the attributes will be set to "Archive". Here is an example for when the var type is str: 'Temporary|Archive'. file_attributes value is not case sensitive. :type file_attributes: str or ~azure.storage.fileshare.NTFSAttributes :param file_creation_time: Creation time for the file Default value: Now. :type file_creation_time: str or ~datetime.datetime :param file_last_write_time: Last write time for the file Default value: Now. :type file_last_write_time: str or ~datetime.datetime :param file_permission: If specified the permission (security descriptor) shall be set for the directory/file. This header can be used if Permission size is <= 8KB, else x-ms-file-permission-key header shall be used. Default value: Inherit. If SDDL is specified as input, it must have owner, group and dacl. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type file_permission: str :param permission_key: Key of the permission to be set for the directory/file. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type permission_key: str :keyword dict(str,str) metadata: Name-value pairs associated with the file as metadata. :keyword ~azure.storage.fileshare.ContentSettings content_settings: ContentSettings object used to set file properties. Used to set content type, encoding, language, disposition, md5, and cache control. :keyword bool validate_content: If true, calculates an MD5 hash for each range of the file. The storage service checks the hash of the content that has arrived with the hash that was sent. This is primarily valuable for detecting bitflips on the wire if using http instead of https as https (the default) will already validate. Note that this MD5 hash is not stored with the file. :keyword int max_concurrency: Maximum number of parallel connections to use. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :keyword str encoding: Defaults to UTF-8. :returns: File-updated property dict (Etag and last modified). :rtype: dict(str, Any) .. admonition:: Example: .. literalinclude:: ../samples/file_samples_client.py :start-after: [START upload_file] :end-before: [END upload_file] :language: python :dedent: 12 :caption: Upload a file. """ metadata = kwargs.pop('metadata', None) content_settings = kwargs.pop('content_settings', None) max_concurrency = kwargs.pop('max_concurrency', 1) validate_content = kwargs.pop('validate_content', False) timeout = kwargs.pop('timeout', None) encoding = kwargs.pop('encoding', 'UTF-8') if self.require_encryption or (self.key_encryption_key is not None): raise ValueError("Encryption not supported.") if isinstance(data, six.text_type): data = data.encode(encoding) if length is None: length = get_length(data) if isinstance(data, bytes): data = data[:length] if isinstance(data, bytes): stream = BytesIO(data) elif hasattr(data, 'read'): stream = data elif hasattr(data, '__iter__'): stream = IterStreamer(data, encoding=encoding) # type: ignore else: raise TypeError("Unsupported data type: {}".format(type(data))) return _upload_file_helper( # type: ignore self, stream, length, metadata, content_settings, validate_content, timeout, max_concurrency, self._config, file_attributes=file_attributes, file_creation_time=file_creation_time, file_last_write_time=file_last_write_time, file_permission=file_permission, file_permission_key=permission_key, **kwargs)
[docs] @distributed_trace def start_copy_from_url(self, source_url, **kwargs): # type: (str, Any) -> Any """Initiates the copying of data from a source URL into the file referenced by the client. The status of this copy operation can be found using the `get_properties` method. :param str source_url: Specifies the URL of the source file. :keyword str file_permission: If specified the permission (security descriptor) shall be set for the directory/file. This value can be set to "source" to copy the security descriptor from the source file. Otherwise if set, this value will be used to override the source value. If not set, permission value is inherited from the parent directory of the target file. This setting can be used if Permission size is <= 8KB, otherwise permission_key shall be used. If SDDL is specified as input, it must have owner, group and dacl. Note: Only one of the file_permission or permission_key should be specified. .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :keyword str permission_key: Key of the permission to be set for the directory/file. This value can be set to "source" to copy the security descriptor from the source file. Otherwise if set, this value will be used to override the source value. If not set, permission value is inherited from the parent directory of the target file. Note: Only one of the file_permission or permission_key should be specified. .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :keyword file_attributes: This value can be set to "source" to copy file attributes from the source file to the target file, or to clear all attributes, it can be set to "None". Otherwise it can be set to a list of attributes to set on the target file. If this is not set, the default value is "Archive". .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :paramtype file_attributes: str or :class:`~azure.storage.fileshare.NTFSAttributes` :keyword file_creation_time: This value can be set to "source" to copy the creation time from the source file to the target file, or a datetime to set as creation time on the target file. This could also be a string in ISO 8601 format. If this is not set, creation time will be set to the date time value of the creation (or when it was overwritten) of the target file by copy engine. .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :paramtype file_creation_time: str or ~datetime.datetime :keyword file_last_write_time: This value can be set to "source" to copy the last write time from the source file to the target file, or a datetime to set as the last write time on the target file. This could also be a string in ISO 8601 format. If this is not set, value will be the last write time to the file by the copy engine. .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :paramtype file_last_write_time: str or ~datetime.datetime :keyword bool ignore_read_only: Specifies the option to overwrite the target file if it already exists and has read-only attribute set. .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :keyword bool set_archive_attribute: Specifies the option to set the archive attribute on the target file. True means the archive attribute will be set on the target file despite attribute overrides or the source file state. .. versionadded:: 12.1.0 This parameter was introduced in API version '2019-07-07'. :keyword metadata: Name-value pairs associated with the file as metadata. :type metadata: dict(str, str) :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :rtype: dict(str, Any) .. admonition:: Example: .. literalinclude:: ../samples/file_samples_client.py :start-after: [START copy_file_from_url] :end-before: [END copy_file_from_url] :language: python :dedent: 12 :caption: Copy a file from a URL """ metadata = kwargs.pop('metadata', None) access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) kwargs.update(get_smb_properties(kwargs)) try: return self._client.file.start_copy( source_url, metadata=metadata, lease_access_conditions=access_conditions, headers=headers, cls=return_response_headers, timeout=timeout, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] def abort_copy(self, copy_id, **kwargs): # type: (Union[str, FileProperties], Any) -> None """Abort an ongoing copy operation. This will leave a destination file with zero length and full metadata. This will raise an error if the copy operation has already ended. :param copy_id: The copy operation to abort. This can be either an ID, or an instance of FileProperties. :type copy_id: str or ~azure.storage.fileshare.FileProperties :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :rtype: None """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) try: copy_id = copy_id.copy.id except AttributeError: try: copy_id = copy_id['copy_id'] except TypeError: pass try: self._client.file.abort_copy(copy_id=copy_id, lease_access_conditions=access_conditions, timeout=timeout, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def download_file( self, offset=None, # type: Optional[int] length=None, # type: Optional[int] **kwargs ): # type: (Optional[int], Optional[int], Any) -> StorageStreamDownloader """Downloads a file to the StorageStreamDownloader. The readall() method must be used to read all the content or readinto() must be used to download the file into a stream. Using chunks() returns an iterator which allows the user to iterate over the content in chunks. :param int offset: Start of byte range to use for downloading a section of the file. Must be set if length is provided. :param int length: Number of bytes to read from the stream. This is optional, but should be supplied for optimal performance. :keyword int max_concurrency: Maximum number of parallel connections to use. :keyword bool validate_content: If true, calculates an MD5 hash for each chunk of the file. The storage service checks the hash of the content that has arrived with the hash that was sent. This is primarily valuable for detecting bitflips on the wire if using http instead of https as https (the default) will already validate. Note that this MD5 hash is not stored with the file. Also note that if enabled, the memory-efficient upload algorithm will not be used, because computing the MD5 hash requires buffering entire blocks, and doing so defeats the purpose of the memory-efficient algorithm. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: A streaming object (StorageStreamDownloader) :rtype: ~azure.storage.fileshare.StorageStreamDownloader .. admonition:: Example: .. literalinclude:: ../samples/file_samples_client.py :start-after: [START download_file] :end-before: [END download_file] :language: python :dedent: 12 :caption: Download a file. """ if self.require_encryption or (self.key_encryption_key is not None): raise ValueError("Encryption not supported.") if length is not None and offset is None: raise ValueError("Offset value must not be None if length is set.") range_end = None if length is not None: range_end = offset + length - 1 # Service actually uses an end-range inclusive index access_conditions = get_access_conditions(kwargs.pop('lease', None)) return StorageStreamDownloader( client=self._client.file, config=self._config, start_range=offset, end_range=range_end, encryption_options=None, name=self.file_name, path='/'.join(self.file_path), share=self.share_name, lease_access_conditions=access_conditions, cls=deserialize_file_stream, **kwargs)
[docs] @distributed_trace def delete_file(self, **kwargs): # type: (Any) -> None """Marks the specified file for deletion. The file is later deleted during garbage collection. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :rtype: None .. admonition:: Example: .. literalinclude:: ../samples/file_samples_client.py :start-after: [START delete_file] :end-before: [END delete_file] :language: python :dedent: 12 :caption: Delete a file. """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) try: self._client.file.delete(lease_access_conditions=access_conditions, timeout=timeout, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def get_file_properties(self, **kwargs): # type: (Any) -> FileProperties """Returns all user-defined metadata, standard HTTP properties, and system properties for the file. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: FileProperties :rtype: ~azure.storage.fileshare.FileProperties """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) try: file_props = self._client.file.get_properties( sharesnapshot=self.snapshot, lease_access_conditions=access_conditions, timeout=timeout, cls=deserialize_file_properties, **kwargs) except HttpResponseError as error: process_storage_error(error) file_props.name = self.file_name file_props.share = self.share_name file_props.snapshot = self.snapshot file_props.path = '/'.join(self.file_path) return file_props # type: ignore
[docs] @distributed_trace def set_http_headers(self, content_settings, # type: ContentSettings file_attributes="preserve", # type: Union[str, NTFSAttributes] file_creation_time="preserve", # type: Union[str, datetime] file_last_write_time="preserve", # type: Union[str, datetime] file_permission=None, # type: Optional[str] permission_key=None, # type: Optional[str] **kwargs # type: Any ): # type: (...) -> Dict[str, Any] """Sets HTTP headers on the file. :param ~azure.storage.fileshare.ContentSettings content_settings: ContentSettings object used to set file properties. Used to set content type, encoding, language, disposition, md5, and cache control. :param file_attributes: The file system attributes for files and directories. If not set, indicates preservation of existing values. Here is an example for when the var type is str: 'Temporary|Archive' :type file_attributes: str or :class:`~azure.storage.fileshare.NTFSAttributes` :param file_creation_time: Creation time for the file Default value: Preserve. :type file_creation_time: str or ~datetime.datetime :param file_last_write_time: Last write time for the file Default value: Preserve. :type file_last_write_time: str or ~datetime.datetime :param file_permission: If specified the permission (security descriptor) shall be set for the directory/file. This header can be used if Permission size is <= 8KB, else x-ms-file-permission-key header shall be used. Default value: Inherit. If SDDL is specified as input, it must have owner, group and dacl. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type file_permission: str :param permission_key: Key of the permission to be set for the directory/file. Note: Only one of the x-ms-file-permission or x-ms-file-permission-key should be specified. :type permission_key: str :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: File-updated property dict (Etag and last modified). :rtype: dict(str, Any) """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) file_content_length = kwargs.pop('size', None) file_http_headers = FileHTTPHeaders( file_cache_control=content_settings.cache_control, file_content_type=content_settings.content_type, file_content_md5=bytearray(content_settings.content_md5) if content_settings.content_md5 else None, file_content_encoding=content_settings.content_encoding, file_content_language=content_settings.content_language, file_content_disposition=content_settings.content_disposition ) file_permission = _get_file_permission(file_permission, permission_key, 'preserve') try: return self._client.file.set_http_headers( # type: ignore file_content_length=file_content_length, file_http_headers=file_http_headers, file_attributes=_str(file_attributes), file_creation_time=_datetime_to_str(file_creation_time), file_last_write_time=_datetime_to_str(file_last_write_time), file_permission=file_permission, file_permission_key=permission_key, lease_access_conditions=access_conditions, timeout=timeout, cls=return_response_headers, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def set_file_metadata(self, metadata=None, **kwargs): # type: (Optional[Dict[str, Any]], Any) -> Dict[str, Any] """Sets user-defined metadata for the specified file as one or more name-value pairs. Each call to this operation replaces all existing metadata attached to the file. To remove all metadata from the file, call this operation with no metadata dict. :param metadata: Name-value pairs associated with the file as metadata. :type metadata: dict(str, str) :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: File-updated property dict (Etag and last modified). :rtype: dict(str, Any) """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) # type: ignore try: return self._client.file.set_metadata( # type: ignore timeout=timeout, cls=return_response_headers, headers=headers, metadata=metadata, lease_access_conditions=access_conditions, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def upload_range( # type: ignore self, data, # type: bytes offset, # type: int length, # type: int **kwargs ): # type: (...) -> Dict[str, Any] """Upload a range of bytes to a file. :param bytes data: The data to upload. :param int offset: Start of byte range to use for uploading a section of the file. The range can be up to 4 MB in size. :param int length: Number of bytes to use for uploading a section of the file. The range can be up to 4 MB in size. :keyword bool validate_content: If true, calculates an MD5 hash of the page content. The storage service checks the hash of the content that has arrived with the hash that was sent. This is primarily valuable for detecting bitflips on the wire if using http instead of https as https (the default) will already validate. Note that this MD5 hash is not stored with the file. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :keyword str encoding: Defaults to UTF-8. :returns: File-updated property dict (Etag and last modified). :rtype: Dict[str, Any] """ validate_content = kwargs.pop('validate_content', False) timeout = kwargs.pop('timeout', None) encoding = kwargs.pop('encoding', 'UTF-8') if self.require_encryption or (self.key_encryption_key is not None): raise ValueError("Encryption not supported.") if isinstance(data, six.text_type): data = data.encode(encoding) end_range = offset + length - 1 # Reformat to an inclusive range index content_range = 'bytes={0}-{1}'.format(offset, end_range) access_conditions = get_access_conditions(kwargs.pop('lease', None)) try: return self._client.file.upload_range( # type: ignore range=content_range, content_length=length, optionalbody=data, timeout=timeout, validate_content=validate_content, lease_access_conditions=access_conditions, cls=return_response_headers, **kwargs) except HttpResponseError as error: process_storage_error(error)
@staticmethod def _upload_range_from_url_options(source_url, # type: str offset, # type: int length, # type: int source_offset, # type: int **kwargs # type: Any ): # type: (...) -> Dict[str, Any] if offset is None: raise ValueError("offset must be provided.") if length is None: raise ValueError("length must be provided.") if source_offset is None: raise ValueError("source_offset must be provided.") # Format range end_range = offset + length - 1 destination_range = 'bytes={0}-{1}'.format(offset, end_range) source_range = 'bytes={0}-{1}'.format(source_offset, source_offset + length - 1) source_authorization = kwargs.pop('source_authorization', None) source_mod_conditions = get_source_conditions(kwargs) access_conditions = get_access_conditions(kwargs.pop('lease', None)) options = { 'copy_source_authorization': source_authorization, 'copy_source': source_url, 'content_length': 0, 'source_range': source_range, 'range': destination_range, 'source_modified_access_conditions': source_mod_conditions, 'lease_access_conditions': access_conditions, 'timeout': kwargs.pop('timeout', None), 'cls': return_response_headers} options.update(kwargs) return options
[docs] @distributed_trace def upload_range_from_url(self, source_url, offset, length, source_offset, **kwargs ): # type: (str, int, int, int, **Any) -> Dict[str, Any] """ Writes the bytes from one Azure File endpoint into the specified range of another Azure File endpoint. :param int offset: Start of byte range to use for updating a section of the file. The range can be up to 4 MB in size. :param int length: Number of bytes to use for updating a section of the file. The range can be up to 4 MB in size. :param str source_url: A URL of up to 2 KB in length that specifies an Azure file or blob. The value should be URL-encoded as it would appear in a request URI. If the source is in another account, the source must either be public or must be authenticated via a shared access signature. If the source is public, no authentication is required. Examples: https://myaccount.file.core.windows.net/myshare/mydir/myfile https://otheraccount.file.core.windows.net/myshare/mydir/myfile?sastoken :param int source_offset: This indicates the start of the range of bytes(inclusive) that has to be taken from the copy source. The service will read the same number of bytes as the destination range (length-offset). :keyword ~datetime.datetime source_if_modified_since: A DateTime value. Azure expects the date value passed in to be UTC. If timezone is included, any non-UTC datetimes will be converted to UTC. If a date is passed in without timezone info, it is assumed to be UTC. Specify this conditional header to copy the blob only if the source blob has been modified since the specified date/time. :keyword ~datetime.datetime source_if_unmodified_since: A DateTime value. Azure expects the date value passed in to be UTC. If timezone is included, any non-UTC datetimes will be converted to UTC. If a date is passed in without timezone info, it is assumed to be UTC. Specify this conditional header to copy the blob only if the source blob has not been modified since the specified date/time. :keyword str source_etag: The source ETag value, or the wildcard character (*). Used to check if the resource has changed, and act according to the condition specified by the `match_condition` parameter. :keyword ~azure.core.MatchConditions source_match_condition: The source match condition to use upon the etag. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :keyword str source_authorization: Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is the prefix of the source_authorization string. """ options = self._upload_range_from_url_options( source_url=source_url, offset=offset, length=length, source_offset=source_offset, **kwargs ) try: return self._client.file.upload_range_from_url(**options) # type: ignore except HttpResponseError as error: process_storage_error(error)
def _get_ranges_options( # type: ignore self, offset=None, # type: Optional[int] length=None, # type: Optional[int] previous_sharesnapshot=None, # type: Optional[Union[str, Dict[str, Any]]] **kwargs ): # type: (...) -> Dict[str, Any] if self.require_encryption or (self.key_encryption_key is not None): raise ValueError("Unsupported method for encryption.") access_conditions = get_access_conditions(kwargs.pop('lease', None)) content_range = None if offset is not None: if length is not None: end_range = offset + length - 1 # Reformat to an inclusive range index content_range = 'bytes={0}-{1}'.format(offset, end_range) else: content_range = 'bytes={0}-'.format(offset) options = { 'sharesnapshot': self.snapshot, 'lease_access_conditions': access_conditions, 'timeout': kwargs.pop('timeout', None), 'range': content_range} if previous_sharesnapshot: try: options['prevsharesnapshot'] = previous_sharesnapshot.snapshot # type: ignore except AttributeError: try: options['prevsharesnapshot'] = previous_sharesnapshot['snapshot'] # type: ignore except TypeError: options['prevsharesnapshot'] = previous_sharesnapshot options.update(kwargs) return options
[docs] @distributed_trace def get_ranges( # type: ignore self, offset=None, # type: Optional[int] length=None, # type: Optional[int] **kwargs # type: Any ): # type: (...) -> List[Dict[str, int]] """Returns the list of valid page ranges for a file or snapshot of a file. :param int offset: Specifies the start offset of bytes over which to get ranges. :param int length: Number of bytes to use over which to get ranges. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: A list of valid ranges. :rtype: List[dict[str, int]] """ options = self._get_ranges_options( offset=offset, length=length, **kwargs) try: ranges = self._client.file.get_range_list(**options) except HttpResponseError as error: process_storage_error(error) return [{'start': file_range.start, 'end': file_range.end} for file_range in ranges.ranges]
[docs] def get_ranges_diff( # type: ignore self, previous_sharesnapshot, # type: Union[str, Dict[str, Any]] offset=None, # type: Optional[int] length=None, # type: Optional[int] **kwargs # type: Any ): # type: (...) -> Tuple[List[Dict[str, int]], List[Dict[str, int]]] """Returns the list of valid page ranges for a file or snapshot of a file. .. versionadded:: 12.6.0 :param int offset: Specifies the start offset of bytes over which to get ranges. :param int length: Number of bytes to use over which to get ranges. :param str previous_sharesnapshot: The snapshot diff parameter that contains an opaque DateTime value that specifies a previous file snapshot to be compared against a more recent snapshot or the current file. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: A tuple of two lists of file ranges as dictionaries with 'start' and 'end' keys. The first element are filled file ranges, the 2nd element is cleared file ranges. :rtype: tuple(list(dict(str, str), list(dict(str, str)) """ options = self._get_ranges_options( offset=offset, length=length, previous_sharesnapshot=previous_sharesnapshot, **kwargs) try: ranges = self._client.file.get_range_list(**options) except HttpResponseError as error: process_storage_error(error) return get_file_ranges_result(ranges)
[docs] @distributed_trace def clear_range( # type: ignore self, offset, # type: int length, # type: int **kwargs ): # type: (...) -> Dict[str, Any] """Clears the specified range and releases the space used in storage for that range. :param int offset: Start of byte range to use for clearing a section of the file. The range can be up to 4 MB in size. :param int length: Number of bytes to use for clearing a section of the file. The range can be up to 4 MB in size. :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: File-updated property dict (Etag and last modified). :rtype: Dict[str, Any] """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) if self.require_encryption or (self.key_encryption_key is not None): raise ValueError("Unsupported method for encryption.") if offset is None or offset % 512 != 0: raise ValueError("offset must be an integer that aligns with 512 bytes file size") if length is None or length % 512 != 0: raise ValueError("length must be an integer that aligns with 512 bytes file size") end_range = length + offset - 1 # Reformat to an inclusive range index content_range = 'bytes={0}-{1}'.format(offset, end_range) try: return self._client.file.upload_range( # type: ignore timeout=timeout, cls=return_response_headers, content_length=0, optionalbody=None, file_range_write="clear", range=content_range, lease_access_conditions=access_conditions, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def resize_file(self, size, **kwargs): # type: (int, Any) -> Dict[str, Any] """Resizes a file to the specified size. :param int size: Size to resize file to (in bytes) :keyword lease: Required if the file has an active lease. Value can be a ShareLeaseClient object or the lease ID as a string. .. versionadded:: 12.1.0 :paramtype lease: ~azure.storage.fileshare.ShareLeaseClient or str :keyword int timeout: The timeout parameter is expressed in seconds. :returns: File-updated property dict (Etag and last modified). :rtype: Dict[str, Any] """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) try: return self._client.file.set_http_headers( # type: ignore file_content_length=size, file_attributes="preserve", file_creation_time="preserve", file_last_write_time="preserve", file_permission="preserve", lease_access_conditions=access_conditions, cls=return_response_headers, timeout=timeout, **kwargs) except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def list_handles(self, **kwargs): # type: (Any) -> ItemPaged[Handle] """Lists handles for file. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: An auto-paging iterable of HandleItem :rtype: ~azure.core.paging.ItemPaged[~azure.storage.fileshare.HandleItem] """ timeout = kwargs.pop('timeout', None) results_per_page = kwargs.pop('results_per_page', None) command = functools.partial( self._client.file.list_handles, sharesnapshot=self.snapshot, timeout=timeout, **kwargs) return ItemPaged( command, results_per_page=results_per_page, page_iterator_class=HandlesPaged)
[docs] @distributed_trace def close_handle(self, handle, **kwargs): # type: (Union[str, HandleItem], Any) -> Dict[str, int] """Close an open file handle. :param handle: A specific handle to close. :type handle: str or ~azure.storage.fileshare.Handle :keyword int timeout: The timeout parameter is expressed in seconds. :returns: The number of handles closed (this may be 0 if the specified handle was not found) and the number of handles failed to close in a dict. :rtype: dict[str, int] """ try: handle_id = handle.id # type: ignore except AttributeError: handle_id = handle if handle_id == '*': raise ValueError("Handle ID '*' is not supported. Use 'close_all_handles' instead.") try: response = self._client.file.force_close_handles( handle_id, marker=None, sharesnapshot=self.snapshot, cls=return_response_headers, **kwargs ) return { 'closed_handles_count': response.get('number_of_handles_closed', 0), 'failed_handles_count': response.get('number_of_handles_failed', 0) } except HttpResponseError as error: process_storage_error(error)
[docs] @distributed_trace def close_all_handles(self, **kwargs): # type: (Any) -> Dict[str, int] """Close any open file handles. This operation will block until the service has closed all open handles. :keyword int timeout: The timeout parameter is expressed in seconds. :returns: The number of handles closed (this may be 0 if the specified handle was not found) and the number of handles failed to close in a dict. :rtype: dict[str, int] """ timeout = kwargs.pop('timeout', None) start_time = time.time() try_close = True continuation_token = None total_closed = 0 total_failed = 0 while try_close: try: response = self._client.file.force_close_handles( handle_id='*', timeout=timeout, marker=continuation_token, sharesnapshot=self.snapshot, cls=return_response_headers, **kwargs ) except HttpResponseError as error: process_storage_error(error) continuation_token = response.get('marker') try_close = bool(continuation_token) total_closed += response.get('number_of_handles_closed', 0) total_failed += response.get('number_of_handles_failed', 0) if timeout: timeout = max(0, timeout - (time.time() - start_time)) return { 'closed_handles_count': total_closed, 'failed_handles_count': total_failed }