Welcome to mirror list, hosted at ThFree Co, Russian Federation.

protobuf-gen.sh « scripts - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25d2feaeb984820c93a02a8ab114949cdace0c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

TR="y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/"

sed -n '/PB_AUTOGEN_START/,/PB_AUTOGEN_STOP/ {
		/PB_AUTOGEN_ST/d;
		/^[ \t]*$/d;
		s/,.*$//;
		s/\tPB_//;
		p;
	   }' criu/include/protobuf-desc.h | \
while IFS= read -r x; do
	x_la=$(echo "$x" | sed $TR)
	x_uf=$(echo "$x" | sed -nr 's/^./&#\\\
/;
		s/_(.)/\\\
\1#\\\
/g;
		p;' | \
		sed -r "/^[A-Z]#\\\\\$/!{ $TR; }" | \
		sed -r ':loop; N; s/#?\\\n//; t loop')
	echo "CR_PB_DESC($x, $x_uf, $x_la);"
done