freezer.storage.ftp module¶
Copyright 2018 ZTE Corporation.
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- class freezer.storage.ftp.BaseFtpStorage(storage_path, remote_pwd, remote_username, remote_ip, port, max_segment_size)¶
Bases:
freezer.storage.fslike.FsLikeStorage
- add_stream(stream, package_name, headers=None)¶
- Parameters
stream – data
package_name – path
headers – backup metadata information
- Returns
- backup_blocks(backup)¶
- Parameters
backup (freezer.storage.base.Backup) –
- Returns
- create_dirs(path)¶
Change to this directory, recursively making new folders if needed. Returns True if any folders were created.
- get_file(from_path, to_path)¶
- init()¶
- listdir(directory)¶
- Parameters
path (str) –
- Return type
collections.Iterable[str]
- open(path, mode)¶
- Parameters
filename (str) –
mode (str) –
- Returns
- put_file(from_path, to_path)¶
- Parameters
from_path (str) –
to_path (str) –
- rmtree(path)¶
- write_backup(rich_queue, backup)¶
Stores backup in storage :type rich_queue: freezer.streaming.RichQueue :type backup: freezer.storage.base.Backup
- class freezer.storage.ftp.FtpStorage(storage_path, remote_pwd, remote_username, remote_ip, port, max_segment_size)¶
Bases:
freezer.storage.ftp.BaseFtpStorage
- init()¶
- class freezer.storage.ftp.FtpsStorage(storage_path, remote_pwd, remote_username, remote_ip, port, max_segment_size, keyfile, certfile)¶
Bases:
freezer.storage.ftp.BaseFtpStorage
- init()¶