blob: 6aeb8b5c00183042068724ea867970474d9fa0c3 (
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
|
#!/bin/echo Don't run this file, it's for common functions."
OS_PATH="/opt/opensim_SC"
OS_USER="opensimsc"
# Figure out where we are, most of this mess is to troll through soft links.
# PRGDIR=$(getPrgDir)
getPrgDir()
{
PRG="$0"
while [ -h "${PRG}" ] ; do
ls=$(ls -ld "${PRG}")
link=`expr "${ls}" : '.*-> \(.*\)$'`
if expr "${link}" : '.*/.*' > /dev/null; then
PRG="${link}"
else
PRG=$(dirname "${PRG}")/"${link}"
fi
done
PRGDIR=$(dirname "${PRG}")
pushd ${PRGDIR} >/dev/null
export PRGDIR=$(pwd)
popd >/dev/null
}
# Convert number to sim name
# name=$(num2name 1)
num2name()
{
/usr/bin/printf 'sim%02d' "$1"
}
# Sanitize the name. Not removing [ or ], couldn't get that to work, only important for Windows.
# name=$(sanitize "the name")
sanitize()
{
echo "$1" | sed -e 's/[\\/:\*\?"<>\|@#$%&\0\x01-\x1F\x27\x40\x60\x7F. ]/_/g' -e 's/^$/NONAME/'
}
# Grab the first Section line of the sims .ini file, cut it down to the name.
# name=$(getSimName 1)
getSimName()
{
grep "RegionName" ${PRGDIR}/../../config/sim$1/*.ini | head -n 1 | cut -d '"' -f 2
}
# Calculate size of the sleep @ one second per megabyte of combined I/OAR file sizes.
# sleepPerSize o "the name"
# sleepPerSize i "the name"
sleepPerSize()
{
type="$1"
name=$(sanitize "$2")
rm -f ${PRGDIR}/../../backups/${name}-sleepPerSize
for file in ${PRGDIR}/../../backups/${name}-*.${type}ar; do
if [ -f ${file} ]; then
# We only loop through them coz bash sucks, we can find the total size now and jump out of the loop.
echo $(du -c -BM ${PRGDIR}/../../backups/${name}-*.${type}ar | tail -n 1 | cut -f 1 | cut -d 'M' -f 1)
touch ${PRGDIR}/../../backups/${name}-sleepPerSize
break
fi
done
# Sleep 200 instead if we can't find any files.
if [ -f ${PRGDIR}/../../backups/${name}-sleepPerSize ]; then
rm -f ${PRGDIR}/../../backups/${name}-sleepPerSize
else
echo 200
fi
}
|