31 lines
1.2 KiB
Bash
Executable file
31 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "$(dirname "$0")"
|
|
# BRouter standalone server
|
|
# java -cp brouter.jar btools.brouter.RouteServer <segmentdir> <profile-map> <customprofiledir> <port> <maxthreads> [bindaddress]
|
|
|
|
# maxRunningTime is the request timeout in seconds, set to 0 to disable timeout
|
|
JAVA_OPTS="-Xmx40g -Xms256M -Xmn256M -DmaxRunningTime=300"
|
|
|
|
# If paths are unset, first search in locations matching the directory structure
|
|
# as found in the official BRouter zip archive
|
|
CLASSPATH=${CLASSPATH:-"../brouter.jar"}
|
|
SEGMENTSPATH=${SEGMENTSPATH:-"../segments4"}
|
|
PROFILESPATH=${PROFILESPATH:-"../profiles2"}
|
|
CUSTOMPROFILESPATH=${CUSTOMPROFILESPATH:-"../customprofiles"}
|
|
|
|
# Otherwise try to locate files inside the source checkout
|
|
if [ ! -e "$CLASSPATH" ]; then
|
|
CLASSPATH="$(ls ../../../brouter-server/build/libs/brouter-*-all.jar | sort --reverse --version-sort | head --lines 1)"
|
|
fi
|
|
if [ ! -e "$SEGMENTSPATH" ]; then
|
|
SEGMENTSPATH="../../segments4"
|
|
fi
|
|
if [ ! -e "$PROFILESPATH" ]; then
|
|
PROFILESPATH="../../profiles2"
|
|
fi
|
|
if [ ! -e "$CUSTOMPROFILESPATH" ]; then
|
|
CUSTOMPROFILESPATH="../customprofiles"
|
|
fi
|
|
|
|
java $JAVA_OPTS -cp $CLASSPATH btools.server.RouteServer "$SEGMENTSPATH" "$PROFILESPATH" "$CUSTOMPROFILESPATH" 17777 16 $BINDADDRESS
|