aboutsummaryrefslogtreecommitdiff
path: root/pool.sh
blob: 9e97d86fa461f61a46656505ce2c61f1859b6302 (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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#!/usr/bin/env bash
set -e

# Fetch arguments
CMD=$1
if [ $# -gt 1 ]
then
    POOL_ID=$2
    shift 2
    PROC_CMD=$@    
fi

# Config: feel free to change at your own risks
TMPDIR=/tmp
POOL_FORMAT="pool_${POOL_ID}"
POOL="${TMPDIR}/${POOL_FORMAT}/"
POOL_STATUS="${POOL}/status"
REFRESH_EVERY=2

abort() {
    echo $@
    exit 1
}

write_status() {
    echo "maxproc=${maxproc}" > "$POOL_STATUS"
    echo "nproc=${nproc}" >> "$POOL_STATUS"
    echo "procs=\"${procs}\"" >> "$POOL_STATUS"
    echo "lastprocid=$lastprocid" >> "$POOL_STATUS"
}

create_properties() {
    file="${POOL}/proc_${procid}"
    echo cmd=\"${PROC_CMD}\" > "$file"
    echo "procpid=${procpid}" >> "$file"
    echo "procid=${procid}" >> "$file"
    echo "startat=${startat}" >> "$file"
}

setp() {
    file="${POOL}/proc_${procid}"
    echo $1=$2 >> "$file"
}

getp() {
    file="${POOL}/proc_${procid}"
    source "$file"
    echo "${!1}"
}


create() {
    [ -d "$POOL" ] && abort "Pool \"$POOL\" already exists"
    mkdir -p "$POOL"
    # Write pool status
    maxproc=$1
    nproc=0
    procs=""
    lastprocid=0
    write_status
}

remove() {
    refresh # Refresh process status and load status
    [ $nproc -gt 0 ] && abort "Processes are still running in the pool!"
    rm -rf "$POOL"
}

refresh() {
    source "$POOL_STATUS"
    procs_new=""
    for proc in $procs
    do
        if kill -0 $proc &>/dev/null
        then
            [ -z "$procs_new" ] && procs_new="$proc" || procs_new="$procs_new $proc"
        fi
    done
    procs=$procs_new
    nproc=$(echo "$procs"|wc -w)
    write_status
}

run() {
    refresh
    # Wait for room in the pool
    while [ $nproc -ge $maxproc ]
    do
        sleep $REFRESH_EVERY
        refresh
    done
    # Create new process
    nproc=$(( nproc + 1 ))
    procid=$(( lastprocid + 1 ))
    lastprocid=$procid
    startat=$(date +"%s")
    $PROC_CMD > "$POOL/out_$procid" &
    procpid=$!
    [ -z "$procs" ] && procs="$procpid" || procs="$procs $procpid"
    write_status # Update status
    create_properties # Create process properties
    echo $procid # Return process id
}

cat_output() {
    file="${POOL}/out_${procid}"
    cat "$file"
}

list_pool() {
    find "${TMPDIR}" -name "${POOL_FORMAT}*" -exec basename {} \; 2>/dev/null | sed "s/${POOL_FORMAT}//g"
}

wait_pool() {
    refresh
    while [ $nproc -gt 0 ]
    do
        sleep $REFRESH_EVERY
        refresh
    done
}

list_output() {
    refresh
    find "${POOL}" -name "out_*"
}

remove_force() {
    refresh
    for proc in $procs
    do
        kill -9 $proc
    done
    rm -rf "$POOL"    
}

# Ensure pool exists
[ ! "$CMD" == "create" ] && [ ! "$CMD" == "ls" ] && [ ! -d "$POOL" ] && abort "Pool $POOL_ID not found"

# Launch command
case "$CMD" in
    "create")
        create $1
        ;;
    "remove")
        remove
        ;;
    "run")
        run
        ;;
    "cat")
        procid=$1
        refresh
        [ $procid -gt $lastprocid ] && abort "Processus $procid not found"
        cat_output
        ;;
    "ls-output")
        list_output
        ;;
    "ls")
        list_pool
        ;;
    "wait")
        wait_pool
        ;;
    "remove-force")
        remove_force
        ;;
    "setp")
        procid=$1
        setp $2 $3
        ;;
    "getp")
        procid=$1
        getp $2
        ;;
    *)
        abort "Command $CMD unknown"
esac