summaryrefslogtreecommitdiff
path: root/gst-plugin/tools/make_element
blob: 5d59ffcf0f28e6734a2b35e7c59ed06d53424b38 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/sh

Template=$1;
srcfile=$2.c;
srcfile_h=$2.h;

if test x"$1" = x ; then
	echo "$0 Objectname [srcfile]\n";
	echo "  creates gstobjectname.{c,h} implementing GstObjectname\n";
	exit 1;
fi

if test x"$2" = x ; then
	srcfile="gstplugin.c"
	srcfile_h="gstplugin.h"
fi

id=$(echo '$Id$' | sed \
	-e 's/\$I[d]: \([^$]*\)\$/\1/g' \
	)

TEMPLATE=$(echo $Template | tr a-z A-Z)
template=$(echo $Template | tr A-Z a-z)
filename=$(echo $template | tr -d _)
Template=$(echo $Template | tr -d _)

YEAR=`date "+%Y"`
if [ -z "$REAL_NAME" ]; then
  REAL_NAME=`grep `id -u` /etc/passwd | awk -F":" '{ print $5 }' | awk -F"," '{ print $1 }'`
fi
if [ -z "$EMAIL_ADDRESS" ]; then
  EMAIL_ADDRESS="<user@hostname.org>"
fi

# remember to break up the Id: in the line below
sed \
	-e 's/gstplugin\.c/SOURCEFILE/g' \
	-e "s/gstplugin\.h/gst$filename.h/g" \
	-e "s/GstPluginTemplate/Gst$Template/g" \
	-e "s/gst_plugin_template/gst_$template/g" \
	-e "s/gst_type_plugin_template/gst_$template/g" \
	-e "s/GST_PLUGIN_TEMPLATE/GST_$TEMPLATE/g" \
	-e "s/GST_TYPE_PLUGIN_TEMPLATE/GST_TYPE_$TEMPLATE/g" \
	-e 's/\$I[d]: \([^$]*\)\$/\1/g' \
	-e 's/SOURCEFILE/gstobject\.c/g' \
	-e "s%MAKEFILTERVERSION%$id%g" \
	-e "s/plugin/$Template/g" \
	-e "s/YEAR/$YEAR/g" \
	-e "s/AUTHOR_NAME/$REAL_NAME/g" \
	-e "s/AUTHOR_EMAIL/<$EMAIL_ADDRESS>/g" \
	$srcfile >gst$filename.c.tmp && mv gst$filename.c.tmp gst$filename.c

sed \
	-e 's/gstplugin\.c/SOURCEFILE/g' \
	-e "s/GstPluginTemplate/Gst$Template/g" \
	-e "s/gst_plugin_template/gst_$template/g" \
	-e "s/gst_type_plugin_template/gst_$template/g" \
	-e "s/GST_PLUGIN_TEMPLATE/GST_$TEMPLATE/g" \
	-e "s/GST_TYPE_PLUGIN_TEMPLATE/GST_TYPE_$TEMPLATE/g" \
	-e "s/GST_IS_PLUGIN_TEMPLATE/GST_IS_$TEMPLATE/g" \
	-e 's/\$I[d]: \([^$]*\)\$/\1/g' \
	-e 's/SOURCEFILE/gstobject\.c/g' \
	-e "s%MAKEFILTERVERSION%$id%g" \
	-e "s/plugin/$Template/g" \
	-e "s/YEAR/$YEAR/g" \
	-e "s/AUTHOR_NAME/$REAL_NAME/g" \
	-e "s/AUTHOR_EMAIL/<$EMAIL_ADDRESS>/g" \
	$srcfile_h >gst$filename.h.tmp && mv gst$filename.h.tmp gst$filename.h