libgocryptfs/profiling/streaming-read.bash

30 lines
765 B
Bash
Raw Normal View History

#!/bin/bash -eu
cd "$(dirname "$0")"
T=$(mktemp -d)
2021-08-31 19:01:47 +02:00
mkdir "$T/a" "$T/b"
2021-08-31 19:01:47 +02:00
../gocryptfs -init -quiet -scryptn 10 -extpass "echo test" "$T/a"
../gocryptfs -quiet -extpass "echo test" "$T/a" "$T/b"
# Cleanup trap
trap "cd /; fusermount -u -z $T/b; rm -Rf $T/a" EXIT
# Write 100MB test file
2021-08-31 19:01:47 +02:00
dd if=/dev/zero of="$T/b/zero" bs=1M count=100 status=none
# Remount with profiling
2021-08-31 19:01:47 +02:00
fusermount -u "$T/b"
../gocryptfs -quiet -extpass "echo test" -cpuprofile "$T/cprof" -memprofile "$T/mprof" \
"$T/a" "$T/b"
# Read 10 x 100MB instead of 1 x 1GB to keep the used disk space low
for i in $(seq 1 10); do
2021-08-31 19:01:47 +02:00
dd if="$T/b/zero" of=/dev/null bs=1M count=100
done
echo
echo "Hint: go tool pprof ../gocryptfs $T/cprof"
2017-06-29 19:20:34 +02:00
echo " go tool pprof -alloc_space ../gocryptfs $T/mprof"