aboutsummaryrefslogtreecommitdiff
path: root/src/mfstat.awk
blob: 78d4cf765f70a5a18a9da4a3ab31848169427d78 (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
# This file is part of mailfromd.
# Copyright (C) 2007 Sergey Poznyakoff
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA 

BEGIN {
	header[nh++] = "-*- buffer-read-only: t -*- vi: set ro:"
	header[nh++] = "THIS FILE IS GENERATED AUTOMATICALLY.  PLEASE DO NOT EDIT."
}

state == 0 && /typedef enum mf_status_code/ { state = 1; next }
state == 0 && /TEMPLATE/ { 
	state = 2; 
	if (NF > 1) {
		if (NF == 2) {
			for (i = 0; i < nh; i++)
				print $2 " " header[i]
		} else {
			for (i = 0; i < nh; i++)
				print $2 " " header[i] " " $3
		}
	}
	next 
}
state == 0 { next }

state == 1 && $1 == "mf_status_count" { state = 0 }
state == 1 {
	if (match($1, "mf_(.+),", a))
	    status_code[code++] = a[1];
}

state == 2 {
	if (match($0, "%{(.*)%}", a)) {
		for (i = 0; i < code; i++) {
			s = gensub("%NAME", status_code[i], "g", a[1]);
			s = gensub("%CODE", i, "g", s)
			print s 
		}
	} else
		print
}	


Return to:

Send suggestions and report system problems to the System administrator.