# # 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. # """Utility functions for build rule generator.""" import os def HalNameDir(hal_name): """Returns directory name corresponding to hal name.""" return hal_name.replace('.', '/') def HalVerDir(hal_version): """Returns directory name corresponding to hal version.""" return "V" + hal_version.replace('.', '_') def WriteBuildRule(file_path, build_rule): """Writes the build rule into specified file. Opens file_path and writes build_rule into it. Creates intermediate directories if necessary. Args: file_path: string, path to file to which to write. build_rule: string, build rule to be written into file. Returns: True if updated, False otherwise """ exist = True dir_path = os.path.dirname(file_path) if not os.path.exists(dir_path): os.makedirs(dir_path) exist = False elif not os.path.isfile(file_path): exist = False if exist: with open(file_path, 'r') as existing_file: if build_rule == existing_file.read(): print 'Skipping %s' % file_path return False print 'Updating %s' % file_path with open(file_path, 'w') as bp_file: bp_file.write(build_rule) return True def OnlySubdirsBpRule(warning_header, subdirs): """Returns a .bp rule containing only subdirs field. For example, 'subdirs = ["*"]' bp rule tells soong to look in all sub-directories for Android.bp files. Args: subdirs: list of sub-directories. """ result = warning_header result += 'subdirs = [\n' for subdir in subdirs: result += ' "%s",\n' % subdir result += ']\n' return result def RemoveFilesInDirIf(dir_path, condition): """Removes all files under directory under given condition. Args: dir_path: string, path to directory condition: boolean function takes absolute file path, returns True iff file needs to be removed. Returns: True if removed, False otherwise """ removed = False for base, _, files in os.walk(dir_path): for f in files: abs_path = os.path.join(base, f) if condition(abs_path): print "Removing", abs_path os.remove(abs_path) removed = True return removed