2016-02-01 06:43:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
2017-10-04 09:46:13 +00:00
|
|
|
VERSION=$(git describe HEAD)
|
2018-10-31 22:34:11 +00:00
|
|
|
# Only append date if we're not on a whole version, like v2018.11
|
2018-11-02 10:42:34 +00:00
|
|
|
if echo "${VERSION}" | grep -; then
|
2018-10-31 22:34:11 +00:00
|
|
|
VERSION=${VERSION}_$(git describe HEAD | xargs git show -s --format=format:"%cd" --date=short)
|
|
|
|
fi
|
2016-02-01 06:43:46 +00:00
|
|
|
|
2017-10-13 19:43:58 +00:00
|
|
|
# Default Android build to arm.
|
2018-07-01 15:35:12 +00:00
|
|
|
ANDROID_ARCH="${ANDROID_ARCH:-arm}"
|
|
|
|
if [ -z "${ANDROID_FULL_ARCH}" ]; then
|
|
|
|
if [ "${ANDROID_ARCH}" = "arm" ]; then
|
2017-10-13 19:43:58 +00:00
|
|
|
ANDROID_FULL_ARCH_APK="${ANDROID_FULL_ARCH_APK:-arm-linux-androideabi}"
|
2018-07-01 15:35:12 +00:00
|
|
|
elif [ "${ANDROID_ARCH}" = "x86" ]; then
|
2017-10-13 19:43:58 +00:00
|
|
|
ANDROID_FULL_ARCH_APK="${ANDROID_FULL_ARCH_APK:-i686-linux-android}"
|
|
|
|
else
|
|
|
|
ANDROID_FULL_ARCH_APK="${ANDROID_ARCH}"
|
|
|
|
fi
|
|
|
|
fi
|
2017-10-04 10:49:56 +00:00
|
|
|
# Default to Android 4.0+; required for NDK 15 but with a custom NDK the strict minimum is 9.
|
|
|
|
NDKABI=${NDKABI:-14}
|
|
|
|
export NDKABI
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function assert_ret_zero() {
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ "${1}" -ne 0 ]; then
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${2}" ]; then
|
2018-07-01 15:35:12 +00:00
|
|
|
echo "${2}"
|
2016-02-04 07:37:00 +00:00
|
|
|
fi
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function check_submodules() {
|
|
|
|
if git submodule status | grep -qE '^\-'; then
|
2017-04-09 08:42:16 +00:00
|
|
|
kodev-fetch-thirdparty
|
|
|
|
fi
|
2016-05-30 05:57:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-16 15:01:31 +00:00
|
|
|
# Takes two arguments:
|
|
|
|
# $1 arguments to pass to pgrep
|
|
|
|
# $2 process name to pgrep for
|
|
|
|
function gnuplot_wrapper() {
|
|
|
|
# inspired by https://gist.github.com/nicolasazrak/32d68ed6c845a095f75f037ecc2f0436
|
|
|
|
trap capture_ctrl_c INT
|
|
|
|
TEMP_DIR=$(mktemp --directory /tmp/tmp.koreaderXXX)
|
|
|
|
LOG="$TEMP_DIR/memory.log"
|
|
|
|
SCRIPT_PNG="$TEMP_DIR/script_png.p"
|
|
|
|
SCRIPT_SHOW="$TEMP_DIR/script_show.p"
|
|
|
|
IMAGE_PNG="$TEMP_DIR/graph.png"
|
|
|
|
|
|
|
|
echo "Memory plot output to $TEMP_DIR"
|
|
|
|
|
|
|
|
cat >"$SCRIPT_PNG" <<EOL
|
|
|
|
set term pngcairo size 1600,1200
|
|
|
|
set output "$IMAGE_PNG"
|
|
|
|
set ylabel "RSS"
|
|
|
|
set y2label "VSZ"
|
|
|
|
set ytics nomirror
|
|
|
|
set y2tics nomirror in
|
|
|
|
set yrange [0:*]
|
|
|
|
set y2range [0:*]
|
|
|
|
plot "$LOG" using 3 with lines axes x1y1 title "RSS", "$LOG" using 2 with lines axes x1y2 title "VSZ"
|
|
|
|
EOL
|
|
|
|
|
|
|
|
cat >"$SCRIPT_SHOW" <<EOL
|
|
|
|
set term wxt noraise
|
|
|
|
set ylabel "RSS"
|
|
|
|
set y2label "VSZ"
|
|
|
|
set ytics nomirror
|
|
|
|
set y2tics nomirror in
|
|
|
|
set yrange [0:*]
|
|
|
|
set y2range [0:*]
|
|
|
|
plot "$LOG" using 3 with lines axes x1y1 title "RSS", "$LOG" using 2 with lines axes x1y2 title "VSZ"
|
|
|
|
pause 1
|
|
|
|
reread
|
|
|
|
EOL
|
|
|
|
|
|
|
|
function capture_ctrl_c() {
|
|
|
|
kill "$LOOP_PID"
|
|
|
|
kill "$GNUPLOT_PID"
|
|
|
|
gnuplot "$SCRIPT_PNG"
|
|
|
|
exit
|
|
|
|
}
|
|
|
|
|
|
|
|
# initialize at 0 so gnuplot has something to show
|
|
|
|
echo "0 0 0" >"${LOG}"
|
|
|
|
while true; do
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
ps -p "$(pgrep --delimiter ' ' $1 "$2")" -o pid=,vsz=,rss= >>"${LOG}"
|
|
|
|
sleep 1
|
|
|
|
done &
|
|
|
|
LOOP_PID=$!
|
|
|
|
gnuplot "$SCRIPT_SHOW" &
|
|
|
|
GNUPLOT_PID=$!
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function setup_env() {
|
2017-11-21 08:49:24 +00:00
|
|
|
SETUP_ENV_GREP_COMMAND="grep -v debug"
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -n "${KODEBUG}" ]; then
|
2017-11-21 08:49:24 +00:00
|
|
|
SETUP_ENV_GREP_COMMAND="grep debug"
|
2018-03-05 10:39:31 +00:00
|
|
|
# for android adb install
|
|
|
|
KODEBUG_SUFFIX=-debug
|
2017-10-27 18:36:36 +00:00
|
|
|
fi
|
2017-11-21 08:49:24 +00:00
|
|
|
files=$(find . -maxdepth 1 -name 'koreader-emulator-*' | ${SETUP_ENV_GREP_COMMAND})/koreader
|
2017-10-27 18:36:36 +00:00
|
|
|
assert_ret_zero $? "Emulator not found. Please build it first."
|
2016-02-01 06:43:46 +00:00
|
|
|
export EMU_DIR=${files[0]}
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-fetch-thirdparty() {
|
2016-02-01 06:43:46 +00:00
|
|
|
make fetchthirdparty
|
|
|
|
}
|
|
|
|
|
|
|
|
SUPPORTED_TARGETS="
|
2018-04-22 13:22:11 +00:00
|
|
|
kindle Compatible with all Kindle models >= Kindle4
|
|
|
|
kindlepw2 With compiler optimizations for Kindle models >= Paperwhite 2
|
|
|
|
kindle-legacy Needed only for Kindle2/3/DXG
|
2016-02-01 06:43:46 +00:00
|
|
|
kobo
|
2018-10-31 22:48:36 +00:00
|
|
|
cervantes
|
2018-09-07 23:37:04 +00:00
|
|
|
sony-prstux
|
2016-02-01 06:43:46 +00:00
|
|
|
android
|
|
|
|
pocketbook
|
|
|
|
ubuntu-touch
|
2018-04-08 20:39:52 +00:00
|
|
|
appimage
|
2019-01-03 17:21:35 +00:00
|
|
|
debian Debian package for current arch
|
|
|
|
debian-armel Debian package for generic armel devices
|
|
|
|
debian-armhf Debian package for generic armhf devices
|
2016-02-01 06:43:46 +00:00
|
|
|
emu (*default) If no TARGET is given, assume emulator
|
|
|
|
win32
|
|
|
|
"
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-build() {
|
2016-02-01 06:43:46 +00:00
|
|
|
BUILD_HELP_MSG="
|
2016-02-19 17:38:00 +00:00
|
|
|
usage: build <OPTIONS> <TARGET>
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
|
|
|
-v, --verbose Build in verbose mode.
|
2018-01-04 17:35:02 +00:00
|
|
|
--debug include debugging symbols (default for emulator)
|
|
|
|
--no-debug no debugging symbols (default for target devices)
|
2016-02-01 06:43:46 +00:00
|
|
|
|
|
|
|
TARGET:
|
|
|
|
${SUPPORTED_TARGETS}"
|
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
while [[ "${1}" == '-'* ]]; do
|
|
|
|
PARAM=$(echo "${1}" | awk -F= '{print $1}')
|
|
|
|
VALUE=$(echo "${1}" | awk -F= '{print $2}')
|
|
|
|
case "${PARAM}" in
|
2016-02-19 17:38:00 +00:00
|
|
|
-v | --verbose)
|
2017-04-11 09:28:01 +00:00
|
|
|
export VERBOSE=1
|
|
|
|
;;
|
2016-02-19 17:38:00 +00:00
|
|
|
-h | --help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${BUILD_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2018-01-04 17:35:02 +00:00
|
|
|
--no-debug)
|
|
|
|
export KODEBUG=
|
|
|
|
KODEBUG_NO_DEFAULT=1
|
|
|
|
;;
|
|
|
|
--debug)
|
|
|
|
export KODEBUG=1
|
|
|
|
KODEBUG_NO_DEFAULT=1
|
|
|
|
;;
|
2016-02-19 17:38:00 +00:00
|
|
|
*)
|
|
|
|
echo "ERROR: unknown option \"$PARAM\""
|
|
|
|
echo "${BUILD_HELP_MSG}"
|
2017-04-11 09:28:01 +00:00
|
|
|
exit 1
|
|
|
|
;;
|
2016-02-19 17:38:00 +00:00
|
|
|
esac
|
2016-02-19 17:39:05 +00:00
|
|
|
shift 1
|
2016-02-19 17:38:00 +00:00
|
|
|
done
|
|
|
|
|
2016-10-02 04:42:00 +00:00
|
|
|
check_submodules
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${1}" in
|
2018-10-31 22:48:36 +00:00
|
|
|
cervantes)
|
|
|
|
make TARGET=cervantes
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kindle)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindle
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-10-10 06:52:19 +00:00
|
|
|
kindlepw2)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindlepw2
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kobo)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kobo
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2018-09-07 23:37:04 +00:00
|
|
|
sony-prstux)
|
|
|
|
make TARGET=sony-prstux
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kindle-legacy)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindle-legacy
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
android)
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -z "${NDK}" ]; then
|
|
|
|
if [ -n "${ANDROID_NDK}" ]; then
|
2017-08-11 15:28:54 +00:00
|
|
|
# some distributions use `ANDROID_NDK` instead, fall back to it
|
|
|
|
export NDK="${ANDROID_NDK}"
|
|
|
|
else
|
2017-09-17 14:04:43 +00:00
|
|
|
export NDK="${CURDIR}/base/toolchain/android-ndk-r15c"
|
2017-08-11 15:28:54 +00:00
|
|
|
fi
|
|
|
|
fi
|
2017-10-13 19:43:58 +00:00
|
|
|
[ -e "${CURDIR}/base/toolchain/android-toolchain-${ANDROID_ARCH}/bin/" ] || {
|
2017-04-11 09:28:01 +00:00
|
|
|
{ [ -e "${NDK}" ] || make -C "${CURDIR}/base/toolchain" android-ndk; }
|
2017-10-27 15:13:53 +00:00
|
|
|
assert_ret_zero $?
|
2017-04-11 09:28:01 +00:00
|
|
|
make android-toolchain
|
|
|
|
assert_ret_zero $?
|
2016-10-02 04:42:00 +00:00
|
|
|
}
|
|
|
|
echo "Using NDK: ${NDK}..."
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=android
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
pocketbook)
|
2018-11-18 17:26:38 +00:00
|
|
|
if ! command -v arm-obreey-linux-gnueabi-gcc>/dev/null && [ ! -d "${CURDIR}/base/toolchain/pocketbook-toolchain" ]; then
|
2017-04-11 09:28:01 +00:00
|
|
|
make pocketbook-toolchain
|
|
|
|
assert_ret_zero $?
|
2016-02-01 06:43:46 +00:00
|
|
|
fi
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=pocketbook
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
ubuntu-touch)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=ubuntu-touch
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2018-04-08 20:39:52 +00:00
|
|
|
appimage)
|
|
|
|
make TARGET=appimage
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2019-01-03 17:21:35 +00:00
|
|
|
debian)
|
|
|
|
make TARGET=debian
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
|
|
|
debian-armel)
|
|
|
|
make TARGET=debian-armel
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
|
|
|
debian-armhf)
|
|
|
|
make TARGET=debian-armhf
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
win32)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=win32
|
|
|
|
assert_ret_zero $?
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
*)
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -z "${KODEBUG_NO_DEFAULT}" ]; then # no explicit --debug / --no-debug
|
2018-01-04 17:35:02 +00:00
|
|
|
# builds a debug build by default, like kodev-run
|
|
|
|
export KODEBUG=1
|
|
|
|
fi
|
2016-02-01 06:43:46 +00:00
|
|
|
make
|
2016-07-10 22:52:24 +00:00
|
|
|
assert_ret_zero $? "Failed to build emulator! Try run with -v for more information."
|
2017-04-11 09:28:01 +00:00
|
|
|
setup_env
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-clean() {
|
2016-02-01 06:43:46 +00:00
|
|
|
CLEAN_HELP_MSG="
|
|
|
|
usage: clean <TARGET>
|
|
|
|
|
|
|
|
TARGET:
|
|
|
|
${SUPPORTED_TARGETS}"
|
|
|
|
|
2018-10-14 06:49:37 +00:00
|
|
|
while [[ "${1}" == '-'* ]]; do
|
|
|
|
PARAM=$(echo "${1}" | awk -F= '{print $1}')
|
|
|
|
VALUE=$(echo "${1}" | awk -F= '{print $2}')
|
|
|
|
case "${PARAM}" in
|
|
|
|
--no-debug)
|
|
|
|
export KODEBUG=
|
|
|
|
KODEBUG_NO_DEFAULT=1
|
|
|
|
;;
|
|
|
|
--debug)
|
|
|
|
export KODEBUG=1
|
|
|
|
KODEBUG_NO_DEFAULT=1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "ERROR: unknown option \"$PARAM\""
|
|
|
|
echo "${BUILD_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift 1
|
|
|
|
done
|
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${1}" in
|
2016-02-01 06:43:46 +00:00
|
|
|
-h | --help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${CLEAN_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2018-10-31 22:48:36 +00:00
|
|
|
cervantes)
|
|
|
|
make TARGET=cervantes clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kindle)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindle clean
|
|
|
|
;;
|
2016-10-10 06:52:19 +00:00
|
|
|
kindlepw2)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindlepw2 clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kobo)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kobo clean
|
|
|
|
;;
|
2018-09-07 23:37:04 +00:00
|
|
|
sony-prstux)
|
|
|
|
make TARGET=sony-prstux clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kindle-legacy)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindle-legacy clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
android)
|
|
|
|
make TARGET=android clean
|
2017-04-11 09:28:01 +00:00
|
|
|
rm -f ./*.apk
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
pocketbook)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=pocketbook clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
ubuntu-touch)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=ubuntu-touch clean
|
|
|
|
;;
|
2018-04-08 20:39:52 +00:00
|
|
|
appimage)
|
|
|
|
make TARGET=appimage clean
|
|
|
|
;;
|
2019-01-03 17:21:35 +00:00
|
|
|
debian)
|
|
|
|
make TARGET=debian clean
|
|
|
|
;;
|
|
|
|
debian-armel)
|
|
|
|
make TARGET=debian-armel clean
|
|
|
|
;;
|
|
|
|
debian-armhf)
|
|
|
|
make TARGET=debian-armhf clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
win32)
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=win32 clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
*)
|
2018-10-14 06:49:37 +00:00
|
|
|
if [ -z "${KODEBUG_NO_DEFAULT}" ]; then # no explicit --debug / --no-debug
|
|
|
|
# builds a debug build by default, like kodev-run
|
|
|
|
export KODEBUG=1
|
|
|
|
fi
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
make clean
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-release() {
|
2016-02-01 06:43:46 +00:00
|
|
|
# SUPPORTED_RELEASE_TARGETS=$(echo ${SUPPORTED_TARGETS} | sed 's/win32//')
|
|
|
|
SUPPORTED_RELEASE_TARGETS="${SUPPORTED_TARGETS/emu*/""}"
|
|
|
|
RELEASE_HELP_MSG="
|
2017-05-08 09:37:29 +00:00
|
|
|
usage: release <OPTIONS> <TARGET>
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
2017-10-20 13:59:53 +00:00
|
|
|
--debug debug-enabled release (for remote gdb)
|
2017-05-08 09:37:29 +00:00
|
|
|
--ignore-translation do not fetch translation for release
|
2016-02-01 06:43:46 +00:00
|
|
|
|
|
|
|
TARGET:
|
|
|
|
${SUPPORTED_RELEASE_TARGETS}"
|
2017-04-11 09:28:01 +00:00
|
|
|
[ $# -lt 1 ] && {
|
|
|
|
echo "${RELEASE_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
}
|
2016-02-01 06:43:46 +00:00
|
|
|
|
2017-05-08 09:37:29 +00:00
|
|
|
ignore_translation=0
|
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
while [[ "${1}" == '-'* ]]; do
|
|
|
|
PARAM=$(echo "${1}" | awk -F= '{print $1}')
|
|
|
|
VALUE=$(echo "${1}" | awk -F= '{print $2}')
|
|
|
|
case "${PARAM}" in
|
2017-10-20 13:59:53 +00:00
|
|
|
--debug)
|
|
|
|
export KODEBUG=1
|
|
|
|
;;
|
2017-05-08 09:37:29 +00:00
|
|
|
--ignore-translation)
|
|
|
|
ignore_translation=1
|
|
|
|
;;
|
2016-10-12 05:02:51 +00:00
|
|
|
-v | --verbose)
|
2017-04-11 09:28:01 +00:00
|
|
|
export VERBOSE=1
|
|
|
|
;;
|
2016-10-12 05:02:51 +00:00
|
|
|
-h | --help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${RELEASE_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2016-10-12 05:02:51 +00:00
|
|
|
*)
|
|
|
|
echo "ERROR: unknown option \"$PARAM\""
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${RELEASE_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2016-10-12 05:02:51 +00:00
|
|
|
esac
|
|
|
|
shift 1
|
|
|
|
done
|
|
|
|
|
2017-05-08 09:37:29 +00:00
|
|
|
if [ "${ignore_translation}" -eq 0 ]; then
|
2018-03-26 11:08:45 +00:00
|
|
|
if command -v tx>/dev/null; then
|
2017-05-08 09:37:29 +00:00
|
|
|
make po || {
|
|
|
|
echo "ERROR: failed to fetch translation."
|
|
|
|
echo "Tip: Use --ignore-translation OPTION if you want to build a release without translation."
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
else
|
|
|
|
echo "WARN: Transifex client not found, no translation pulled."
|
|
|
|
fi
|
|
|
|
fi
|
2016-10-12 05:02:51 +00:00
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${1}" in
|
2016-02-01 06:43:46 +00:00
|
|
|
kindle)
|
|
|
|
kodev-build kindle
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindle update
|
|
|
|
;;
|
2016-10-10 06:52:19 +00:00
|
|
|
kindlepw2)
|
|
|
|
kodev-build kindlepw2
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindlepw2 update
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kobo)
|
|
|
|
kodev-build kobo
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kobo update
|
|
|
|
;;
|
2018-09-07 23:37:04 +00:00
|
|
|
sony-prstux)
|
|
|
|
kodev-build sony-prstux
|
|
|
|
make TARGET=sony-prstux update
|
|
|
|
;;
|
2018-10-31 22:48:36 +00:00
|
|
|
cervantes)
|
|
|
|
kodev-build cervantes
|
|
|
|
make TARGET=cervantes update
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
kindle-legacy)
|
|
|
|
kodev-build kindle-legacy
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=kindle-legacy update
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
android)
|
|
|
|
kodev-build android
|
2016-10-02 04:42:00 +00:00
|
|
|
export PATH=$PATH:${CURDIR}/base/toolchain/android-sdk-linux/tools
|
2018-03-26 11:08:45 +00:00
|
|
|
command -v android &>/dev/null || {
|
2017-04-11 09:28:01 +00:00
|
|
|
make -C "${CURDIR}/base/toolchain" android-sdk
|
2016-10-02 04:42:00 +00:00
|
|
|
}
|
2018-03-26 11:08:45 +00:00
|
|
|
ANDROID_HOME=$(dirname "$(dirname "$(command -v android)")")
|
2017-03-05 13:23:25 +00:00
|
|
|
export ANDROID_HOME
|
2016-10-02 04:42:00 +00:00
|
|
|
export PATH=$PATH:${NDK}
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=android update
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
pocketbook)
|
|
|
|
kodev-build pocketbook
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=pocketbook update
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
ubuntu-touch)
|
2018-04-08 20:39:52 +00:00
|
|
|
kodev-build ubuntu-touch
|
2017-04-11 09:28:01 +00:00
|
|
|
make TARGET=ubuntu-touch update
|
|
|
|
;;
|
2018-04-08 20:39:52 +00:00
|
|
|
appimage)
|
|
|
|
kodev-build appimage
|
|
|
|
make TARGET=appimage update
|
|
|
|
;;
|
2019-01-03 17:21:35 +00:00
|
|
|
debian)
|
|
|
|
kodev-build debian
|
|
|
|
make TARGET=debian update
|
|
|
|
;;
|
|
|
|
debian-armel)
|
|
|
|
kodev-build debian-armel
|
|
|
|
make TARGET=debian-armel update
|
|
|
|
;;
|
|
|
|
debian-armhf)
|
|
|
|
kodev-build debian-armhf
|
|
|
|
make TARGET=debian-armhf update
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
*)
|
|
|
|
echo "Unsupported target for release: $1."
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${RELEASE_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-wbuilder() {
|
2016-02-01 06:43:46 +00:00
|
|
|
kodev-build
|
|
|
|
echo "[*] Running wbuilder.lua..."
|
2017-04-11 09:28:01 +00:00
|
|
|
pushd "${EMU_DIR}" && {
|
2016-11-25 14:57:02 +00:00
|
|
|
EMULATE_READER_W=540 EMULATE_READER_H=720 ./luajit ./tools/wbuilder.lua
|
2017-09-16 15:01:31 +00:00
|
|
|
} && popd || exit
|
2016-02-01 06:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-run() {
|
2016-02-01 06:43:46 +00:00
|
|
|
RUN_HELP_MSG="
|
2017-10-04 09:46:13 +00:00
|
|
|
usage: run <OPTIONS> <TARGET>
|
2016-02-01 06:43:46 +00:00
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
2017-04-23 04:32:58 +00:00
|
|
|
-h=X, --screen-height=X set height of the emulator screen (default: 720)
|
|
|
|
-w=X, --screen-width=X set width of the emulator screen (default: 540)
|
2017-09-14 11:19:20 +00:00
|
|
|
-d=X, --screen-dpi=X set DPI of the emulator screen (default: 160)
|
2017-04-23 04:32:58 +00:00
|
|
|
--no-build run reader without rebuilding
|
2017-10-20 13:59:53 +00:00
|
|
|
--no-debug no debugging symbols (requires rebuilding)
|
2017-04-23 04:32:58 +00:00
|
|
|
--disable-touch use this if you want to simulate keyboard only devices
|
|
|
|
-s=FOO --simulate=FOO simulate dimension and other specs for a given device model
|
2017-09-14 11:19:20 +00:00
|
|
|
supported model: kobo-aura-one, kindle3, hidpi
|
2017-10-20 13:59:53 +00:00
|
|
|
--gdb=X run with debugger (default: nemiver)
|
2017-09-16 15:01:31 +00:00
|
|
|
--graph graph memory use (requires gnuplot)
|
2017-10-20 13:59:53 +00:00
|
|
|
--valgrind=X run with valgrind (default: valgrind --trace-children=yes)
|
2017-10-04 09:46:13 +00:00
|
|
|
|
|
|
|
TARGET:
|
|
|
|
|
|
|
|
android install and run KOReader on an Android device connected through ADB
|
2016-02-01 06:43:46 +00:00
|
|
|
"
|
2016-03-17 06:05:09 +00:00
|
|
|
screen_width=540
|
|
|
|
screen_height=720
|
2017-10-20 13:59:53 +00:00
|
|
|
export KODEBUG=1
|
2018-07-01 15:35:12 +00:00
|
|
|
while [[ "${1}" == '-'* ]]; do
|
|
|
|
PARAM=$(echo "${1}" | awk -F= '{print $1}')
|
|
|
|
VALUE=$(echo "${1}" | awk -F= '{print $2}')
|
|
|
|
case "${PARAM}" in
|
2016-02-01 06:43:46 +00:00
|
|
|
--disable-touch)
|
2017-04-11 09:28:01 +00:00
|
|
|
export DISABLE_TOUCH=1
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
--no-build)
|
2018-07-01 15:35:12 +00:00
|
|
|
no_build=1
|
2017-04-11 09:28:01 +00:00
|
|
|
;;
|
2017-10-20 13:59:53 +00:00
|
|
|
--no-debug)
|
|
|
|
export KODEBUG=
|
|
|
|
;;
|
|
|
|
--gdb)
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${VALUE}" ]; then
|
2017-10-20 13:59:53 +00:00
|
|
|
gdb=${VALUE}
|
|
|
|
else
|
|
|
|
# Try to use friendly defaults for gdb
|
|
|
|
if command -v nemiver >/dev/null; then
|
|
|
|
# Nemiver is a nice GUI
|
|
|
|
gdb=nemiver
|
|
|
|
elif command -v ddd >/dev/null; then
|
|
|
|
# DDD is a slightly less nice GUI
|
|
|
|
gdb=ddd
|
|
|
|
elif command -v cgdb >/dev/null; then
|
|
|
|
# cgdb is a nice curses-based gdb front
|
|
|
|
gdb=cgdb
|
|
|
|
elif command -v gdb >/dev/null; then
|
|
|
|
# gdb -tui is a slightly less nice terminal user interface
|
|
|
|
gdb="gdb -tui"
|
|
|
|
else
|
|
|
|
echo "Couldn't find gdb."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
2017-09-16 15:01:31 +00:00
|
|
|
--graph)
|
2018-07-01 15:35:12 +00:00
|
|
|
graph_memory=1
|
2017-09-16 15:01:31 +00:00
|
|
|
;;
|
2017-10-20 13:59:53 +00:00
|
|
|
--valgrind)
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${VALUE}" ]; then
|
2017-10-20 13:59:53 +00:00
|
|
|
valgrind=${VALUE}
|
|
|
|
else
|
|
|
|
# Try to use sensible defaults for valgrind
|
|
|
|
if command -v valgrind >/dev/null; then
|
|
|
|
valgrind="valgrind --trace-children=yes"
|
|
|
|
else
|
|
|
|
echo "Couldn't find valgrind."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
2016-03-17 06:05:09 +00:00
|
|
|
-w | --screen-width)
|
2017-04-11 09:28:01 +00:00
|
|
|
screen_width=${VALUE}
|
|
|
|
;;
|
2016-03-17 06:05:09 +00:00
|
|
|
-h | --screen-height)
|
2017-10-01 15:13:47 +00:00
|
|
|
# simple numeric check due to overlap between -h for help and height
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${VALUE##*[!0-9]*}" ]; then
|
2017-10-01 15:13:47 +00:00
|
|
|
screen_height=${VALUE}
|
|
|
|
else
|
|
|
|
echo "${RUN_HELP_MSG}"
|
2017-10-20 13:59:53 +00:00
|
|
|
exit 1
|
2017-10-01 15:13:47 +00:00
|
|
|
fi
|
2017-04-11 09:28:01 +00:00
|
|
|
;;
|
2017-09-14 11:19:20 +00:00
|
|
|
-d | --screen-dpi)
|
|
|
|
screen_dpi=${VALUE}
|
|
|
|
;;
|
2017-04-23 04:32:58 +00:00
|
|
|
-s | --simulate)
|
|
|
|
device_model=${VALUE}
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${device_model}" in
|
2017-04-23 04:32:58 +00:00
|
|
|
kindle3)
|
|
|
|
screen_width=600
|
|
|
|
screen_height=800
|
|
|
|
;;
|
|
|
|
kobo-aura-one)
|
|
|
|
screen_width=1404
|
|
|
|
screen_height=1872
|
2017-09-14 11:19:20 +00:00
|
|
|
screen_dpi=300
|
|
|
|
;;
|
|
|
|
hidpi)
|
|
|
|
screen_width=1500
|
|
|
|
screen_height=2000
|
|
|
|
screen_dpi=600
|
2017-04-23 04:32:58 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "ERROR: spec unknown for ${device_model}."
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2017-10-01 15:13:47 +00:00
|
|
|
--help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${RUN_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
*)
|
|
|
|
echo "ERROR: unknown option \"$PARAM\""
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${RUN_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${1}" in
|
2017-10-04 09:46:13 +00:00
|
|
|
android)
|
|
|
|
command -v adb >/dev/null && {
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -z "${no_build}" ]; then
|
2017-10-04 09:46:13 +00:00
|
|
|
echo "[*] Building KOReader for Android…"
|
|
|
|
kodev-release --ignore-translation android
|
2017-10-27 18:36:36 +00:00
|
|
|
assert_ret_zero $?
|
2017-10-04 09:46:13 +00:00
|
|
|
fi
|
2017-10-28 10:02:28 +00:00
|
|
|
setup_env
|
2017-10-04 09:46:13 +00:00
|
|
|
# clear logcat to get rid of useless cruft
|
|
|
|
adb logcat -c
|
|
|
|
# uninstall existing package to make sure *everything* is gone from memory
|
2017-10-27 18:36:36 +00:00
|
|
|
# no assert_ret_zero; uninstall is allowed to fail if there's nothing to uninstall
|
2017-10-04 09:46:13 +00:00
|
|
|
adb uninstall "org.koreader.launcher"
|
2017-10-27 18:36:36 +00:00
|
|
|
adb install "koreader-android-${ANDROID_FULL_ARCH_APK}${KODEBUG_SUFFIX}-${VERSION}.apk"
|
|
|
|
assert_ret_zero $?
|
2017-10-04 09:46:13 +00:00
|
|
|
# there's no adb run so we do this…
|
|
|
|
adb shell monkey -p org.koreader.launcher -c android.intent.category.LAUNCHER 1
|
2017-10-27 18:36:36 +00:00
|
|
|
assert_ret_zero $?
|
2019-02-09 14:11:52 +00:00
|
|
|
adb logcat KOReader:V luajit-launcher:V "*:E"
|
2017-10-04 09:46:13 +00:00
|
|
|
} || echo "Failed to find adb in PATH to interact with Android device."
|
|
|
|
;;
|
|
|
|
*)
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -z "${no_build}" ]; then
|
2017-10-04 09:46:13 +00:00
|
|
|
echo "[*] Building KOReader…"
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -z "${KODEBUG}" ]; then
|
|
|
|
kodev-build --no-debug
|
|
|
|
else
|
|
|
|
kodev-build
|
|
|
|
fi
|
2017-10-04 09:46:13 +00:00
|
|
|
else
|
|
|
|
setup_env
|
|
|
|
fi
|
2016-02-01 06:43:46 +00:00
|
|
|
|
2017-10-04 09:46:13 +00:00
|
|
|
if [ ! -d "${EMU_DIR}" ]; then
|
|
|
|
echo "Failed to find emulator directory! Please try build command first."
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-02-04 04:34:10 +00:00
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -n "${graph_memory}" ]; then
|
2017-10-04 09:46:13 +00:00
|
|
|
gnuplot_wrapper "--parent $$" "reader.lua"
|
|
|
|
fi
|
2017-09-16 15:01:31 +00:00
|
|
|
|
2017-10-04 09:46:13 +00:00
|
|
|
# run with catchsegv by default when it is available
|
|
|
|
# see https://github.com/koreader/koreader/issues/2878#issuecomment-326796777
|
|
|
|
if command -v catchsegv >/dev/null; then
|
2018-03-26 11:08:45 +00:00
|
|
|
CATCHSEGV=$(command -v catchsegv)
|
2017-10-04 09:46:13 +00:00
|
|
|
fi
|
2017-10-01 15:13:47 +00:00
|
|
|
|
2018-01-04 17:35:02 +00:00
|
|
|
KOREADER_COMMAND="${CATCHSEGV} ./reader.lua -d"
|
2017-10-20 13:59:53 +00:00
|
|
|
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${gdb}" ]; then
|
2018-01-04 17:35:02 +00:00
|
|
|
KOREADER_COMMAND="${gdb} ./luajit reader.lua -d"
|
2017-10-20 13:59:53 +00:00
|
|
|
fi
|
|
|
|
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${valgrind}" ]; then
|
2018-01-04 17:35:02 +00:00
|
|
|
KOREADER_COMMAND="${valgrind} ./luajit reader.lua -d"
|
2017-10-20 13:59:53 +00:00
|
|
|
fi
|
|
|
|
|
2017-10-04 09:46:13 +00:00
|
|
|
echo "[*] Running KOReader with arguments: $*..."
|
|
|
|
pushd "${EMU_DIR}" && {
|
|
|
|
if [ $# -lt 1 ]; then
|
|
|
|
args=${CURDIR}/test
|
|
|
|
else
|
|
|
|
args="$*"
|
2018-07-01 15:35:12 +00:00
|
|
|
[[ "${args}" != /* ]] && args="${CURDIR}/${args}"
|
2017-10-04 09:46:13 +00:00
|
|
|
fi
|
2018-01-04 17:35:02 +00:00
|
|
|
KOREADER_COMMAND="$KOREADER_COMMAND ${args}"
|
2016-02-01 06:43:46 +00:00
|
|
|
|
2017-10-04 09:46:13 +00:00
|
|
|
RETURN_VALUE=85
|
2018-07-01 15:35:12 +00:00
|
|
|
while [ "${RETURN_VALUE}" -eq 85 ]; do
|
2017-10-04 09:46:13 +00:00
|
|
|
EMULATE_READER_W=${screen_width} EMULATE_READER_H=${screen_height} EMULATE_READER_DPI=${screen_dpi} \
|
2017-10-20 13:59:53 +00:00
|
|
|
${KOREADER_COMMAND}
|
2017-10-04 09:46:13 +00:00
|
|
|
RETURN_VALUE=$?
|
|
|
|
done
|
|
|
|
} && popd || exit
|
2017-09-16 15:01:31 +00:00
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ -n "${graph_memory}" ]; then
|
2017-10-04 09:46:13 +00:00
|
|
|
capture_ctrl_c
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
2016-02-01 06:43:46 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-test() {
|
2016-02-04 07:37:00 +00:00
|
|
|
TEST_HELP_MSG="
|
2016-02-16 06:34:48 +00:00
|
|
|
usage: test <OPTIONS> [front|base] <TEST_NAME>
|
2016-02-04 07:37:00 +00:00
|
|
|
|
|
|
|
TEST_NAME is optional. If no TEST_NAME is given, all tests will be run.
|
2016-02-16 06:34:48 +00:00
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
|
|
|
--tags=TAGS only run tests with given tags
|
2016-02-04 07:37:00 +00:00
|
|
|
"
|
2018-07-01 15:35:12 +00:00
|
|
|
while [[ "${1}" == '-'* ]]; do
|
|
|
|
PARAM=$(echo "${1}" | awk -F= '{print $1}')
|
|
|
|
VALUE=$(echo "${1}" | awk -F= '{print $2}')
|
|
|
|
case "${PARAM}" in
|
2017-09-16 15:01:31 +00:00
|
|
|
--graph)
|
2018-07-01 15:35:12 +00:00
|
|
|
graph_memory=1
|
2017-09-16 15:01:31 +00:00
|
|
|
;;
|
2016-02-16 06:34:48 +00:00
|
|
|
--tags)
|
2017-04-11 09:28:01 +00:00
|
|
|
opts="--tags=${VALUE}"
|
|
|
|
;;
|
2016-02-16 06:34:48 +00:00
|
|
|
-h | --help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${TEST_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2016-02-16 06:34:48 +00:00
|
|
|
*)
|
|
|
|
echo "ERROR: unknown option \"$PARAM\""
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${TEST_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2016-02-16 06:34:48 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
2016-02-04 07:37:00 +00:00
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
[ $# -lt 1 ] && {
|
|
|
|
echo "${TEST_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
}
|
2018-07-01 15:35:12 +00:00
|
|
|
[[ "${1}" != "front" && "${1}" != "base" ]] && {
|
2016-10-28 07:26:56 +00:00
|
|
|
echo "Invalid test suite: $1!"
|
|
|
|
echo "${TEST_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
}
|
2016-02-04 07:37:00 +00:00
|
|
|
|
2016-10-02 04:42:00 +00:00
|
|
|
check_submodules && make
|
2016-02-04 07:37:00 +00:00
|
|
|
setup_env
|
2017-09-16 15:01:31 +00:00
|
|
|
|
2016-05-06 12:06:48 +00:00
|
|
|
make "${EMU_DIR}/.busted"
|
2017-04-11 09:28:01 +00:00
|
|
|
pushd "${EMU_DIR}" && {
|
2016-10-02 04:42:00 +00:00
|
|
|
test_path="./spec/$1/unit"
|
2017-05-16 09:11:11 +00:00
|
|
|
rm -rf "${test_path}"/data/*.sdr
|
2016-02-04 07:37:00 +00:00
|
|
|
|
2018-11-02 10:42:34 +00:00
|
|
|
if [ -n "${2}" ]; then
|
2016-10-02 04:42:00 +00:00
|
|
|
test_path="${test_path}/$2"
|
|
|
|
fi
|
2016-02-04 07:37:00 +00:00
|
|
|
|
2017-03-05 13:23:25 +00:00
|
|
|
echo "Running tests in" "${test_path}"
|
|
|
|
busted --lua="./luajit" "${opts}" \
|
2016-10-02 04:42:00 +00:00
|
|
|
--no-auto-insulate \
|
|
|
|
--lazy \
|
2017-10-11 12:22:11 +00:00
|
|
|
--output=gtest \
|
2016-10-02 04:42:00 +00:00
|
|
|
--exclude-tags=notest "${test_path}"
|
2017-09-16 15:01:31 +00:00
|
|
|
} && popd || exit
|
2016-02-04 07:37:00 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-cov() {
|
2017-02-02 11:13:39 +00:00
|
|
|
COV_HELP_MSG="
|
|
|
|
usage: cov <OPTIONS>
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
|
|
|
--show-previous show coverage stats from previous run
|
|
|
|
--full show full coverage report (down to each line)
|
|
|
|
"
|
|
|
|
show_full=0
|
|
|
|
show_previous=0
|
2018-07-01 15:35:12 +00:00
|
|
|
while [[ "${1}" == '-'* ]]; do
|
|
|
|
PARAM=$(echo "${1}" | awk -F= '{print $1}')
|
|
|
|
VALUE=$(echo "${1}" | awk -F= '{print $2}')
|
|
|
|
case "${PARAM}" in
|
2017-02-02 11:13:39 +00:00
|
|
|
--full)
|
2017-04-11 09:28:01 +00:00
|
|
|
show_full=1
|
|
|
|
;;
|
2017-02-02 11:13:39 +00:00
|
|
|
--show-previous)
|
2017-04-11 09:28:01 +00:00
|
|
|
show_previous=1
|
|
|
|
;;
|
2017-02-02 11:13:39 +00:00
|
|
|
-h | --help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${COV_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2017-02-02 11:13:39 +00:00
|
|
|
*)
|
|
|
|
echo "ERROR: unknown option \"$PARAM\""
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${COV_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2017-02-02 11:13:39 +00:00
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
check_submodules && make
|
|
|
|
setup_env
|
|
|
|
make "${EMU_DIR}/.busted"
|
2017-04-11 09:28:01 +00:00
|
|
|
pushd "${EMU_DIR}" && {
|
2017-02-02 11:13:39 +00:00
|
|
|
target=front
|
|
|
|
test_path="./spec/${target}/unit"
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ "${show_previous}" -eq 0 ]; then
|
2017-02-02 11:13:39 +00:00
|
|
|
echo "Running tests in" ${test_path}
|
|
|
|
busted --lua="./luajit" \
|
|
|
|
--sort-files \
|
|
|
|
--no-auto-insulate \
|
|
|
|
--lazy \
|
|
|
|
-o "./spec/${target}/unit/verbose_print" \
|
|
|
|
--coverage \
|
|
|
|
--exclude-tags=nocov "${test_path}" || {
|
2017-04-27 08:25:17 +00:00
|
|
|
echo "Failed to run tests!" && exit 1
|
|
|
|
}
|
2017-02-02 11:13:39 +00:00
|
|
|
fi
|
2018-07-01 15:35:12 +00:00
|
|
|
if [ "${show_full}" -eq 1 ]; then
|
2017-02-02 11:13:39 +00:00
|
|
|
cat luacov.report.out
|
|
|
|
else
|
2017-04-27 08:25:17 +00:00
|
|
|
LUACOV_REPORT_SUMMARY=$(grep -nm1 -e '^Summary$' luacov.report.out | cut -d: -f1)
|
2017-02-02 11:13:39 +00:00
|
|
|
tail -n \
|
2017-04-27 08:25:17 +00:00
|
|
|
+$((LUACOV_REPORT_SUMMARY - 1)) \
|
2017-02-02 11:13:39 +00:00
|
|
|
luacov.report.out
|
|
|
|
fi
|
2017-09-16 15:01:31 +00:00
|
|
|
} && popd || exit
|
2017-02-02 11:13:39 +00:00
|
|
|
}
|
|
|
|
|
2017-04-11 09:28:01 +00:00
|
|
|
function kodev-log() {
|
2016-02-28 20:16:32 +00:00
|
|
|
LOG_HELP_MSG="
|
|
|
|
usage: log <TARGET>
|
|
|
|
|
|
|
|
TARGET:
|
|
|
|
|
|
|
|
android
|
|
|
|
"
|
2017-04-11 09:28:01 +00:00
|
|
|
[ $# -lt 1 ] && {
|
|
|
|
echo "${LOG_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
}
|
2016-02-28 20:16:32 +00:00
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${1}" in
|
2016-02-28 20:16:32 +00:00
|
|
|
-h | --help)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${LOG_HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2016-02-28 20:16:32 +00:00
|
|
|
android)
|
2017-04-11 09:28:01 +00:00
|
|
|
adb logcat 'luajit-launcher:D KOReader:D *:S'
|
|
|
|
;;
|
2016-02-28 20:16:32 +00:00
|
|
|
*)
|
|
|
|
echo "Unsupported target: $1."
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${LOG_HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2016-02-28 20:16:32 +00:00
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2016-02-01 06:43:46 +00:00
|
|
|
HELP_MSG="
|
|
|
|
usage: $0 COMMAND <ARGS>
|
|
|
|
|
|
|
|
Supported commands:
|
|
|
|
|
2016-03-28 00:18:45 +00:00
|
|
|
activate Bootstrap shell environment for kodev
|
2016-02-11 06:27:41 +00:00
|
|
|
build Build KOReader
|
|
|
|
clean Clean KOReader build
|
2016-03-28 00:18:45 +00:00
|
|
|
fetch-thirdparty Fetch thirdparty dependencies for build
|
|
|
|
log Tail log stream for a running KOReader app
|
2016-02-11 06:27:41 +00:00
|
|
|
release Build KOReader release package
|
|
|
|
run Run KOReader
|
|
|
|
test Run tests
|
2016-03-28 00:18:45 +00:00
|
|
|
wbuilder Run wbuilder.lua script (useful for building new UI widget)
|
2016-02-01 06:43:46 +00:00
|
|
|
"
|
2017-04-11 09:28:01 +00:00
|
|
|
[ $# -lt 1 ] && {
|
|
|
|
echo "Missing command."
|
|
|
|
echo "${HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
}
|
2016-02-01 06:43:46 +00:00
|
|
|
|
2018-07-01 15:35:12 +00:00
|
|
|
case "${1}" in
|
2016-03-28 00:18:45 +00:00
|
|
|
activate)
|
2016-04-10 07:35:48 +00:00
|
|
|
echo "adding ${CURDIR} to \$PATH..."
|
2016-03-28 00:18:45 +00:00
|
|
|
export PATH="${PATH}:${CURDIR}"
|
2017-03-05 13:23:25 +00:00
|
|
|
eval "$(luarocks path --bin)"
|
2017-04-11 09:28:01 +00:00
|
|
|
exec "${SHELL}"
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
fetch-thirdparty)
|
2017-04-11 09:28:01 +00:00
|
|
|
kodev-fetch-thirdparty
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
clean)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-clean "$@"
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
build)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-build "$@"
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
release)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-release "$@"
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
wbuilder)
|
2017-04-11 09:28:01 +00:00
|
|
|
kodev-wbuilder
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
run)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-run "$@"
|
|
|
|
;;
|
2016-02-04 07:37:00 +00:00
|
|
|
test)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-test "$@"
|
|
|
|
;;
|
2017-02-02 11:13:39 +00:00
|
|
|
cov)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-cov "$@"
|
|
|
|
;;
|
2016-11-13 07:44:06 +00:00
|
|
|
prompt)
|
|
|
|
kodev-build
|
2017-04-11 09:28:01 +00:00
|
|
|
pushd "${EMU_DIR}" && {
|
2016-11-13 07:44:06 +00:00
|
|
|
./luajit -i setupkoenv.lua
|
2017-09-16 15:01:31 +00:00
|
|
|
} && popd || exit
|
2016-11-13 07:44:06 +00:00
|
|
|
;;
|
2016-02-28 20:16:32 +00:00
|
|
|
log)
|
2017-04-11 09:28:01 +00:00
|
|
|
shift 1
|
|
|
|
kodev-log "$@"
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
--help | -h)
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${HELP_MSG}"
|
|
|
|
exit 0
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
*)
|
|
|
|
echo "Unknown command: $1."
|
2017-04-11 09:28:01 +00:00
|
|
|
echo "${HELP_MSG}"
|
|
|
|
exit 1
|
|
|
|
;;
|
2016-02-01 06:43:46 +00:00
|
|
|
esac
|