Merge pull request #823 from DavidKarlas/master
[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.Xml.Linq;
30
31 namespace Xamarin.ApiDiff {
32
33         public class NamespaceComparer : Comparer {
34
35                 ClassComparer comparer;
36
37                 public NamespaceComparer ()
38                 {
39                         comparer =  new ClassComparer ();
40                 }
41
42                 public void Compare (XElement source, XElement target)
43                 {
44                         var s = source.Element ("namespaces");
45                         var t = target.Element ("namespaces");
46                         if (XNode.DeepEquals (s, t))
47                                 return;
48                         Compare (s.Elements ("namespace"), t.Elements ("namespace"));
49                 }
50
51                 public override void SetContext (XElement current)
52                 {
53                         State.Namespace = current.Attribute ("name").Value;
54                 }
55
56                 public override void Added (XElement target)
57                 {
58                         Output.WriteLine ("<h2>New Namespace {0}</h2>", target.Attribute ("name").Value);
59                         Output.WriteLine ();
60                         // list all new types
61                         foreach (var addedType in target.Element ("classes").Elements ("class"))
62                                 comparer.Added (addedType);
63                         Output.WriteLine ();
64                 }
65
66                 public override void Modified (XElement source, XElement target)
67                 {
68                         var output = Output;
69                         State.Output = new StringWriter ();
70                         comparer.Compare (source, target);
71
72                         var s = Output.ToString ();
73                         State.Output = output;
74                         if (s.Length > 0) {
75                                 Output.WriteLine ("<h2>Namespace {0}</h2>", target.Attribute ("name").Value);
76                                 Output.WriteLine (s);
77                         }
78                 }
79
80                 public override void Removed (XElement source)
81                 {
82                         Output.WriteLine ("<h2>Removed Namespace {0}</h2>", source.Attribute ("name").Value);
83                         Output.WriteLine ();
84                         // list all removed types
85                         foreach (var removedType in source.Element ("classes").Elements ("class"))
86                                 comparer.Removed (removedType);
87                         Output.WriteLine ();
88                 }
89         }
90 }