blob: 0830530ab0cf31297973034f4ca400cd0035ff3f [file] [log] [blame]
#
# Copyright (C) 2016 The Android Open Source Project
#
# 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.
#
"""Helper functions for NDK build and test paths."""
from __future__ import absolute_import
import contextlib
import os
import shutil
import build.lib.build_support as build_support
import config
def path_in_out(dirname, out_dir=None):
"""Returns a path within the out directory."
Args:
dirname: Name of the directory.
out_dir: Optional base out directory. Inferred from $OUT_DIR if not
supplied. If None and $OUT_DIR is not set, will use ../out
relative to the NDK git project.
Returns:
Absolute path to the created directory.
"""
if out_dir is None:
out_dir = build_support.get_out_dir()
return os.path.join(out_dir, dirname)
def get_install_path(out_dir=None):
"""Returns the built NDK install path.
Note that the path returned might not actually contain the NDK. The NDK may
not actually be present if:
* The NDK hasn't been built yet.
* The name of the release has changed since the NDK was built.
* out_dir is not consistent with the build.
Args:
out_dir: Optional base out directory. Inferred from $OUT_DIR if not
supplied.
Returns:
Directory that the built NDK should be installed to.
"""
release_name = 'android-ndk-{}'.format(config.release)
return path_in_out(release_name, out_dir)
@contextlib.contextmanager
def temp_dir_in_out(dirname, out_dir=None):
"""Creates a well named temporary directory within the out directory.
If the directory exists on context entry, RuntimeError will be raised. The
directory is removed on context exit.
Args:
dirname: Name of the temporary directory.
out_dir: Optional base out directory. Inferred from $OUT_DIR if not
supplied. If None and $OUT_DIR is not set, will use ../out
relative to the NDK git project.
Returns:
Absolute path to the created directory.
Raises:
RuntimeError: The requested directory already exists.
"""
path = path_in_out(dirname, out_dir)
if os.path.exists(path):
raise RuntimeError('Directory already exists: ' + path)
os.makedirs(path)
try:
abspath = os.path.abspath(path)
yield abspath
finally:
shutil.rmtree(abspath)