Merge pull request #2802 from BrzVlad/feature-evacuation-opt2
[mono.git] / mcs / tools / 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.Collections.Generic;
29 using System.IO;
30 using System.Linq;
31 using System.Xml.Linq;
32
33 namespace Xamarin.ApiDiff {
34
35         public class NamespaceComparer : Comparer {
36
37                 ClassComparer comparer;
38
39                 public NamespaceComparer ()
40                 {
41                         comparer =  new ClassComparer ();
42                 }
43
44                 public void Compare (XElement source, XElement target)
45                 {
46                         var s = source.Element ("namespaces");
47                         var t = target.Element ("namespaces");
48                         if (XNode.DeepEquals (s, t))
49                                 return;
50                         Compare (s.Elements ("namespace"), t.Elements ("namespace"));
51                 }
52
53                 public override void SetContext (XElement current)
54                 {
55                         State.Namespace = current.Attribute ("name").Value;
56                 }
57
58                 public override void Added (XElement target, bool wasParentAdded)
59                 {
60                         string name = target.Attribute ("name").Value;
61                         if (State.IgnoreNew.Any (re => re.IsMatch (name)))
62                                 return;
63
64                         Output.WriteLine ("<!-- start namespace {0} --> <div> ", name);
65                         Output.WriteLine ("<h2>New Namespace {0}</h2>", name);
66                         Output.WriteLine ();
67                         // list all new types
68                         foreach (var addedType in target.Element ("classes").Elements ("class"))
69                                 comparer.Added (addedType, true);
70                         Output.WriteLine ("</div> <!-- end namespace {0} -->", name);
71                         Output.WriteLine ();
72                 }
73
74                 public override void Modified (XElement source, XElement target, ApiChanges differences)
75                 {
76                         var output = Output;
77                         State.Output = new StringWriter ();
78                         comparer.Compare (source, target);
79
80                         var s = Output.ToString ();
81                         State.Output = output;
82                         if (s.Length > 0) {
83                                 var name = target.Attribute ("name").Value;
84                                 Output.WriteLine ("<!-- start namespace {0} --> <div> ", name);
85                                 Output.WriteLine ("<h2>Namespace {0}</h2>", name);
86                                 Output.WriteLine (s);
87                                 Output.WriteLine ("</div> <!-- end namespace {0} -->", name);
88                         }
89                 }
90
91                 public override void Removed (XElement source)
92                 {
93                         var name = source.Attribute ("name").Value;
94                         Output.WriteLine ("<!-- start namespace {0} --> <div>", name);
95                         Output.WriteLine ("<h2>Removed Namespace {0}</h2>", name);
96                         Output.WriteLine ();
97                         // list all removed types
98                         foreach (var removedType in source.Element ("classes").Elements ("class"))
99                                 comparer.Removed (removedType);
100                         Output.WriteLine ("</div> <!-- end namespace {0} -->", name);
101                         Output.WriteLine ();
102                 }
103         }
104 }