1#!/bin/bash
2# Copyright (c) 2021 Huawei Device Co., Ltd.
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14set -e
15
16script_path=$(cd $(dirname $0);pwd)
17code_dir=$(dirname ${script_path})
18
19if [[ "${@}" =~ "--tool-repo" && -f "${code_dir}/prebuilts.sh" ]]; then
20    # prebuilts.sh should be a symbolic link to a prebuilts_download.sh created by oneself.
21    bash ${code_dir}/prebuilts.sh $@
22else
23while [ $# -gt 0 ]; do
24  case "$1" in
25    -skip-ssl|--skip-ssl) # wget、npm skip ssl check, which will allow
26                          # hacker to get and modify data stream between server and client!
27    SKIP_SSL=YES
28    ;;
29    -h|--help)
30    HELP=YES
31    ;;
32    --disable-rich)       # disable the rich module of python
33    DISABLE_RICH=YES
34    ;;
35    --enable-symlink)     # enable symlink while copying node_modules
36    ENABLE_SYMLINK=YES
37    ;;
38    --build-arkuix)
39    BUILD_ARKUIX=YES
40    ;;
41    --tool-repo)
42    TOOL_REPO="$2"
43    shift
44    ;;
45    --tool-repo=*)
46    TOOL_REPO="${1#--tool-repo=}"
47    ;;
48    --npm-registry)
49    NPM_REGISTRY="$2"
50    shift
51    ;;
52    --npm-registry=*)
53    NPM_REGISTRY="${1#--npm-registry=}"
54    ;;
55    --trusted-host)
56    TRUSTED_HOST="$2"
57    shift
58    ;;
59    --trusted-host=*)
60    TRUSTED_HOST="${1#--trusted-host=}"
61    ;;
62    --pypi-url)           # python package index url
63    PYPI_URL="$2"
64    shift
65    ;;
66    --pypi-url=*)
67    PYPI_URL="${1#--pypi-url=}"
68    ;;
69    *)
70    echo "$0: Warning: unsupported parameter: $1" >&2
71    ;;
72  esac
73  shift
74done
75
76case $(uname -s) in
77    Linux)
78
79        host_platform=linux
80        host_os_version=$(cat /etc/issue | grep -oE 'Ubuntu [0-9]{2}.[0-9]{2}' | sed  's/ /\-/')
81        ;;
82    Darwin)
83        host_platform=darwin
84        ;;
85    *)
86        echo "Unsupported host platform: $(uname -s)"
87        exit 1
88esac
89
90case $(uname -m) in
91    arm64)
92
93        host_cpu=arm64
94        host_cpu_prefix=arm64
95        ;;
96    *)
97        host_cpu=x86_64
98        host_cpu_prefix=x86
99esac
100
101if [ "X${SKIP_SSL}" == "XYES" ];then
102    wget_ssl_check="--skip-ssl"
103else
104    wget_ssl_check=''
105fi
106
107if [ "X${HELP}" == "XYES" ];then
108    help="-h"
109else
110    help=''
111fi
112
113if [ "X${ENABLE_SYMLINK}" == "XYES" ];then
114    enable_symlink="--enable-symlink"
115else
116    enable_symlink=''
117fi
118
119if [ ! -z "$TOOL_REPO" ];then
120    tool_repo="--tool-repo $TOOL_REPO"
121else
122    tool_repo=''
123fi
124
125if [ ! -z "$NPM_REGISTRY" ];then
126    npm_registry="--npm-registry $NPM_REGISTRY"
127else
128    npm_registry=''
129fi
130
131if [ ! -z "$TRUSTED_HOST" ];then
132    trusted_host=$TRUSTED_HOST
133elif [ ! -z "$PYPI_URL" ];then
134    trusted_host=${PYPI_URL/#*:\/\//}       # remove prefix part such as http:// https:// etc.
135    trusted_host=${trusted_host/%[:\/]*/}   # remove suffix part including the port number
136else
137    trusted_host='repo.huaweicloud.com'
138fi
139
140if [ ! -z "$PYPI_URL" ];then
141    pypi_url=$PYPI_URL
142else
143    pypi_url='http://repo.huaweicloud.com/repository/pypi/simple'
144fi
145
146if [ $UID -ne 0 ]; then
147    npm_para=''
148else
149    npm_para='--unsafe-perm'
150fi
151
152if [ "X${BUILD_ARKUIX}" == "XYES" ];then
153    build_arkuix="--build-arkuix"
154else
155    build_arkuix=''
156fi
157
158if [ "X${DISABLE_RICH}" == "XYES" ];then
159  disable_rich='--disable-rich'
160else
161  set +e
162  pip3 install --trusted-host $trusted_host -i $pypi_url rich;
163  if [ $? -eq 0 ];then
164      echo "rich installed successfully"
165  else
166      disable_rich='--disable-rich'
167  fi
168  set -e
169fi
170
171cpu="--host-cpu $host_cpu"
172platform="--host-platform $host_platform"
173if [ "x$host_os_version" != "x" ]; then
174    host_os_version="--host-os-version $host_os_version"
175fi
176echo "prebuilts_download start"
177if [ -d "${code_dir}/prebuilts/build-tools/common/nodejs" ];then
178    rm -rf "${code_dir}/prebuilts/build-tools/common/nodejs"
179    echo "remove nodejs"
180fi
181python3 "${code_dir}/build/prebuilts_download.py" $wget_ssl_check $tool_repo $npm_registry $help $cpu $platform $npm_para $disable_rich $enable_symlink $build_arkuix $host_os_version
182if [ -f "${code_dir}/prebuilts/cmake/linux-x86/bin/ninja" ];then
183    rm -rf "${code_dir}/prebuilts/cmake/linux-x86/bin/ninja"
184fi
185if [ -f "${code_dir}/prebuilts/cmake/windows-x86/bin/ninja.exe" ];then
186    rm -rf "${code_dir}/prebuilts/cmake/windows-x86/bin/ninja.exe"
187fi
188if [ -f "${code_dir}/prebuilts/cmake/darwin-x86/bin/ninja" ];then
189    rm -rf "${code_dir}/prebuilts/cmake/darwin-x86/bin/ninja"
190fi
191echo "remove ninja in cmake"
192echo "prebuilts_download end"
193
194if [[ "${host_platform}" == "linux" ]]; then
195    sed -i "1s%.*%#!/usr/bin/env python3%" ${code_dir}/prebuilts/python/${host_platform}-${host_cpu_prefix}/3.11.4/bin/pip3.11
196elif [[ "${host_platform}" == "darwin" ]]; then
197    sed -i "" "1s%.*%#!/use/bin/env python3%" ${code_dir}/prebuilts/python/${host_platform}-${host_cpu_prefix}/3.11.4/bin/pip3.11
198fi
199prebuild_python3_path="$code_dir/prebuilts/python/${host_platform}-${host_cpu_prefix}/current/bin/python3"
200prebuild_pip3_path="${code_dir}/prebuilts/python/${host_platform}-${host_cpu_prefix}/current/bin/pip3"
201$prebuild_python3_path $prebuild_pip3_path install --trusted-host $trusted_host -i $pypi_url idna\>\=3.7 urllib3\>\=1.26.29 pyyaml requests\>\=2.32.1 prompt_toolkit\=\=1.0.14 asn1crypto cryptography json5\=\=0.9.6
202
203# llvm_ndk is merged form llvm and libcxx-ndk for compiling the native of hap
204llvm_dir="${code_dir}/prebuilts/clang/ohos/linux-x86_64"
205llvm_dir_win="${code_dir}/prebuilts/clang/ohos/windows-x86_64"
206llvm_dir_mac_x86="${code_dir}/prebuilts/clang/ohos/darwin-x86_64"
207llvm_dir_mac_arm64="${code_dir}/prebuilts/clang/ohos/darwin-arm64"
208llvm_dir_ohos_arm64="${code_dir}/prebuilts/clang/ohos/ohos-arm64"
209llvm_dir_list=($llvm_dir $llvm_dir_win $llvm_dir_mac_x86 $llvm_dir_mac_arm64 $llvm_dir_ohos_arm64)
210
211# copy libcxx-ndk library outside c++
212function copy_inside_cxx(){
213for i in ${llvm_dir_list[@]}
214do
215    libcxx_dir="${i}/libcxx-ndk/lib"
216    if [[ -d "${i}/libcxx-ndk" ]]; then
217        for file in $(ls ${libcxx_dir})
218        do
219            if [ ! -d "${libcxx_dir}/${file}/c++" ];then
220                $(mkdir -p ${libcxx_dir}/c++)
221                $(cp -r ${libcxx_dir}/${file}/* ${libcxx_dir}/c++)
222                $(mv ${libcxx_dir}/c++ ${libcxx_dir}/${file}/c++)
223            fi
224        done
225    fi
226done
227}
228
229function update_llvm_ndk(){
230if [[ -e "${llvm_dir}/llvm_ndk" ]];then
231  rm -rf "${llvm_dir}/llvm_ndk"
232fi
233mkdir -p "${llvm_dir}/llvm_ndk"
234cp -af "${llvm_dir}/llvm/include" "${llvm_dir}/llvm_ndk"
235cp -rfp "${llvm_dir}/libcxx-ndk/include" "${llvm_dir}/llvm_ndk"
236}
237
238if [[ "${BUILD_ARKUIX}" != "YES" ]]; then
239    copy_inside_cxx
240    echo "======copy inside cxx finished!======"
241    if [[ "${host_platform}" == "linux" ]]; then
242        update_llvm_ndk
243        echo "======update llvm ndk finished!======"
244    fi
245fi
246echo -e "\n"
247fi
248