blob: 767079b9b6b228d0810a36afefeddf6b1767de34 [file] [log] [blame]
# Copyright 2022 The Cobalt Authors. 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.
# TODO(b/216341587): Refactor install_content to get rid of this file.
# This file is loosely based on starboard/build/copy_data.py
"""Copies all input files to the output directory.
The folder structure of the input files is maintained in the output relative
to the 'base_dir' parameter.
"""
import argparse
import os
import shutil
class InvalidArgumentException(Exception):
pass
def copy_files(files_to_copy, base_dir, output_dir):
for path in files_to_copy:
# All input paths must point at files.
# TODO(b/211909342): Re-enable once lottie test files are listed.
# if not os.path.isfile(path):
# raise InvalidArgumentException(path + ' is not a file.')
# Get the path of the file relative to the source base_dir.
rel_path = os.path.relpath(path, base_dir)
# In certain cases, files would fail to open on windows if relative paths
# were provided. Using absolute paths fixes this.
filename = os.path.abspath(os.path.join(base_dir, rel_path))
output_dir = os.path.abspath(output_dir)
output_filename = os.path.abspath(os.path.join(output_dir, rel_path))
# In cases where a directory has turned into a file or vice versa, delete it
# before copying it below.
if os.path.exists(output_dir) and not os.path.isdir(output_dir):
os.remove(output_dir)
if os.path.exists(output_filename) and os.path.isdir(output_filename):
shutil.rmtree(output_filename)
if not os.path.exists(output_dir):
os.makedirs(output_dir)
if os.path.isfile(filename):
shutil.copy(filename, output_filename)
else:
# TODO(b/211909342): Remove this branch once lottie files are listed.
shutil.copytree(filename, output_filename)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument(
'--output_dir', dest='output_dir', required=True, help='output directory')
parser.add_argument(
'--base_dir',
dest='base_dir',
required=True,
help='source base directory')
parser.add_argument(
'--files_list',
dest='files_list',
required=True,
help='path to file containing list of input files')
options = parser.parse_args()
# Load file names from the file containing the list of file names.
# The file name list must be passed in a file to due to command line limits.
with open(options.files_list) as input_file:
file_names = [line.strip() for line in input_file]
copy_files(file_names, options.base_dir, options.output_dir)