Merge pull request #463 from strawd/concurrent-requests
[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.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)
59                 {
60                         string name = target.Attribute ("name").Value;
61                         if (State.IgnoreNew.Any (re => re.IsMatch (name)))
62                                 return;
63
64                         Output.WriteLine ("<h2>New Namespace {0}</h2>", name);
65                         Output.WriteLine ();
66                         // list all new types
67                         foreach (var addedType in target.Element ("classes").Elements ("class"))
68                                 comparer.Added (addedType);
69                         Output.WriteLine ();
70                 }
71
72                 public override void Modified (XElement source, XElement target, ApiChanges differences)
73                 {
74                         var output = Output;
75                         State.Output = new StringWriter ();
76                         comparer.Compare (source, target);
77
78                         var s = Output.ToString ();
79                         State.Output = output;
80                         if (s.Length > 0) {
81                                 Output.WriteLine ("<h2>Namespace {0}</h2>", target.Attribute ("name").Value);
82                                 Output.WriteLine (s);
83                         }
84                 }
85
86                 public override void Removed (XElement source)
87                 {
88                         Output.WriteLine ("<h2>Removed Namespace {0}</h2>", source.Attribute ("name").Value);
89                         Output.WriteLine ();
90                         // list all removed types
91                         foreach (var removedType in source.Element ("classes").Elements ("class"))
92                                 comparer.Removed (removedType);
93                         Output.WriteLine ();
94                 }
95         }
96 }