Merge pull request #1390 from woodsb02/FreeBSDMacNetworkInterfaces
[mono.git] / mcs / tools / corcompare / mono-api-html / NamespaceComparer.cs
1 // 
2 // Authors
3 //    Sebastien Pouliot  <sebastien@xamarin.com>
4 //
5 // Copyright 2013 Xamarin Inc. http://www.xamarin.com
6 // 
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26
27 using System;
28 using System.IO;
29 using System.Linq;
30 using System.Xml.Linq;
31
32 namespace Xamarin.ApiDiff {
33
34         public class NamespaceComparer : Comparer {
35
36                 ClassComparer comparer;
37
38                 public NamespaceComparer ()
39                 {
40                         comparer =  new ClassComparer ();
41                 }
42
43                 public void Compare (XElement source, XElement target)
44                 {
45                         var s = source.Element ("namespaces");
46                         var t = target.Element ("namespaces");
47                         if (XNode.DeepEquals (s, t))
48                                 return;
49                         Compare (s.Elements ("namespace"), t.Elements ("namespace"));
50                 }
51
52                 public override void SetContext (XElement current)
53                 {
54                         State.Namespace = current.Attribute ("name").Value;
55                 }
56
57                 public override void Added (XElement target)
58                 {
59                         string name = target.Attribute ("name").Value;
60                         if (State.IgnoreNew.Any (re => re.IsMatch (name)))
61                                 return;
62
63                         Output.WriteLine ("<h2>New Namespace {0}</h2>", name);
64                         Output.WriteLine ();
65                         // list all new types
66                         foreach (var addedType in target.Element ("classes").Elements ("class"))
67                                 comparer.Added (addedType);
68                         Output.WriteLine ();
69                 }
70
71                 public override void Modified (XElement source, XElement target)
72                 {
73                         var output = Output;
74                         State.Output = new StringWriter ();
75                         comparer.Compare (source, target);
76
77                         var s = Output.ToString ();
78                         State.Output = output;
79                         if (s.Length > 0) {
80                                 Output.WriteLine ("<h2>Namespace {0}</h2>", target.Attribute ("name").Value);
81                                 Output.WriteLine (s);
82                         }
83                 }
84
85                 public override void Removed (XElement source)
86                 {
87                         Output.WriteLine ("<h2>Removed Namespace {0}</h2>", source.Attribute ("name").Value);
88                         Output.WriteLine ();
89                         // list all removed types
90                         foreach (var removedType in source.Element ("classes").Elements ("class"))
91                                 comparer.Removed (removedType);
92                         Output.WriteLine ();
93                 }
94         }
95 }