Files
phs_v1.0.1.0/build/ohos/ndk/generate_version_script.py
2024-09-27 19:16:49 +08:00

77 lines
2.1 KiB
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2021 Huawei Device Co., Ltd.
# 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.
import optparse
import os
import sys
import json
sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, os.pardir))
from scripts.util import build_utils # noqa: E402
MAP_FILE_TEMPLATE = '''
%s {
global:
%s
local:
*;
};
'''
def parse_args(args):
args = build_utils.expand_file_args(args)
parser = optparse.OptionParser()
build_utils.add_depfile_option(parser)
parser.add_option('--output', help='generated ndk stub file')
parser.add_option('--ndk-description-file', help='ndk description file')
parser.add_option('--shlib-name', help='output name of shared library')
options, _ = parser.parse_args(args)
return options
def generate_version_script(options):
contents = []
with open(options.ndk_description_file, 'r') as f:
interfaces = json.load(f)
for inf in interfaces:
name = inf['name']
contents.append('\t%s;' % name)
with open(options.output, 'w') as f:
f.write(MAP_FILE_TEMPLATE %
(options.shlib_name.upper(), '\n'.join(contents)))
def main(args):
options = parse_args(args)
depfile_deps = ([options.ndk_description_file])
build_utils.call_and_write_depfile_if_stale(
lambda: generate_version_script(options),
options,
depfile_deps=depfile_deps,
input_paths=depfile_deps,
input_strings=[options.shlib_name],
output_paths=([options.output]),
force=False,
add_pydeps=False)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))