-
Notifications
You must be signed in to change notification settings - Fork 0
/
update_all_catalogs
executable file
·123 lines (102 loc) · 4.68 KB
/
update_all_catalogs
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#!/usr/bin/env bash
# ========================================================================
# Copyright (c) 2021 Netcrest Technologies, LLC. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ========================================================================
SCRIPT_DIR="$(cd -P -- "$(dirname -- "$0")" && pwd -P)"
. $SCRIPT_DIR/.argenv.sh
EXECUTABLE="`basename $0`"
BUNDLE_PRODUCT_LIST="none gemfire geode hazelcast kafka confluent mosquitto snappydata coherence"
if [ "$HELP" == "true" ]; then
cat <<EOF
NAME
$EXECUTABLE - Generate all catalog files
SYNOPSIS
$EXECUTABLE
DESCRIPTION
Generates all catalog files
DEFAULT
$EXECUTABLE
EOF
exit
fi
PRODUCT_LIST="none geode hazelcast kafka confluent mosquitto snappydata coherence"
ALL_MD="all-catalog.md"
for PRODUCT in $PRODUCT_LIST; do
echo "Generating $PRODUCT..."
./update_catalog -header -product $PRODUCT
done
LINK_HEADER="![PadoGrid](https://github.com/padogrid/padogrid/raw/develop/images/padogrid-3d-16x16.png) [*PadoGrid*](https://github.com/padogrid) | [*Catalogs*](https://github.com/padogrid/catalog-bundles/blob/master/all-catalog.md) | [*Manual*](https://github.com/padogrid/padogrid/wiki) | [*FAQ*](https://github.com/padogrid/padogrid/wiki/faq) | [*Releases*](https://github.com/padogrid/padogrid/releases) | [*Templates*](https://github.com/padogrid/padogrid/wiki/Using-Bundle-Templates) | [*Pods*](https://github.com/padogrid/padogrid/wiki/Understanding-Padogrid-Pods) | [*Kubernetes*](https://github.com/padogrid/padogrid/wiki/Kubernetes) | [*Docker*](https://github.com/padogrid/padogrid/wiki/Docker) | [*Apps*](https://github.com/padogrid/padogrid/wiki/Apps) | [*Quick Start*](https://github.com/padogrid/padogrid/wiki/Quick-Start)"
NONE_HEADER="[Generic (none) Catalog](#books-generic-none-bundle-catalog-books)"
GEODE_HEADER="[Geode/GemFire Catalog](#books-geodegemfire-bundle-catalog-books)"
HAZELCAST_HEADER="[Hazelcast IMDG Catalog](#books-hazelcast-imdg-bundle-catalog-books)"
KAFKA_HEADER="[Kafka Catalog](#books-kafka-bundle-catalog-books)"
CONFLUENT_HEADER="[Kafka Confluent Catalog](#books-kafka-confluent-bundle-catalog-books)"
MOSQUITTO_HEADER="[Mosquitto Catalog](#books-mosquitto-bundle-catalog-books)"
SNAPPYDATA_HEADER="[SnappyData/ComputeDB Catalog](#books-snappydataconputedb-bundle-catalog-books)"
COHERENCE_HEADER="[Coherence Catalog](#books-coherence-bundle-catalog-books)"
# Generate combined catalog
echo "Generating combined catalog..."
# Start with the link header
echo "$LINK_HEADER" > $ALL_MD
echo "" >> $ALL_MD
echo "---" >> $ALL_MD
echo "" >> $ALL_MD
echo "# :earth_americas: PadoGrid Bundle Catalogs :earth_americas:" >> $ALL_MD
echo "" >> $ALL_MD
echo "*Bundles represent fully implemented use cases.* This page lists all of the open source PadoGrid bundles. The bundles in each product are grouped as follows." >> $ALL_MD
echo "" >> $ALL_MD
echo "- $NONE_HEADER" >> $ALL_MD
echo "- $GEODE_HEADER" >> $ALL_MD
echo "- $HAZELCAST_HEADER" >> $ALL_MD
echo "- $KAFKA_HEADER" >> $ALL_MD
echo "- $CONFLUENT_HEADER" >> $ALL_MD
echo "- $MOSQUITTO_HEADER" >> $ALL_MD
echo "- $SNAPPYDATA_HEADER" >> $ALL_MD
echo "- $COHERENCE_HEADER" >> $ALL_MD
# Place interim files in the tmp dir
if [ ! -d tmp ]; then
mkdir tmp
fi
# Create link header files for products
LINK_HEADER_TOP_FILE="tmp/top_link.md"
echo "$LINK_HEADER" > $LINK_HEADER_TOP_FILE
echo "" >> "$LINK_HEADER_TOP_FILE"
echo "---" >> "$LINK_HEADER_TOP_FILE"
echo "" >> "$LINK_HEADER_TOP_FILE"
LINK_HEADER_BOTTOM_FILE="tmp/bottom_link.md"
echo "" > "$LINK_HEADER_BOTTOM_FILE"
echo "---" >> "$LINK_HEADER_BOTTOM_FILE"
echo "" >> "$LINK_HEADER_BOTTOM_FILE"
echo "$LINK_HEADER" >> "$LINK_HEADER_BOTTOM_FILE"
# Append prodct MDs
for PRODUCT in $PRODUCT_LIST; do
echo "" >> $ALL_MD
echo "---" >> $ALL_MD
echo "" >> $ALL_MD
cat $PRODUCT-catalog.md >> $ALL_MD
# Add the link hader in the product catalog md
# Top
mv $PRODUCT-catalog.md tmp/tmp.md
cp $LINK_HEADER_TOP_FILE $PRODUCT-catalog.md
cat tmp/tmp.md >> $PRODUCT-catalog.md
# Bottom
cat $LINK_HEADER_BOTTOM_FILE >> $PRODUCT-catalog.md
done
# End with the link header
echo "" >> $ALL_MD
echo "---" >> $ALL_MD
echo "" >> $ALL_MD
echo "$LINK_HEADER" >> $ALL_MD
echo "$EXECUTABLE complete."