summaryrefslogtreecommitdiffstats
path: root/util/docker/coreboot.org-status/board-status.html/bucketize.sh
blob: fd3a94b3722b4e398ef6187234dc3cef06f57467 (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
#!/usr/bin/env sh
# usage: $0 [weekly|monthly|quarterly] < filenames
#   sorts files of the form VENDOR/BOARD/COMMIT/DATE/revision.txt
#   into buckets of the given granularity

weekly() {
	date --date="$1" +%GW%V 2>/dev/null
	return $?
}

monthly() {
	date --date="$1" +%Y-%m 2>/dev/null
	return $?
}

quarterly() {
	date --date="$1" "+%Y %m"  2>/dev/null | awk '{ q=int(($2-1)/3+1); print $1 "Q" q}'
	return $?
}

# Restrict $1 to allowed values
if [ "$1" != "weekly" ] && [ "$1" != "monthly" ] && [ "$1" != "quarterly" ]; then
	exit 1
fi

curr=""
sort -r -k4 -t/ | while read file; do
	# Exclude 'oem' directories
	if echo "$file" | grep -q '/oem/'; then continue; fi
	timestamp=$(printf "%s" "$file" | cut -d/ -f4 | tr _ :)

	# If the directory is not a date, skip it.
	new=$($1 "$timestamp");retval=$?
	if [ "$retval" != "0" ]; then continue; fi

	if [ "$new" != "$curr" ]; then
		if [ "$curr" != "" ]; then
			printf "\n"
		fi
		printf "%s:" "$new"
		curr=$new
	fi
	printf "%s " "$file"
done
printf "\n"