cvs updates from Wed Dec 15 17:45:22 EST 2010
[tridge/bind9.git] / util / new-func
1 #!/usr/bin/perl
2 #
3 # Copyright (C) 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
4 #
5 # Permission to use, copy, modify, and/or distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 # AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 # PERFORMANCE OF THIS SOFTWARE.
16
17 # $Id: new-func,v 1.4 2007/06/19 23:47:24 tbox Exp $
18
19 # Given two CHANGES files, list [bug] entries present in the
20 # first one but not in the second one.
21 #
22
23 use FileHandle;
24
25 # $/ = "";
26
27 # Read the CHANGES file $fn and return a hash of change
28 # texts and categories indexed by change number.
29
30 sub readfile {
31         my ($fn) = @_;
32         my $fh = new FileHandle($fn, "r")
33             or die "open: $fn: $!";
34         
35         my $changes = { };
36
37         my ($changeid, $category);
38
39         $changeid = "none";
40         $category = "none";
41
42         while (<$fh>) {
43                 if (m/^\s*(\d+)\.\s+\[(\w+)\]/) {
44                         $changeid = $1;
45                         $category = $2;
46                         # print "*** $1 $2\n";
47                 } elsif (m/---.* released ---/) {
48                         $changeid = "none";
49                         $category = "none";
50                         next;
51                 } elsif (m/^# /) {
52                         $changeid = "none";
53                         $category = "none";
54                         next;
55                 }
56                 if ($changeid eq "none") {
57                         next;
58                 }
59                 $changeid =~ s/\.$//;
60                 $changes->{$changeid}->{text} .= $_;
61                 $changes->{$changeid}->{category} = $category;
62         }
63
64         return $changes;
65 }
66
67 @ARGV == 2 || @ARGV == 3 or die "usage: $0 changes-file-1 changes-file-2\n";
68
69 my $c1 = readfile($ARGV[0]);
70 my $c2 = readfile($ARGV[1]);
71 if (@ARGV == 3) {
72         $c3 = readfile($ARGV[2]);
73 } else {
74         my $c3 = { };
75 }
76
77 foreach my $c (sort {$a <=> $b} keys %$c1) {
78         my $category = $c1->{$c}->{category};
79         my $text = $c1->{$c}->{text};
80         if ($category eq "func" && !exists($c2->{$c}) && !exists($c3->{$c})) {
81                 print $c1->{$c}->{text};
82         }
83 }