[tools] Remove outdated scripts
Signed-off-by: Andrei Shkrob <github@shkrob.dev>
This commit is contained in:
parent
fced7be257
commit
25a6c1a5b1
19 changed files with 0 additions and 869 deletions
|
@ -265,16 +265,6 @@ find_package(Threads REQUIRED)
|
|||
|
||||
# Scripts
|
||||
|
||||
if (NOT CMAKE_HOST_WIN32)
|
||||
execute_process(
|
||||
COMMAND "${OMIM_ROOT}/tools/unix/check_cert.sh"
|
||||
RESULT_VARIABLE CheckCertResult
|
||||
)
|
||||
if (CheckCertResult)
|
||||
message(FATAL_ERROR "Certificate check failed")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (NOT PLATFORM_IPHONE AND NOT PLATFORM_ANDROID)
|
||||
list(APPEND qt_components Core Network)
|
||||
if (NOT SKIP_QT_GUI OR NOT SKIP_TESTS OR PYBINDINGS)
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
#!/bin/bash
|
||||
# This script builds C++ core libs and inserts some private variables.
|
||||
# Should be run from Run Script phase in target's settings.
|
||||
|
||||
LOWERED_CONFIG=`echo $CONFIGURATION | tr [A-Z] [a-z]`
|
||||
CONF="debug"
|
||||
if [[ "$LOWERED_CONFIG" == *release* || "$LOWERED_CONFIG" == *production* || "$LOWERED_CONFIG" == *adhoc* ]]; then
|
||||
CONF="release"
|
||||
fi
|
||||
|
||||
# Respect "Build for active arch only" project setting.
|
||||
if [[ "$ONLY_ACTIVE_ARCH" == YES ]]; then
|
||||
if [[ ! -z $CURRENT_ARCH ]]; then
|
||||
VALID_ARCHS=${ARCHS[0]}
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "Building $CONF configuration"
|
||||
bash "$SRCROOT/../../tools/autobuild/ios_cmake.sh" $CONF
|
|
@ -1,33 +0,0 @@
|
|||
#!/bin/bash
|
||||
# This script builds C++ core libs and inserts some private variables.
|
||||
# Should be run from Run Script phase in target's settings.
|
||||
|
||||
LOWERED_CONFIG=`echo $CONFIGURATION | tr [A-Z] [a-z]`
|
||||
CONF="simulator"
|
||||
DRAPE_CONF="old_renderer"
|
||||
if [[ "$LOWERED_CONFIG" == *production* || "$LOWERED_CONFIG" == *adhoc* ]]; then
|
||||
CONF="production"
|
||||
elif [[ "$LOWERED_CONFIG" == *debug* ]]; then
|
||||
CONF="debug"
|
||||
elif [[ "$LOWERED_CONFIG" == *release* ]]; then
|
||||
if [[ "$LOWERED_CONFIG" == *simulator* ]]; then
|
||||
CONF="simulator-release"
|
||||
else
|
||||
CONF="release"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ "$LOWERED_CONFIG" == *drape* ]]; then
|
||||
echo "Drape renderer building"
|
||||
DRAPE_CONF="drape"
|
||||
fi
|
||||
|
||||
# Respect "Build for active arch only" project setting.
|
||||
if [[ "$ONLY_ACTIVE_ARCH" == YES ]]; then
|
||||
if [[ ! -z $CURRENT_ARCH ]]; then
|
||||
VALID_ARCHS=${ARCHS[0]}
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "Building $CONF configuration"
|
||||
bash "$SRCROOT/../../tools/autobuild/ios.sh" $CONF $DRAPE_CONF
|
Binary file not shown.
|
@ -1,39 +0,0 @@
|
|||
# Script builds only C++ native libs. To build also jni part see another script: eclipse[*].sh
|
||||
|
||||
set -e -u -x
|
||||
|
||||
MY_PATH="`dirname \"$0\"`" # relative
|
||||
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
|
||||
|
||||
if [[ $# < 1 ]]; then
|
||||
echo "Usage: $0 <debug|release|production> [armeabi-v7a|x86] [android-PLATFORM_NUMBER]"
|
||||
exit 1
|
||||
fi
|
||||
CONFIGURATION="$1"
|
||||
|
||||
source "$MY_PATH/build.sh"
|
||||
source "$MY_PATH/ndk_helper.sh"
|
||||
|
||||
MKSPEC="$MY_PATH/../mkspecs/android-clang"
|
||||
QMAKE_PARAMS="CONFIG+=${CONFIGURATION}"
|
||||
SHADOW_DIR_BASE="$MY_PATH/../../../omim-android"
|
||||
|
||||
# Try to read ndk root path from android/local.properties file
|
||||
export NDK_ROOT=$(GetNdkRoot) || ( echo "Can't read NDK root path from android/local.properties"; exit 1 )
|
||||
export NDK_HOST=$(GetNdkHost) || ( echo "Can't get your OS type, please check tools/autobuild/ndk_helper.sh script"; exit 1 )
|
||||
if [[ $# > 2 ]] ; then
|
||||
export NDK_PLATFORM=$3
|
||||
fi
|
||||
|
||||
if [[ $# > 1 ]] ; then
|
||||
NDK_ABI_LIST=$2
|
||||
else
|
||||
NDK_ABI_LIST=(armeabi-v7a x86)
|
||||
fi
|
||||
|
||||
|
||||
for abi in "${NDK_ABI_LIST[@]}"; do
|
||||
SHADOW_DIR="${SHADOW_DIR_BASE}-${CONFIGURATION}-${abi}"
|
||||
export NDK_ABI="$abi"
|
||||
BuildQt "$SHADOW_DIR" "$MKSPEC" "$QMAKE_PARAMS" 1>&2 || ( echo "ERROR while building $abi config"; exit 1 )
|
||||
done
|
|
@ -1,47 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e -x -u
|
||||
|
||||
MY_PATH="`dirname \"$0\"`" # relative
|
||||
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
|
||||
|
||||
source "$MY_PATH/detect_qmake.sh"
|
||||
|
||||
# Prints number of cores to stdout
|
||||
GetCPUCores() {
|
||||
case "$OSTYPE" in
|
||||
# it's GitBash under Windows
|
||||
cygwin) echo $NUMBER_OF_PROCESSORS
|
||||
;;
|
||||
linux-gnu) grep -c ^processor /proc/cpuinfo 2>/dev/null
|
||||
;;
|
||||
darwin*) sysctl -n hw.ncpu
|
||||
;;
|
||||
*) echo "Unsupported platform in $0"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
# Replaces "/cygwin/c" prefix with "c:" one on Windows platform.
|
||||
# Does nothing under other OS.
|
||||
# 1st param: path to be modified.
|
||||
StripCygwinPrefix() {
|
||||
if [[ $(GetNdkHost) == "windows-x86_64" ]]; then
|
||||
echo "c:`(echo "$1" | cut -c 12-)`"
|
||||
return 0
|
||||
fi
|
||||
|
||||
echo "$1"
|
||||
return 0
|
||||
}
|
||||
|
||||
# 1st param: shadow directory path
|
||||
# 2nd param: mkspec
|
||||
# 3rd param: additional qmake parameters
|
||||
BuildQt() {
|
||||
(
|
||||
echo "ERROR! The script is obsolete. Rewrite with cmake"
|
||||
)
|
||||
}
|
|
@ -1,81 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
send_buildlogs () {
|
||||
pushd /home/osm/
|
||||
for i in build-service/*build; do tail -n 70 $i | mail -a $i -s $i dev@mapswithme.com; done
|
||||
rm build-service/*build
|
||||
popd
|
||||
}
|
||||
|
||||
drop_buildlogs () {
|
||||
pushd /home/osm/
|
||||
rm build-service/*build
|
||||
popd
|
||||
}
|
||||
|
||||
send_beta () {
|
||||
mv $1 $2
|
||||
git log --since="`date -d "3 day ago"`" | mail -a $2 -s "[beta]$2" dev@mapswithme.com
|
||||
}
|
||||
|
||||
|
||||
|
||||
cd /home/osm/build-service
|
||||
rm *.build
|
||||
cd omim
|
||||
git remote update
|
||||
git checkout -f origin/master
|
||||
#git pull
|
||||
git reset --hard HEAD
|
||||
git submodule update --init
|
||||
export PATH=/usr/lib/ccache:$PATH
|
||||
# For correct QT version
|
||||
export PATH=/home/osm/Qt5.2.0/5.2.0/gcc_64/bin:$PATH
|
||||
export QT_HOME=/home/osm/Qt5.2.0/5.2.0/gcc_64
|
||||
|
||||
cd tools/android
|
||||
python set_up_android.py --sdk /home/osm/android/adt-bundle-linux-x86_64-20130917/sdk --ndk /home/osm/android/android-ndk-r9
|
||||
|
||||
BUILD_DATE=`date +"%Y%m%d-%H%M"`-`hostname`-`git rev-parse HEAD | cut -c-10`
|
||||
|
||||
# Android Pro
|
||||
cd ../../android/MapsWithMePro
|
||||
cat AndroidManifest.xml | sed s/android:versionName=\"/android:versionName=\"auto-$BUILD_DATE/g > AndroidManifest-new.xml; mv AndroidManifest-new.xml AndroidManifest.xml
|
||||
NDK_CCACHE=ccache timeout -k 8h 4h ant production > ~/build-service/MapsWithMePro-production-android.build
|
||||
cp bin/MapsWithMePro-production.apk ~/build-service
|
||||
if [ "$?" = 0 ]; then
|
||||
drop_buildlogs
|
||||
send_beta bin/MapsWithMePro-production.apk MapsWithMePro-production-$BUILD_DATE.apk $BUILD_DATE
|
||||
#else
|
||||
# send_buildlogs
|
||||
fi
|
||||
|
||||
|
||||
# Android Lite
|
||||
cd ../../android/MapsWithMeLite
|
||||
cat AndroidManifest.xml | sed s/android:versionName=\"/android:versionName=\"auto-$BUILD_DATE/g > AndroidManifest-new.xml; mv AndroidManifest-new.xml AndroidManifest.xml
|
||||
NDK_CCACHE=ccache timeout -k 8h 4h ant production > ~/build-service/MapsWithMeLite-production-android.build
|
||||
cp bin/MapsWithMeLite-production.apk ~/build-service
|
||||
if [ "$?" = 0 ]; then
|
||||
drop_buildlogs
|
||||
send_beta bin/MapsWithMeLite-production.apk MapsWithMeLite-production-$BUILD_DATE.apk $BUILD_DATE
|
||||
#else
|
||||
# send_buildlogs
|
||||
fi
|
||||
|
||||
drop_buildlogs
|
||||
|
||||
# Ubuntu Raring AMD64
|
||||
ARCH=amd64 DIST=raring timeout -k 8h 4h pdebuild --debbuildopts "-b -j9"
|
||||
if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi
|
||||
|
||||
# Ubuntu Raring i386
|
||||
ARCH=i386 DIST=raring timeout -k 8h 4h pdebuild --debbuildopts "-b -j9"
|
||||
if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi
|
||||
|
||||
#ARCH=armel DIST=stable timeout -k 8h 4h pdebuild --debbuildopts "-b -j9"
|
||||
#if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi
|
||||
|
||||
#ARCH=armhf DIST=raring timeout -k 8h 4h pdebuild --debbuildopts "-b -j9"
|
||||
#if [ "$?" = 0 ]; then drop_buildlogs; else send_buildlogs; fi
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
# Prints path to directory with iOS SDK
|
||||
# Pameter is configuration name: <debug|release|production|simulator>
|
||||
# Returns 1 in case of not found and 0 in case of success
|
||||
PrintIOSSDKPath() {
|
||||
if [[ $1 == *simulator* ]]; then
|
||||
XCODE_SDK_PATH=`xcodebuild -sdk iphonesimulator -version Path`
|
||||
else
|
||||
XCODE_SDK_PATH=`xcodebuild -sdk iphoneos -version Path`
|
||||
fi
|
||||
if [ -z "$XCODE_SDK_PATH" ]; then
|
||||
return 1
|
||||
else
|
||||
echo -n "$XCODE_SDK_PATH"
|
||||
fi
|
||||
return 0
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
# Add it to Eclipse MWM Library properties -> Debug configuration -> Build command
|
||||
|
||||
set -e -u -x
|
||||
|
||||
LOCAL_DIRNAME="$(dirname "$0")"
|
||||
|
||||
# We DO NOT clean native C++ libs for faster Eclipse builds
|
||||
if [[ "$1" != "clean" ]] ; then
|
||||
bash $LOCAL_DIRNAME/android.sh debug armeabi
|
||||
fi
|
||||
|
||||
source "$LOCAL_DIRNAME/ndk_helper.sh"
|
||||
|
||||
export NDK_PROJECT_PATH="$LOCAL_DIRNAME/../../android"
|
||||
if [[ "$1" != "clean" ]] ; then
|
||||
$(GetNdkRoot)/ndk-build APP_ABI=armeabi V=1 NDK_DEBUG=1 DEBUG=1
|
||||
else
|
||||
$(GetNdkRoot)/ndk-build clean V=1 NDK_DEBUG=1 DEBUG=1
|
||||
fi
|
|
@ -1,36 +0,0 @@
|
|||
# to threat ! as a char
|
||||
set +H
|
||||
|
||||
# this array will hold all executed commands logs
|
||||
declare -a FUNCTION_CHECKED_CALL_LOGS
|
||||
FUNCTION_CHECKED_LOG_INDEX=0
|
||||
|
||||
FUNCTION_START_DATE=$(date -u)
|
||||
|
||||
LoggedCall() {
|
||||
echo "\$ $*"
|
||||
local RESULT
|
||||
RESULT=$($* 2>&1)
|
||||
if [ $? != 0 ]; then
|
||||
echo "ERROR: Command failed with code $?"
|
||||
fi
|
||||
echo "$RESULT"
|
||||
}
|
||||
|
||||
Call() {
|
||||
FUNCTION_CHECKED_CALL_LOGS[FUNCTION_CHECKED_LOG_INDEX]=$(LoggedCall $*)
|
||||
let FUNCTION_CHECKED_LOG_INDEX++
|
||||
}
|
||||
|
||||
PrintLogs() {
|
||||
echo "****** Started on $FUNCTION_START_DATE ******"
|
||||
for logLine in "${FUNCTION_CHECKED_CALL_LOGS[@]}"; do
|
||||
echo "$logLine"
|
||||
done
|
||||
}
|
||||
|
||||
CD()
|
||||
{
|
||||
echo "\$ cd $1"
|
||||
cd $1 || return
|
||||
}
|
|
@ -1,63 +0,0 @@
|
|||
# Script takes configuration as a parameter and optional clean keyword.
|
||||
# Possible configurations: debug release production
|
||||
|
||||
set -e -u -x
|
||||
|
||||
MY_PATH="`dirname \"$0\"`" # relative
|
||||
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
|
||||
|
||||
if [[ $# < 1 ]]; then
|
||||
echo "Usage: $0 <debug|release|production|simulator|simulator-release> [clean]"
|
||||
exit 1
|
||||
fi
|
||||
CONFIGURATION="$1"
|
||||
|
||||
source "$MY_PATH/build.sh"
|
||||
source "$MY_PATH/detect_xcode.sh"
|
||||
|
||||
SDK_ROOT="$(PrintIOSSDKPath "$CONFIGURATION")"
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo "Is XCode installed? Check tools/autobuild/detect_xcode.sh script"
|
||||
exit 1
|
||||
fi
|
||||
export SDK_ROOT
|
||||
|
||||
SHADOW_DIR="$MY_PATH/../../../omim-iphone"
|
||||
|
||||
if [[ $CONFIGURATION == *production* ]]; then
|
||||
QMAKE_PARAMS="CONFIG+=production CONFIG+=release"
|
||||
SHADOW_DIR="${SHADOW_DIR}-production"
|
||||
elif [[ $CONFIGURATION == *release* ]]; then
|
||||
QMAKE_PARAMS="CONFIG+=release"
|
||||
SHADOW_DIR="${SHADOW_DIR}-release"
|
||||
elif [[ $CONFIGURATION == *debug* || $CONFIGURATION == "simulator" ]]; then
|
||||
QMAKE_PARAMS="CONFIG+=debug"
|
||||
SHADOW_DIR="${SHADOW_DIR}-debug"
|
||||
else
|
||||
echo "Unrecognized configuration passed to the script: $CONFIGURATION"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ $CONFIGURATION == *simulator* ]]; then
|
||||
MKSPEC="$MY_PATH/../mkspecs/iphonesimulator"
|
||||
else
|
||||
MKSPEC="$MY_PATH/../mkspecs/iphonedevice"
|
||||
fi
|
||||
|
||||
if [[ $GCC_VERSION == *clang* ]]; then
|
||||
MKSPEC="${MKSPEC}-clang"
|
||||
else
|
||||
MKSPEC="${MKSPEC}-llvm"
|
||||
fi
|
||||
|
||||
# Build libs for each architecture in separate folders
|
||||
for ARCH in $VALID_ARCHS; do
|
||||
if [[ $# > 1 && "$2" == "clean" ]] ; then
|
||||
echo "Cleaning $CONFIGURATION configuration..."
|
||||
rm -rf "$SHADOW_DIR-$ARCH"
|
||||
else
|
||||
# pass build architecture to qmake as an environment variable, see mkspecs/iphone*/qmake.conf
|
||||
export BUILD_ARCHITECTURE="$ARCH"
|
||||
BuildQt "$SHADOW_DIR-$ARCH" "$MKSPEC" "$QMAKE_PARAMS" || ( echo "ERROR while building $CONFIGURATION config"; exit 1 )
|
||||
fi
|
||||
done
|
|
@ -1,85 +0,0 @@
|
|||
# Script takes configuration as a parameter
|
||||
set -e -u -x
|
||||
|
||||
MY_PATH="`dirname \"$0\"`" # relative
|
||||
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
|
||||
|
||||
if [[ $# < 1 ]]; then
|
||||
echo "Usage: $0 <debug|release>"
|
||||
exit 1
|
||||
fi
|
||||
CONFIGURATION="$1"
|
||||
|
||||
source "$MY_PATH/detect_xcode.sh"
|
||||
|
||||
GetCPUCores() {
|
||||
case "$OSTYPE" in
|
||||
# it's GitBash under Windows
|
||||
cygwin) echo $NUMBER_OF_PROCESSORS
|
||||
;;
|
||||
linux-gnu) grep -c ^processor /proc/cpuinfo 2>/dev/null
|
||||
;;
|
||||
darwin*) sysctl -n hw.ncpu
|
||||
;;
|
||||
*) echo "Unsupported platform in $0"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
return 0
|
||||
}
|
||||
|
||||
BuildCmake() {
|
||||
(
|
||||
SHADOW_DIR="$1"
|
||||
BUILD_TYPE="$2"
|
||||
|
||||
mkdir -p "$SHADOW_DIR"
|
||||
cd "$SHADOW_DIR"
|
||||
pwd
|
||||
echo "Launching cmake..."
|
||||
CC=$CC CXX=$CXX cmake -r "$BUILD_TYPE" -DCMAKE_OSX_ARCHITECTURES=$ARCH -DSKIP_TESTS=TRUE -DSKIP_QT_GUI=TRUE -DSKIP_GTOOL=TRUE -DPLATFORM=$PLATFORM "$MY_PATH/../.."
|
||||
# make clean > /dev/null || true
|
||||
make -j $(GetCPUCores) VERBOSE=1
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
SDK_ROOT="$(PrintIOSSDKPath "$CONFIGURATION")"
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo "Is XCode installed? Check tools/autobuild/detect_xcode.sh script"
|
||||
exit 1
|
||||
fi
|
||||
export SDK_ROOT
|
||||
|
||||
FINAL_PATH_COMPONENT="debug"
|
||||
SHADOW_DIR="$MY_PATH/../../../omim-iphone-cmake"
|
||||
|
||||
if [[ $CONFIGURATION == *release* ]]; then
|
||||
BUILD_TYPE="Release"
|
||||
FINAL_PATH_COMPONENT="release"
|
||||
elif [[ $CONFIGURATION == *debug* ]]; then
|
||||
BUILD_TYPE="Debug"
|
||||
FINAL_PATH_COMPONENT="debug"
|
||||
else
|
||||
echo "Unrecognized configuration passed to the script: $CONFIGURATION"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
SHADOW_DIR="${SHADOW_DIR}-${FINAL_PATH_COMPONENT}"
|
||||
|
||||
# Build libs for each architecture in separate folders
|
||||
for ARCH in $VALID_ARCHS; do
|
||||
if [[ $# > 1 && "$2" == "clean" ]] ; then
|
||||
echo "Cleaning $CONFIGURATION configuration..."
|
||||
rm -rf "$SHADOW_DIR-$ARCH"
|
||||
else
|
||||
export BUILD_ARCHITECTURE="$ARCH"
|
||||
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
export CMAKE_PREFIX_PATH=$QT_PATH
|
||||
export PLATFORM=iphone-something
|
||||
|
||||
BuildCmake "$SHADOW_DIR-$ARCH/out/$FINAL_PATH_COMPONENT" "$BUILD_TYPE" || ( echo "ERROR while building $CONFIGURATION config"; exit 1 )
|
||||
fi
|
||||
done
|
|
@ -1,8 +0,0 @@
|
|||
source build.sh
|
||||
|
||||
QMAKE_PATH="/Users/Alex/QtSDK/Desktop/Qt/474/gcc/bin"
|
||||
SHADOW_DIR="/Developer/omim/omim-mac-release"
|
||||
MKSPEC="macx-llvm"
|
||||
QMAKE_PARAMS="CONFIG+=release"
|
||||
|
||||
BuildQt "$QMAKE_PATH" "$SHADOW_DIR" "$MKSPEC" "$QMAKE_PARAMS" || echo "ERROR BUILDING PROJECT"
|
|
@ -1,33 +0,0 @@
|
|||
# Send given file in the body of email
|
||||
# Call syntax: <script> <to> <subject> <file>
|
||||
|
||||
import smtplib
|
||||
import sys
|
||||
import string
|
||||
|
||||
if len(sys.argv) < 4:
|
||||
print "Usage: " + sys.argv[0] + " <to> <subject> <file>"
|
||||
exit(1)
|
||||
|
||||
FROM = 'Mona Lisa <mapswithme@gmail.com>'
|
||||
TO = sys.argv[1]
|
||||
SUBJECT = sys.argv[2]
|
||||
FILE_TEXT = open(sys.argv[3], 'r').read()
|
||||
|
||||
BODY = string.join((
|
||||
"From: %s" % FROM,
|
||||
"To: %s" % TO,
|
||||
"Subject: %s" % SUBJECT ,
|
||||
"",
|
||||
FILE_TEXT
|
||||
), "\r\n")
|
||||
|
||||
USER = 'mapswithme'
|
||||
PASS = 'MapsWithMeP@ssw0rd'
|
||||
|
||||
# The actual mail send
|
||||
server = smtplib.SMTP('smtp.gmail.com:587')
|
||||
server.starttls()
|
||||
server.login(USER, PASS)
|
||||
server.sendmail(FROM, TO, BODY)
|
||||
server.quit()
|
|
@ -1,187 +0,0 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import logging
|
||||
import re
|
||||
import subprocess
|
||||
import sys
|
||||
import unittest
|
||||
from os import listdir, path
|
||||
from os.path import abspath, dirname, isfile
|
||||
|
||||
EXPECTED_PERMISSIONS = {
|
||||
"uses-permission: android.permission.WRITE_EXTERNAL_STORAGE",
|
||||
"uses-permission: android.permission.ACCESS_COARSE_LOCATION",
|
||||
"uses-permission: android.permission.ACCESS_FINE_LOCATION",
|
||||
"uses-permission: android.permission.INTERNET",
|
||||
"uses-permission: android.permission.ACCESS_WIFI_STATE",
|
||||
"uses-permission: android.permission.CHANGE_WIFI_STATE",
|
||||
"uses-permission: android.permission.ACCESS_NETWORK_STATE",
|
||||
"uses-permission: android.permission.WAKE_LOCK",
|
||||
"uses-permission: android.permission.BATTERY_STATS",
|
||||
"uses-permission: com.google.android.c2dm.permission.RECEIVE",
|
||||
"permission: app.organicmaps.permission.C2D_MESSAGE",
|
||||
"uses-permission: app.organicmaps.permission.C2D_MESSAGE",
|
||||
"uses-permission: android.permission.VIBRATE",
|
||||
"permission: app.organicmaps.permission.RECEIVE_ADM_MESSAGE",
|
||||
"uses-permission: app.organicmaps.permission.RECEIVE_ADM_MESSAGE",
|
||||
"uses-permission: com.amazon.device.messaging.permission.RECEIVE",
|
||||
}
|
||||
|
||||
SPLIT_RE = re.compile("[\.\-]")
|
||||
APK_RE = re.compile(".*universal(?!.*?unaligned).*$")
|
||||
PROP_RE = re.compile("(?!\s*?#).*$")
|
||||
CLEAN_PERM_RE = re.compile("(name='|'$|debug\.|beta\.)", re.MULTILINE)
|
||||
BUILD_TYPE = r = re.compile(".*(debug|release|beta).*")
|
||||
|
||||
AAPT_VERSION_PREFIX_LEN = len("Android Asset Packaging Tool, v")
|
||||
|
||||
|
||||
logger = logging.getLogger()
|
||||
logger.level = logging.DEBUG
|
||||
logger.addHandler(logging.StreamHandler(sys.stdout))
|
||||
|
||||
|
||||
def exec_shell(executable, flags):
|
||||
spell = ["{0} {1}".format(executable, flags)]
|
||||
logging.info("Spell: {}".format(spell[0]))
|
||||
process = subprocess.Popen(
|
||||
spell,
|
||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
|
||||
shell=True
|
||||
)
|
||||
|
||||
out, _ = process.communicate()
|
||||
|
||||
return filter(None, out.splitlines())
|
||||
|
||||
|
||||
class TestPermissions(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.omim_path = self.find_omim_path()
|
||||
self.aapt = self.find_aapt(self.get_build_tools_version())
|
||||
self.apk = self.find_apks()
|
||||
self.permissions = self.get_actual_permissions()
|
||||
if self.get_build_type() == "debug":
|
||||
logging.info("The build type is DEBUG")
|
||||
global EXPECTED_PERMISSIONS
|
||||
EXPECTED_PERMISSIONS.add("uses-permission: android.permission.READ_LOGS")
|
||||
|
||||
self.failure_description = self.get_failure_description()
|
||||
|
||||
def get_build_type(self):
|
||||
apk_name = path.basename(self.apk)
|
||||
return BUILD_TYPE.findall(apk_name)[0]
|
||||
|
||||
|
||||
def get_build_tools_version(self):
|
||||
return self.get_property(
|
||||
"propBuildToolsVersion",
|
||||
path.join(self.omim_path, "android", "gradle.properties")
|
||||
)
|
||||
|
||||
|
||||
def contains_correct_files(self, my_path):
|
||||
dir_contents = listdir(my_path)
|
||||
return (
|
||||
"android" in dir_contents or
|
||||
"drape_frontend" in dir_contents
|
||||
)
|
||||
|
||||
|
||||
def find_omim_path(self):
|
||||
my_path = abspath(path.join(dirname(__file__), "..", ".."))
|
||||
if self.contains_correct_files(my_path):
|
||||
return my_path
|
||||
raise IOError("Couldn't find a candidate for the project root path")
|
||||
|
||||
|
||||
def find_apks(self):
|
||||
apk_path = path.join(self.omim_path, "android", "build", "outputs", "apk")
|
||||
on_disk = listdir(apk_path)
|
||||
print(on_disk)
|
||||
apks = filter(APK_RE.match, on_disk)
|
||||
if not apks:
|
||||
raise IOError("Couldn't find an APK")
|
||||
apk_path = path.join(apk_path, apks[0])
|
||||
logging.info("Using apk at {}".format(apk_path))
|
||||
|
||||
return apk_path
|
||||
|
||||
|
||||
def get_property(self, prop, props_path):
|
||||
if not isfile(props_path):
|
||||
raise IOError("Properties file does not exist: {}".format(props_path))
|
||||
|
||||
logging.info("local props: {}".format(props_path))
|
||||
with open(props_path) as props:
|
||||
for line in filter(PROP_RE.match, props):
|
||||
if line.startswith(prop):
|
||||
return line.split("=")[1].strip()
|
||||
|
||||
raise IOError("Couldn't find property {} in file {}".format(prop, props_path))
|
||||
|
||||
|
||||
def find_aapt(self, build_tools_version):
|
||||
local_props_path = path.join(self.omim_path, "android", "local.properties")
|
||||
sdk_path = self.get_property("sdk.dir", local_props_path)
|
||||
aapt_path = self.find_aapt_in_platforms(sdk_path, build_tools_version)
|
||||
|
||||
logging.info("Using aapt at {}".format(aapt_path))
|
||||
return aapt_path
|
||||
|
||||
|
||||
def find_aapt_in_platforms(self, platforms_path, build_tools_version):
|
||||
aapts = {}
|
||||
candidates = exec_shell("find", "{} -name aapt".format(platforms_path))
|
||||
for c in candidates:
|
||||
if "build-tools/{}".format(build_tools_version) in c:
|
||||
return c
|
||||
|
||||
try:
|
||||
version = tuple(map(int, self.get_aapt_version(c)))
|
||||
aapts[version] = c
|
||||
except ValueError:
|
||||
# Do nothing, because aapt version contains non-numeric symbols
|
||||
pass
|
||||
|
||||
max_version = sorted(aapts.iterkeys(), reverse=True)[0]
|
||||
logging.info("Max aapt version: {}".format(max_version))
|
||||
|
||||
return aapts[max_version]
|
||||
|
||||
|
||||
def get_aapt_version(self, candidate):
|
||||
return SPLIT_RE.split(exec_shell(candidate, "v")[0][AAPT_VERSION_PREFIX_LEN:])
|
||||
|
||||
|
||||
def get_actual_permissions(self):
|
||||
permissions = exec_shell(self.aapt, "dump permissions {0}".format(self.apk))
|
||||
permissions = filter(
|
||||
lambda s: s.startswith("permission:") or s.startswith("uses-permission:"),
|
||||
permissions
|
||||
)
|
||||
|
||||
return set(
|
||||
map(lambda s: CLEAN_PERM_RE.sub("", s), permissions)
|
||||
)
|
||||
|
||||
|
||||
def get_failure_description(self):
|
||||
join_by_new_lines = lambda iterable: "\n".join(sorted(iterable))
|
||||
|
||||
return "Expected:\n{}\n\nActual:\n{}\n\nAdded:\n{}\n\nRemoved:\n{}".format(
|
||||
join_by_new_lines(EXPECTED_PERMISSIONS),
|
||||
join_by_new_lines(self.permissions),
|
||||
join_by_new_lines(self.permissions - EXPECTED_PERMISSIONS),
|
||||
join_by_new_lines(EXPECTED_PERMISSIONS - self.permissions)
|
||||
)
|
||||
|
||||
|
||||
def test_permissions(self):
|
||||
"""Check whether we have added or removed any permissions"""
|
||||
self.assertEqual(EXPECTED_PERMISSIONS, self.permissions, self.failure_description)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
exit(1)
|
|
@ -1,66 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
MONTHS_BEFORE_EXPIRATION_TO_BREAK="3"
|
||||
DAYS_WARNING_INTERVAL="14"
|
||||
PRIVATE_H=$1
|
||||
MODE=$2
|
||||
|
||||
if [[ "$MODE" == "" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
if [[ "$PRIVATE_H" == "" ]]; then
|
||||
PRIVATE_H=$(dirname $0)/../../private.h
|
||||
fi
|
||||
|
||||
while read line; do
|
||||
eval $line
|
||||
done < <(
|
||||
sed -e ':a' -e 'N' -e '$!ba' -e 's/\\\n//g' $PRIVATE_H |\
|
||||
grep "^#define USER_BINDING_PKCS12" |\
|
||||
sed -e 's/#define //' -e 's/ /=/' -e 's/$/;/'
|
||||
)
|
||||
if [[ "$USER_BINDING_PKCS12" == "" ]]; then
|
||||
echo "No certificate found in private.h, skipping check"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
read mon day time year tz < <(
|
||||
echo $USER_BINDING_PKCS12 |\
|
||||
base64 --decode |\
|
||||
openssl pkcs12 -passin pass:$USER_BINDING_PKCS12_PASSWORD -clcerts -nodes |\
|
||||
openssl x509 -noout -enddate |\
|
||||
cut -d '=' -f 2-
|
||||
)
|
||||
|
||||
if [[ $(uname) == "Darwin" ]]; then
|
||||
warning_timestamp=`LANG=C LC_ALL=C date -j -v "+${MONTHS_BEFORE_EXPIRATION_TO_BREAK}m" -v "+${DAYS_WARNING_INTERVAL}d" +%s`
|
||||
threshold_timestamp=`LANG=C LC_ALL=C date -j -v "+${MONTHS_BEFORE_EXPIRATION_TO_BREAK}m" +%s`
|
||||
cert_end_timestamp=`LANG=C LC_ALL=C date -j -f "%Y %b %d %H:%M:%S %Z" "$year $mon $day $time $tz" +%s`
|
||||
else
|
||||
warning_timestamp=`LANG=C LC_ALL=C date --date "+${MONTHS_BEFORE_EXPIRATION_TO_BREAK}month ${DAYS_WARNING_INTERVAL}days" +%s`
|
||||
threshold_timestamp=`LANG=C LC_ALL=C date --date "+$MONTHS_BEFORE_EXPIRATION_TO_BREAK months" +%s`
|
||||
cert_end_timestamp=`LANG=C LC_ALL=C date --date "$mon $day $year $time $tz" +%s`
|
||||
fi
|
||||
if [[ "$MODE" == "check" ]]; then
|
||||
if [[ "$threshold_timestamp" -gt "$cert_end_timestamp" ]]; then
|
||||
echo "Our client certificate end date of $mon $day $time $year $tz is within $MONTHS_BEFORE_EXPIRATION_TO_BREAK months from now."
|
||||
echo "Update this certificate immediately!"
|
||||
echo "Error"
|
||||
exit 1
|
||||
elif [[ "$warning_timestamp" -gt "$cert_end_timestamp" ]]; then
|
||||
echo "Our client certificate end date of $mon $day $time $year $tz is within ${MONTHS_BEFORE_EXPIRATION_TO_BREAK} month ${DAYS_WARNING_INTERVAL} days from now."
|
||||
echo "Update this certificate!"
|
||||
echo "Warning"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
if [[ "$threshold_timestamp" -gt "$cert_end_timestamp" ]]; then
|
||||
echo "Our client certificate end date of $mon $day $time $year $tz is within $MONTHS_BEFORE_EXPIRATION_TO_BREAK months from now."
|
||||
echo "Update this certificate immediately!"
|
||||
echo "Aborting build"
|
||||
exit 1
|
||||
else
|
||||
echo "Our client certificate end date of $mon $day $time $year $tz is later than $MONTHS_BEFORE_EXPIRATION_TO_BREAK months from now."
|
||||
echo "Certificate check passed, continuing the build"
|
||||
exit 0
|
||||
fi
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Removes indices after an app run. You can pass a path as the first argument.
|
||||
set -u -x
|
||||
TARGET="${1:-$(dirname "$0")/../../data}"
|
||||
for mwm in "$TARGET/"*.mwm; do
|
||||
rm -rf "$TARGET/$(basename "$mwm" .mwm)"
|
||||
done
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
RX_BYTES=`ifconfig eth0 | grep -o 'RX bytes:[0-9]*' | grep -o '[0-9]*'`
|
||||
TX_BYTES=`ifconfig eth0 | grep -o 'TX bytes:[0-9]*' | grep -o '[0-9]*'`
|
||||
ACTIVE_DOWNLOADS=`netstat -n | grep 'tcp.*:80 .*ESTABLISHED' | wc -l`
|
||||
|
||||
echo $ACTIVE_DOWNLOADS $RX_BYTES $TX_BYTES $(($RX_BYTES + $TX_BYTES))
|
|
@ -1,113 +0,0 @@
|
|||
#!/usr/bin/perl -w
|
||||
|
||||
# modules
|
||||
use strict;
|
||||
|
||||
# tags used for grid drawing
|
||||
my $TAGKEY="mapswithme";
|
||||
my $GRIDVALUE="grid";
|
||||
my $CAPTIONVALUE="gridcaption";
|
||||
|
||||
sub UsageAndExit
|
||||
{
|
||||
print("Generate OSM xml with world grid\n");
|
||||
print("Usage: osm_grid_create.pl <bucketing_level>\n");
|
||||
print(" where bucketing_level is [1..10]\n");
|
||||
exit;
|
||||
}
|
||||
|
||||
sub CellStringFromXYLevel
|
||||
{
|
||||
my $x = $_[0];
|
||||
my $y = $_[1];
|
||||
my $level = $_[2];
|
||||
my $result = "";
|
||||
while ($level > 0) {
|
||||
if ($x % 2) {
|
||||
if ($y % 2) {
|
||||
$result .= "0";
|
||||
} else {
|
||||
$result .= "3";
|
||||
}
|
||||
} else {
|
||||
if ($y % 2) {
|
||||
$result .= "1";
|
||||
} else {
|
||||
$result .= "2";
|
||||
}
|
||||
}
|
||||
$level--;
|
||||
$x /= 2;
|
||||
$y /= 2;
|
||||
}
|
||||
$result = reverse($result);
|
||||
}
|
||||
|
||||
#######################################
|
||||
# ENTRY POINT
|
||||
#######################################
|
||||
|
||||
&UsageAndExit() if ($#ARGV < 0);
|
||||
my $LEVEL = $ARGV[0];
|
||||
&UsageAndExit() if ($LEVEL > 10 || $LEVEL < 1);
|
||||
|
||||
my $COUNT = 2 ** $LEVEL;
|
||||
my $MINX = -180.0;
|
||||
my $MAXX = 180.0;
|
||||
my $MINY = -90.0;
|
||||
my $MAXY = 90.0;
|
||||
my $STEPX = ($MAXX - $MINX)/$COUNT;
|
||||
my $STEPY = ($MAXY - $MINY)/$COUNT;
|
||||
|
||||
print <<OSM_HEADER;
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<osm version="0.6" generator="MapsWithMe">
|
||||
<bounds minlat="$MINY" minlon="$MINX" maxlat="$MAXY" maxlon="$MAXX"/>
|
||||
OSM_HEADER
|
||||
|
||||
# generate nodes
|
||||
my $nodeID = 1;
|
||||
for (my $y = $MINY; $y <= $MAXY; $y += $STEPY)
|
||||
{
|
||||
for (my $x = $MINX; $x <= $MAXX; $x += $STEPX)
|
||||
{
|
||||
printf(" <node id=\"$nodeID\" lat=\"%.10f\" lon=\"%.10f\"/>\n", $y, $x);
|
||||
$nodeID++;
|
||||
}
|
||||
}
|
||||
# generate squares and captions
|
||||
my $wayID = 10000;
|
||||
foreach my $y (0..$COUNT - 1)
|
||||
{
|
||||
foreach my $x (0..$COUNT - 1)
|
||||
{
|
||||
my $first = $x + $y * ($COUNT + 1) + 1;
|
||||
my $second = $first + 1;
|
||||
my $third = $second + $COUNT + 1;
|
||||
my $fourth = $third - 1;
|
||||
my $title = &CellStringFromXYLevel($x, $y, $LEVEL);
|
||||
$nodeID++;
|
||||
printf(" <node id=\"$nodeID\" lat=\"%.10f\" lon=\"%.10f\">\n", $MINY + $y * $STEPY + $STEPY/2, $MINX + $x * $STEPX + $STEPX/2);
|
||||
printf(" <tag k=\"$TAGKEY\" v=\"$CAPTIONVALUE\"/>\n");
|
||||
printf(" <tag k=\"name\" v=\"$title\"/>\n");
|
||||
printf(" </node>\n");
|
||||
|
||||
print <<OSM_GRID_TILE;
|
||||
<way id="$wayID">
|
||||
<nd ref="$first"/>
|
||||
<nd ref="$second"/>
|
||||
<nd ref="$third"/>
|
||||
<nd ref="$fourth"/>
|
||||
<nd ref="$first"/>
|
||||
<tag k="name" v="$title"/>
|
||||
<tag k="$TAGKEY" v="$GRIDVALUE"/>
|
||||
<tag k="layer" v="-5"/>
|
||||
</way>
|
||||
OSM_GRID_TILE
|
||||
$wayID++;
|
||||
}
|
||||
}
|
||||
|
||||
print <<OSM_FOOTER;
|
||||
</osm>
|
||||
OSM_FOOTER
|
Reference in a new issue