File: //proc/thread-self/root/proc/thread-self/root/usr/lib/google-cloud-sdk/lib/surface/storage/cp.py
# -*- coding: utf-8 -*- #
# Copyright 2020 Google LLC. All Rights Reserved.
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# 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.
"""Implementation of Unix-like cp command for cloud storage providers."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.storage import name_expansion
from googlecloudsdk.command_lib.storage.tasks import task_executor
from googlecloudsdk.command_lib.storage.tasks.cp import copy_task_iterator
class Cp(base.Command):
"""Upload, download, and copy Cloud Storage objects."""
detailed_help = {
'DESCRIPTION':
"""
Copy data between your local file system and the cloud, copy data within
the cloud, and copy data between cloud storage providers.
""",
'EXAMPLES':
"""
To upload all text files from the local directory to a bucket:
$ *{command}* *.txt gs://my-bucket
Similarly, you can download text files from a bucket:
$ *{command}* gs://my-bucket/*.txt .
If you want to copy an entire directory tree you need to use the -r
option. For example, to upload the directory tree "dir":
$ *{command}* -r dir gs://my-bucket
""",
# TODO(b/160602071) Expand examples as features are added.
}
@staticmethod
# TODO(b/160602071) Add arguments as features are added.
def Args(parser):
parser.add_argument('source', nargs='+', help='The source path(s) to copy.')
parser.add_argument('destination', help='The destination path.')
def Run(self, args):
source_expansion_iterator = name_expansion.NameExpansionIterator(
args.source)
task_iterator = copy_task_iterator.CopyTaskIterator(
source_expansion_iterator, args.destination)
task_executor.ExecuteTasks(task_iterator)