mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
3469975d2a
(e.g. ID Android devices get via GCM) to relay and to associate it there with messages that need to be delivered.
37 lines
909 B
Bash
Executable file
37 lines
909 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e -u
|
|
|
|
LIMIT=10000
|
|
|
|
usage() {
|
|
echo "usage: $0 [--limit <n>]"
|
|
exit 1
|
|
}
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case $1 in
|
|
--limit)
|
|
LIMIT=$2
|
|
shift
|
|
;;
|
|
*) usage
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
QUERY="WHERE NOT -NTOTAL = sum_array(nperdevice)"
|
|
|
|
echo "Device (pid) count: $(pidof xwords | wc | awk '{print $2}')"
|
|
echo "Row count:" $(psql -t xwgames -c "select count(*) FROM games $QUERY;")
|
|
|
|
echo "SELECT dead,connname,cid,room,lang,clntVers,ntotal,nperdevice,seeds,devTypes,devids,ack,nsent "\
|
|
"FROM games $QUERY ORDER BY NOT dead, connname LIMIT $LIMIT;" \
|
|
| psql xwgames
|
|
|
|
echo "SELECT connname, hid, devType, devid, count(*), sum(msglen) "\
|
|
"FROM msgs where connname in (SELECT connname from games where not games.dead group by connname)" \
|
|
"GROUP BY connname, hid, devType, devid ORDER BY connname;" \
|
|
| psql xwgames
|
|
|