summarylogtreecommitdiffstats
path: root/run.sh
blob: 71f1f1022f7383ed292f34e6ee5c630087c013f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/usr/bin/env bash

#-----------------------------------------------------------------------------
_USER="freenet"
WRAPPER_CMD="/usr/bin/java-service-wrapper"
WRAPPER_CONF="/opt/freenet/wrapper.config"
PIDFILE="/run/freenet/freenet.pid"
TIMEOUT=60
#-----------------------------------------------------------------------------

fail() {
    printf "\e[1;31m>>> ERROR:\033[0m %s\n" "$*"
    exit 1
}

check_user() {
    if [[ "$(id -un)" != "$_USER" ]]; then
        SCRIPT_PATH="$(readlink -f "$0")"
        su - "$_USER" -c "${SCRIPT_PATH} $@"
        exit $?
    fi
}

init_vars() {
    [[ "$EUID" -eq 0 ]] &&
        fail "Attempting to start as root! You should never see this message, please report it"
    [[ ! -r "$WRAPPER_CONF" ]] &&
        fail "Unable to read \$WRAPPER_CONF: ${WRAPPER_CONF}"
    [[ ! -x "$WRAPPER_CMD" ]] &&
        fail "Unable to find or execute \$WRAPPER_CMD: ${WRAPPER_CMD}"
    COMMAND_LINE="\"$WRAPPER_CMD\" \"$WRAPPER_CONF\" wrapper.syslog.ident=\"freenet\" wrapper.name=\"freenet\" TZ=UTC"
}

get_wrapper_pid() {
    pgrep -u "$_USER" -f 'wrapper.name=freenet'
}
get_pid() {
    pgrep -u "$_USER" -f 'jar.*freenet'
}

check_if_running() {
    unset pid
    if [[ -r "$PIDFILE" ]]; then
        pid=$(cat "$PIDFILE")
        if [[ ! "$pid" ]]; then
            pid=$(get_pid)
            if [[ ! "$pid" ]]; then
                echo "Removing stale pid file: $PIDFILE"
                rm -f "$PIDFILE"
            fi
        else
            [[ "$pid" -ne "$(get_pid)" ]] &&
                fail "\$PIDFILE $PIDFILE differs from what is actually running!"
        fi
    # else
    #     echo "check_if_running: pid: $pid"
    fi
}

_console() {
    if [[ ! "$pid" ]]; then
        trap '' INT QUIT
        eval "$COMMAND_LINE" || fail "Failed to launch the wrapper!"
    else
        echo "Freenet is already running! (pid: $pid)"
    fi
}

_start() {
    if [[ ! "$pid" ]]; then
        echo -n "Starting Freenet..."
        COMMAND_LINE+=" wrapper.daemonize=TRUE"
        eval "$COMMAND_LINE" || fail "Failed to launch the wrapper!"
        i=0
        while [[ ! "$pid" && $i -lt $TIMEOUT ]]; do
            echo -n "."
            sleep 1
            check_if_running
            ((i++))
        done
        [[ $(get_pid) ]] &&
            echo " ok" || fail "timeout: Failed to start wrapper!"
    else
        echo "Freenet is already running! (pid: $pid)"
    fi
}

_restart() {
    [[ "$pid" ]] &&
        kill -USR1 "$(get_wrapper_pid)" || echo "Freenet is not running"
}

_stop() {
    if [[ "$pid" ]]; then
        echo -n "Stopping Freenet, this could take a minute..."
        kill -TERM "$(get_wrapper_pid)" || fail "Unable to stop Freenet: kill -TERM $pid"
        i=0
        while [[ "$pid" || $i -gt $TIMEOUT ]]; do
            echo -n "."
            sleep 1
            [[ ! $(get_pid) ]] && unset pid
            ((i++))
        done
        [[ "$pid" ]] &&
            fail "timeout: Failed to stop wrapper! (pid: $pid)" || echo " ok"
    else
        echo "Freenet is not running"
    fi
}

_dump() {
    if [[ "$pid" ]]; then
        kill -QUIT "$pid" || fail "Failed to dump Freenet Service"
        echo "Thread Dump is available in wrapper.log"
    else
        echo "Freenet is not running"
    fi
}
#-----------------------------------------------------------------------------

[[ "$1" != @(console|start|stop|restart|dump) ]] && {
    echo "Usage: $(basename $0) <command>"
    echo "Commands:"
    echo "  console     Launch in the current console"
    echo "  start       Start in the background as a daemon process"
    echo "  stop        Stop if running as a daemon or in another console"
    echo "  restart     Restart the JVM"
    echo "  dump        Request a Java thread dump"
    exit
}

check_user "$*"
check_if_running
init_vars

case "$1" in
     'console') _console
                ;;
       'start') _start
                ;;
        'stop') _stop
                ;;
     'restart') _restart
                ;;
        'dump') _dump
                ;;
esac