-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerateBackpacker.sh
executable file
·87 lines (68 loc) · 2.41 KB
/
generateBackpacker.sh
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
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/sh
echo "Removing old Kotlin file..."
rm -rf src/main/kotlin/com/github/backpacker/Backpacker.kt
out=""
out=$out"\npackage com.github.backpacker"
out=$out"\nimport com.google.protobuf.ByteString"
out=$out"\n class Backpacker {"
out=$out"\n fun toBytesList(backpacks: List<ByteArray>): ByteArray {"
out=$out"\n val builder = BackpackMessageOuterClass.BackpackMessagesList.newBuilder()"
out=$out"\n for (backpack in backpacks) {"
out=$out"\n builder.addList(ByteString.copyFrom(backpack))"
out=$out"\n }"
out=$out"\n return builder.build().toByteArray()"
out=$out"\n }"
out=$out"\n fun fromBytesList(bytes: ByteArray): List<ByteArray> {"
out=$out"\n val parsedBackpackList = BackpackMessageOuterClass.BackpackMessagesList.parseFrom(bytes)"
out=$out"\n return parsedBackpackList.listList.map { it.toByteArray() }"
out=$out"\n }"
out=$out"\n fun toBytes(backpack: Backpack): ByteArray {"
out=$out"\n val builder = BackpackMessageOuterClass.BackpackMessage.newBuilder()"
positionsByType=10
position=1
incrementPosition(){
position=`expr $position + 1`
}
createToBytesRows(){
echo "Creating toBytes() rows of type $1..."
for i in `seq 1 $positionsByType`
do
out=$out"\n if(backpack.$2$i != null){"
out=$out"\n builder.$2$i = backpack.$2$i"
out=$out"\n }"
incrementPosition
done
}
createFromBytesRows(){
echo "Creating fromBytes() rows of type $1..."
for i in `seq 1 $positionsByType`
do
out=$out"\n parsedBackpack.$2$i,"
incrementPosition
done
}
position = 1
positionsByType=40
createToBytesRows string string
positionsByType=20
createToBytesRows bool boolean
createToBytesRows double double
createToBytesRows float float
createToBytesRows int32 integer
createToBytesRows int64 long
out=$out"\n return builder.build().toByteArray()}"
out=$out"\n fun fromBytes(bytes: ByteArray): Backpack {"
out=$out"\n val parsedBackpack = BackpackMessageOuterClass.BackpackMessage.parseFrom(bytes)"
out=$out"\n return Backpack("
position=1
positionsByType=40
createFromBytesRows string string
positionsByType=20
createFromBytesRows bool boolean
createFromBytesRows double double
createFromBytesRows float float
createFromBytesRows int32 integer
createFromBytesRows int64 long
out=$out"\n)}}"
echo $out >> src/main/kotlin/com/github/backpacker/Backpacker.kt
echo "Proto file generated!"