forked from apache/pulsar
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[improve][misc] Replace rename-netty-native-libs.sh script with renam…
…ing with maven-shade-plugin (apache#22957) (cherry picked from commit f728b2e) (cherry picked from commit 68d92fe)
- Loading branch information
1 parent
669988c
commit 651ec29
Showing
7 changed files
with
18 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,98 +0,0 @@ | ||
@REM | ||
@REM Licensed to the Apache Software Foundation (ASF) under one | ||
@REM or more contributor license agreements. See the NOTICE file | ||
@REM distributed with this work for additional information | ||
@REM regarding copyright ownership. The ASF licenses this file | ||
@REM to you under the Apache License, Version 2.0 (the | ||
@REM "License"); you may not use this file except in compliance | ||
@REM with the License. You may obtain a copy of the License at | ||
@REM | ||
@REM http://www.apache.org/licenses/LICENSE-2.0 | ||
@REM | ||
@REM Unless required by applicable law or agreed to in writing, | ||
@REM software distributed under the License is distributed on an | ||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
@REM KIND, either express or implied. See the License for the | ||
@REM specific language governing permissions and limitations | ||
@REM under the License. | ||
@REM | ||
|
||
@echo off | ||
|
||
set ARTIFACT_ID=%1 | ||
set JAR_PATH=%cd%/target/%ARTIFACT_ID%.jar | ||
set FILE_PREFIX=META-INF/native | ||
|
||
:: echo %JAR_PATH% | ||
:: echo %FILE_PREFIX% | ||
|
||
ECHO. | ||
echo ----- Renaming epoll lib in %JAR_PATH% ------ | ||
set TMP_DIR=%temp%\tmp_pulsar | ||
|
||
rd %TMP_DIR% /s /q | ||
mkdir %TMP_DIR% | ||
|
||
set UNZIP_CMD=unzip -q %JAR_PATH% -d %TMP_DIR% | ||
call %UNZIP_CMD% | ||
|
||
:: echo %UNZIP_CMD% | ||
:: echo %TMP_DIR% | ||
|
||
cd /d %TMP_DIR%/%FILE_PREFIX% | ||
|
||
:: Loop through the number of groups | ||
SET Obj_Length=10 | ||
SET Obj[0].FROM=libnetty_transport_native_epoll_x86_64.so | ||
SET Obj[0].TO=liborg_apache_pulsar_shade_netty_transport_native_epoll_x86_64.so | ||
SET Obj[1].FROM=libnetty_transport_native_epoll_aarch_64.so | ||
SET Obj[1].TO=liborg_apache_pulsar_shade_netty_transport_native_epoll_aarch_64.so | ||
SET Obj[2].FROM=libnetty_tcnative_linux_x86_64.so | ||
SET Obj[2].TO=liborg_apache_pulsar_shade_netty_tcnative_linux_x86_64.so | ||
SET Obj[3].FROM=libnetty_tcnative_linux_aarch_64.so | ||
SET Obj[3].TO=liborg_apache_pulsar_shade_netty_tcnative_linux_aarch_64.so | ||
SET Obj[4].FROM=libnetty_tcnative_osx_x86_64.jnilib | ||
SET Obj[4].TO=liborg_apache_pulsar_shade_netty_tcnative_osx_x86_64.jnilib | ||
SET Obj[5].FROM=libnetty_tcnative_osx_aarch_64.jnilib | ||
SET Obj[5].TO=liborg_apache_pulsar_shade_netty_tcnative_osx_aarch_64.jnilib | ||
SET Obj[6].FROM=libnetty_transport_native_io_uring_x86_64.so | ||
SET Obj[6].TO=liborg_apache_pulsar_shade_netty_transport_native_io_uring_x86_64.so | ||
SET Obj[7].FROM=libnetty_transport_native_io_uring_aarch_64.so | ||
SET Obj[7].TO=liborg_apache_pulsar_shade_netty_transport_native_io_uring_aarch_64.so | ||
SET Obj[8].FROM=libnetty_resolver_dns_native_macos_aarch_64.jnilib | ||
SET Obj[8].TO=liborg_apache_pulsar_shade_netty_resolver_dns_native_macos_aarch_64.jnilib | ||
SET Obj[9].FROM=libnetty_resolver_dns_native_macos_x86_64.jnilib | ||
SET Obj[9].TO=liborg_apache_pulsar_shade_netty_resolver_dns_native_macos_x86_64.jnilib | ||
SET Obj_Index=0 | ||
|
||
:LoopStart | ||
IF %Obj_Index% EQU %Obj_Length% GOTO END | ||
|
||
SET Obj_Current.FROM=0 | ||
SET Obj_Current.TO=0 | ||
|
||
FOR /F "usebackq delims==. tokens=1-3" %%I IN (`SET Obj[%Obj_Index%]`) DO ( | ||
SET Obj_Current.%%J=%%K.so | ||
) | ||
|
||
echo "Renaming %Obj_Current.FROM% -> %Obj_Current.TO%" | ||
call ren %Obj_Current.FROM% %Obj_Current.TO% | ||
|
||
SET /A Obj_Index=%Obj_Index% + 1 | ||
|
||
GOTO LoopStart | ||
:: Loop end | ||
|
||
:END | ||
cd /d %TMP_DIR% | ||
|
||
:: Overwrite the original ZIP archive | ||
rd %JAR_PATH% /s /q | ||
set ZIP_CMD=zip -q -r %JAR_PATH% . | ||
:: echo %ZIP_CMD% | ||
call %ZIP_CMD% | ||
:: echo %TMP_DIR% | ||
rd %TMP_DIR% /s /q | ||
|
||
exit /b 0 | ||
:: echo.&pause&goto:eof | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +0,0 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you 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. | ||
# | ||
|
||
set -e | ||
|
||
ARTIFACT_ID=$1 | ||
JAR_PATH="$PWD/target/$ARTIFACT_ID.jar" | ||
|
||
FILE_PREFIX='META-INF/native' | ||
|
||
FILES_TO_RENAME=( | ||
'libnetty_transport_native_epoll_x86_64.so liborg_apache_pulsar_shade_netty_transport_native_epoll_x86_64.so' | ||
'libnetty_transport_native_epoll_aarch_64.so liborg_apache_pulsar_shade_netty_transport_native_epoll_aarch_64.so' | ||
'libnetty_tcnative_linux_x86_64.so liborg_apache_pulsar_shade_netty_tcnative_linux_x86_64.so' | ||
'libnetty_tcnative_linux_aarch_64.so liborg_apache_pulsar_shade_netty_tcnative_linux_aarch_64.so' | ||
'libnetty_tcnative_osx_x86_64.jnilib liborg_apache_pulsar_shade_netty_tcnative_osx_x86_64.jnilib' | ||
'libnetty_tcnative_osx_aarch_64.jnilib liborg_apache_pulsar_shade_netty_tcnative_osx_aarch_64.jnilib' | ||
'libnetty_transport_native_io_uring_x86_64.so liborg_apache_pulsar_shade_netty_transport_native_io_uring_x86_64.so' | ||
'libnetty_transport_native_io_uring_aarch_64.so liborg_apache_pulsar_shade_netty_transport_native_io_uring_aarch_64.so' | ||
'libnetty_resolver_dns_native_macos_aarch_64.jnilib liborg_apache_pulsar_shade_netty_resolver_dns_native_macos_aarch_64.jnilib' | ||
'libnetty_resolver_dns_native_macos_x86_64.jnilib liborg_apache_pulsar_shade_netty_resolver_dns_native_macos_x86_64.jnilib' | ||
) | ||
|
||
echo "----- Renaming epoll lib in $JAR_PATH ------" | ||
TMP_DIR=`mktemp -d` | ||
CUR_DIR=$(pwd) | ||
cd ${TMP_DIR} | ||
# exclude `META-INF/LICENSE` | ||
unzip -q $JAR_PATH -x "META-INF/LICENSE" | ||
# include `META-INF/LICENSE` as LICENSE.netty. | ||
# This approach is to get around the issue that MacOS is not able to recognize the difference between `META-INF/LICENSE` and `META-INF/license/`. | ||
unzip -p $JAR_PATH META-INF/LICENSE > META-INF/LICENSE.netty | ||
cd ${CUR_DIR} | ||
|
||
pushd $TMP_DIR | ||
|
||
for line in "${FILES_TO_RENAME[@]}"; do | ||
read -r -a A <<< "$line" | ||
FROM=${A[0]} | ||
TO=${A[1]} | ||
|
||
if [ -f $FILE_PREFIX/$FROM ]; then | ||
echo "Renaming $FROM -> $TO" | ||
mv $FILE_PREFIX/$FROM $FILE_PREFIX/$TO | ||
fi | ||
done | ||
|
||
# Overwrite the original ZIP archive | ||
rm $JAR_PATH | ||
zip -q -r $JAR_PATH . | ||
popd | ||
|
||
rm -rf $TMP_DIR | ||