* config/tc-xtensa.c (xg_assembly_relax): Increment steps_taken for
[deliverable/binutils-gdb.git] / gdb / observer.sh
... / ...
CommitLineData
1#!/bin/sh -e
2
3if test $# -ne 3
4then
5 echo "Usage: $0 <h|inc> <observer.texi> <observer.out>" 1>&2
6 exit 0
7fi
8
9lang=$1 ; shift
10texi=$1 ; shift
11o=$1
12case $lang in
13 h) tmp=htmp ;;
14 inc) tmp=itmp ;;
15esac
16otmp="`echo $1 | sed -e 's,\.[^.]*$,,'`.$tmp"; shift
17echo "Creating ${otmp}" 1>&2
18rm -f ${otmp}
19
20# Can use any of the following: cat cmp cp diff echo egrep expr false
21# grep install-info ln ls mkdir mv pwd rm rmdir sed sleep sort tar
22# test touch true
23
24cat <<EOF >>${otmp}
25/* GDB Notifications to Observers.
26
27 Copyright (C) 2004, 2005 Free Software Foundation, Inc.
28
29 This file is part of GDB.
30
31 This program is free software; you can redistribute it and/or modify
32 it under the terms of the GNU General Public License as published by
33 the Free Software Foundation; either version 2 of the License, or
34 (at your option) any later version.
35
36 This program is distributed in the hope that it will be useful,
37 but WITHOUT ANY WARRANTY; without even the implied warranty of
38 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39 GNU General Public License for more details.
40
41 You should have received a copy of the GNU General Public License
42 along with this program; if not, write to the Free Software
43 Foundation, Inc., 51 Franklin Street, Fifth Floor,
44 Boston, MA 02110-1301, USA.
45
46 --
47
48 This file was generated using observer.sh and observer.texi. */
49
50EOF
51
52
53case $lang in
54 h) cat <<EOF >>${otmp}
55#ifndef OBSERVER_H
56#define OBSERVER_H
57
58struct observer;
59struct bpstats;
60struct so_list;
61EOF
62 ;;
63esac
64
65# We are about to set IFS=:, so DOS-style file names with a drive
66# letter and a colon will be in trouble.
67
68if test -n "$DJGPP"
69then
70 texi=`echo $texi | sed -e 's,^\([a-zA-Z]\):/,/dev/\1/,'`
71fi
72
73# generate a list of events that can be observed
74
75IFS=:
76sed -n '
77/@deftypefun void/{
78# Save original line for later processing into the actual parameter
79 h
80# Convert from: @deftypefun void EVENT (TYPE @var{PARAM},...)
81# to event and formals: EVENT:TYPE PARAM, ...:
82 s/^.* void \([a-z_][a-z_]*\) (\(.*\))$/\1:\2/
83 s/@var{//g
84 s/}//g
85# Switch to held
86 x
87# Convert from: @deftypefun void FUNC (TYPE @var{PARAM},...)
88# to actuals: PARAM, ...
89 s/^[^{]*[{]*//
90 s/[}]*[^}]*$//
91 s/}[^{]*{/, /g
92# Combine held (EVENT:TYPE PARAM, ...:) and pattern (PARAM, ...) into
93# FUNC:TYPE PARAM, ...:PARAM, ...
94 H
95 x
96 s/\n/:/g
97 p
98}
99' $texi | while read event formal actual
100do
101 case $lang in
102 h) cat <<EOF >>${otmp}
103
104/* ${event} notifications. */
105
106typedef void (observer_${event}_ftype) (${formal});
107
108extern struct observer *observer_attach_${event} (observer_${event}_ftype *f);
109extern void observer_detach_${event} (struct observer *observer);
110extern void observer_notify_${event} (${formal});
111EOF
112 ;;
113
114 inc)
115 cat <<EOF >>${otmp}
116
117/* ${event} notifications. */
118
119static struct observer_list *${event}_subject = NULL;
120
121struct ${event}_args { `echo "${formal}" | sed -e 's/,/;/g'`; };
122
123static void
124observer_${event}_notification_stub (const void *data, const void *args_data)
125{
126 observer_${event}_ftype *notify = (observer_${event}_ftype *) data;
127 const struct ${event}_args *args = args_data;
128 notify (`echo ${actual} | sed -e 's/\([a-z0-9_][a-z0-9_]*\)/args->\1/g'`);
129}
130
131struct observer *
132observer_attach_${event} (observer_${event}_ftype *f)
133{
134 return generic_observer_attach (&${event}_subject,
135 &observer_${event}_notification_stub,
136 (void *) f);
137}
138
139void
140observer_detach_${event} (struct observer *observer)
141{
142 generic_observer_detach (&${event}_subject, observer);
143}
144
145void
146observer_notify_${event} (${formal})
147{
148 struct ${event}_args args;
149 `echo ${actual} | sed -e 's/\([a-z0-9_][a-z0-9_]*\)/args.\1 = \1/g'`;
150 if (observer_debug)
151 fprintf_unfiltered (gdb_stdlog, "observer_notify_${event}() called\n");
152 generic_observer_notify (${event}_subject, &args);
153}
154EOF
155 ;;
156 esac
157done
158
159
160case $lang in
161 h) cat <<EOF >>${otmp}
162
163#endif /* OBSERVER_H */
164EOF
165esac
166
167
168echo Moving ${otmp} to ${o}
169mv ${otmp} ${o}
This page took 0.028091 seconds and 4 git commands to generate.