diff options
author | David Schleef <ds@schleef.org> | 2010-08-26 20:15:43 -0700 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2010-09-04 11:22:26 -0700 |
commit | 239bcffa568df315ef3cc7cff3f3240f4548f4b8 (patch) | |
tree | 1821be7a12b7f7e918fea2fcfe7eb017ad9502ed /tools | |
parent | 7ce0ca6c89d8e597af9be65b4c3e1f7203e7d687 (diff) | |
download | gstreamer-plugins-bad-239bcffa568df315ef3cc7cff3f3240f4548f4b8.tar.gz |
element-maker: construct element names
Diffstat (limited to 'tools')
-rw-r--r-- | tools/base.c | 2 | ||||
-rwxr-xr-x | tools/element-maker | 57 |
2 files changed, 48 insertions, 11 deletions
diff --git a/tools/base.c b/tools/base.c index 76b3315a6..990168a31 100644 --- a/tools/base.c +++ b/tools/base.c @@ -1,7 +1,7 @@ % copyright /* GStreamer - * Copyright (C) 2010 FIXME <fixme@example.com> + * Copyright (C) 2010 REAL_NAME <EMAIL_ADDRESS> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public diff --git a/tools/element-maker b/tools/element-maker index 2edc7cb22..b91479f68 100755 --- a/tools/element-maker +++ b/tools/element-maker @@ -1,14 +1,30 @@ #!/bin/sh -class=element +class=basetransform -GST_IS_REPLACE=GST_IS_CAPS_DEBUG -GST_REPLACE=GST_CAPS_DEBUG -GST_TYPE_REPLACE=GST_TYPE_CAPS_DEBUG -GstReplace=GstCapsDebug -gst_replace=gst_caps_debug -gstreplace=gstcapsdebug -replace=capsdebug +prefix=gst +name=edi_test + + +PREFIX=$(echo $prefix | sed -e 's/\(.*\)/\U\1/') +NAME=$(echo $name | sed -e 's/\(.*\)/\U\1/') +Prefix=$(echo $prefix | sed -e 's/_\(.\)/\U\1/' -e 's/^\(.\)/\U\1/') +Name=$(echo $name | sed -e 's/_\(.\)/\U\1/' -e 's/^\(.\)/\U\1/') + +GST_IS_REPLACE=${PREFIX}_IS_${NAME} +GST_REPLACE=${PREFIX}_${NAME} +GST_TYPE_REPLACE=${PREFIX}_TYPE_${NAME} +GstReplace=${Prefix}${Name} +gst_replace=${prefix}_${name} +gstreplace=${prefix}$(echo $name | sed -e 's/_//') +replace=$(echo $name | sed -e 's/_//') + +if [ "$REAL_NAME" = "" ] ; then + REAL_NAME=FIXME +fi +if [ "$EMAIL_ADDRESS" = "" ] ; then + EMAIL_ADDRESS=fixme@example.com +fi source=gst$class.c pkg=`grep -A 10000 '^% pkg-config' $source | tail -n +2|grep -m 1 -B 10000 '^%'|head -n -1` @@ -18,7 +34,28 @@ GstBaseReplace=`grep -A 10000 '^% ClassName' $source | tail -n +2|grep -m 1 -B 1 generate () { -grep -A 10000 '^% copyright' base.c | tail -n +2|grep -m 1 -B 10000 '^%'|head -n -1 +cat <<-EOF +/* GStreamer + * Copyright (C) $(date +%Y) $REAL_NAME <$EMAIL_ADDRESS> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ +EOF + +#grep -A 10000 '^% copyright' base.c | tail -n +2|grep -m 1 -B 10000 '^%'|head -n -1 cat <<EOF @@ -82,7 +119,7 @@ gst_replace_base_init (gpointer g_class) gst_static_pad_template_get (&gst_replace_sink_template)); gst_element_class_set_details_simple (element_class, "FIXME", - "Generic", "FIXME", "FIXME <fixme@example.com>"); + "Generic", "FIXME", "$REAL_NAME <$EMAIL_ADDRESS>"); } static void |