1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
//
// Metadata.cs
//
// (C) 2007 - 2008 Novell, Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections.Generic;
namespace GuiCompare {
public enum CompType {
Assembly,
Namespace,
Attribute,
Interface,
Class,
Struct,
Enum,
Method,
Property,
Field,
Delegate,
Event,
GenericParameter,
Parameter
}
public interface ICompAttributeContainer
{
List<CompNamed> GetAttributes ();
}
public interface ICompHasBaseType
{
string GetBaseType ();
bool IsSealed { get; }
bool IsAbstract { get; }
}
public interface ICompTypeContainer
{
List<CompNamed> GetNestedClasses();
List<CompNamed> GetNestedInterfaces ();
List<CompNamed> GetNestedStructs ();
List<CompNamed> GetNestedEnums ();
List<CompNamed> GetNestedDelegates ();
}
public interface ICompMemberContainer
{
bool IsSealed { get; }
List<CompNamed> GetInterfaces ();
List<CompNamed> GetConstructors();
List<CompNamed> GetMethods();
List<CompNamed> GetProperties();
List<CompNamed> GetFields();
List<CompNamed> GetEvents();
}
public interface ICompGenericParameter
{
List<CompGenericParameter> GetTypeParameters ();
}
public interface ICompParameters
{
List<CompParameter> GetParameters ();
}
public abstract class CompNamed {
public CompNamed (string name, CompType type)
{
this.DisplayName = null;
this.name = name;
this.type = type;
this.todos = new List<string>();
}
public string MemberName {
set { memberName = value; }
get { return memberName; }
}
public string Name {
set { name = value; }
get { return name; }
}
public string DisplayName {
set { displayName = value; }
get { return displayName == null ? name : displayName; }
}
public string ExtraInfo {
set { extraInfo = value; }
get { return extraInfo; }
}
public CompType Type {
set { type = value; }
get { return type; }
}
public ComparisonNode GetComparisonNode ()
{
ComparisonNode node = new ComparisonNode (type, DisplayName, MemberName, ExtraInfo);
node.Todos.AddRange (todos);
return node;
}
public static int Compare (CompNamed x, CompNamed y)
{
var x_g = x as CompMethod;
var y_g = y as CompMethod;
if (x_g == null || y_g == null)
return string.Compare (x.Name, y.Name);
var x_tp = x_g.GetTypeParameters ();
if (x_tp != null && x_tp.Count == 0)
x_tp = null;
var y_tp = y_g.GetTypeParameters ();
if (y_tp != null && y_tp.Count == 0)
y_tp = null;
if (x_tp == null && y_tp != null)
return -1;
if (x_tp != null && y_tp == null)
return 1;
if (x_tp != null && y_tp != null) {
var res = x_tp.Count.CompareTo (y_tp.Count);
if (res != 0)
return res;
}
return string.Compare (x.Name, y.Name);
}
string displayName;
string name;
string memberName;
string extraInfo;
CompType type;
public List<string> todos;
}
public abstract class CompAssembly : CompNamed, ICompAttributeContainer {
public CompAssembly (string name)
: base (name, CompType.Assembly)
{
}
public abstract List<CompNamed> GetNamespaces ();
public abstract List<CompNamed> GetAttributes ();
}
public abstract class CompNamespace : CompNamed, ICompTypeContainer {
public CompNamespace (string name)
: base (name, CompType.Namespace)
{
}
// ICompTypeContainer implementation
public abstract List<CompNamed> GetNestedClasses();
public abstract List<CompNamed> GetNestedInterfaces ();
public abstract List<CompNamed> GetNestedStructs ();
public abstract List<CompNamed> GetNestedEnums ();
public abstract List<CompNamed> GetNestedDelegates ();
}
public abstract class CompInterface : CompNamed, ICompAttributeContainer, ICompMemberContainer, ICompHasBaseType, ICompGenericParameter {
public CompInterface (string name)
: base (name, CompType.Interface)
{
}
public abstract List<CompNamed> GetAttributes ();
public abstract List<CompNamed> GetInterfaces ();
public abstract List<CompNamed> GetConstructors();
public abstract List<CompNamed> GetMethods();
public abstract List<CompNamed> GetProperties();
public abstract List<CompNamed> GetFields();
public abstract List<CompNamed> GetEvents();
public abstract string GetBaseType();
public bool IsSealed { get { return false; } }
public bool IsAbstract { get { return false; } }
public abstract List<CompGenericParameter> GetTypeParameters ();
}
public abstract class CompEnum : CompNamed, ICompAttributeContainer, ICompMemberContainer, ICompHasBaseType {
public CompEnum (string name)
: base (name, CompType.Enum)
{
}
public List<CompNamed> GetInterfaces () { return new List<CompNamed>(); }
public List<CompNamed> GetConstructors() { return new List<CompNamed>(); }
public List<CompNamed> GetMethods() { return new List<CompNamed>(); }
public List<CompNamed> GetProperties() { return new List<CompNamed>(); }
public List<CompNamed> GetEvents() { return new List<CompNamed>(); }
public abstract List<CompNamed> GetFields();
public abstract List<CompNamed> GetAttributes ();
public abstract string GetBaseType();
public bool IsSealed { get { return true; } }
public bool IsAbstract { get { return false; } }
}
public abstract class CompDelegate : CompNamed, ICompAttributeContainer, ICompHasBaseType, ICompGenericParameter, ICompMemberContainer
{
public CompDelegate (string name)
: base (name, CompType.Delegate)
{
}
public List<CompNamed> GetFields() { return new List<CompNamed>(); }
public List<CompNamed> GetInterfaces () { return new List<CompNamed>(); }
public List<CompNamed> GetProperties() { return new List<CompNamed>(); }
public List<CompNamed> GetEvents() { return new List<CompNamed>(); }
public abstract List<CompNamed> GetConstructors();
public abstract List<CompNamed> GetMethods();
public abstract List<CompNamed> GetAttributes ();
public abstract string GetBaseType();
public bool IsSealed { get { return true; } }
public bool IsAbstract { get { return false; } }
public abstract List<CompGenericParameter> GetTypeParameters ();
}
public abstract class CompClass : CompNamed, ICompAttributeContainer, ICompTypeContainer, ICompMemberContainer, ICompHasBaseType, ICompGenericParameter {
public CompClass (string name, CompType type)
: base (name, type)
{
}
public abstract List<CompNamed> GetInterfaces();
public abstract List<CompNamed> GetConstructors();
public abstract List<CompNamed> GetMethods();
public abstract List<CompNamed> GetProperties();
public abstract List<CompNamed> GetFields();
public abstract List<CompNamed> GetEvents();
public abstract List<CompNamed> GetAttributes ();
public abstract List<CompNamed> GetNestedClasses();
public abstract List<CompNamed> GetNestedInterfaces ();
public abstract List<CompNamed> GetNestedStructs ();
public abstract List<CompNamed> GetNestedEnums ();
public abstract List<CompNamed> GetNestedDelegates ();
public abstract string GetBaseType();
public abstract bool IsSealed { get; }
public abstract bool IsAbstract { get; }
public abstract List<CompGenericParameter> GetTypeParameters ();
}
public abstract class CompMember : CompNamed, ICompAttributeContainer {
public CompMember (string name, CompType type)
: base (name, type)
{
}
public abstract string GetMemberAccess();
public abstract string GetMemberType();
public abstract List<CompNamed> GetAttributes ();
}
public abstract class CompMethod : CompMember, ICompGenericParameter, ICompParameters
{
public CompMethod (string name)
: base (name, CompType.Method)
{
}
public abstract bool ThrowsNotImplementedException ();
public abstract List<CompParameter> GetParameters ();
public abstract List<CompGenericParameter> GetTypeParameters ();
}
public abstract class CompProperty : CompMember
{
public CompProperty (string name)
: base (name, CompType.Property)
{
}
public abstract List<CompNamed> GetMethods();
}
public abstract class CompField : CompMember {
public CompField (string name)
: base (name, CompType.Field)
{
}
public abstract string GetLiteralValue ();
}
public abstract class CompEvent : CompMember {
public CompEvent (string name)
: base (name, CompType.Event)
{
}
}
public abstract class CompAttribute : CompNamed {
public CompAttribute (string typename)
: base (typename, CompType.Attribute)
{
Properties = new SortedDictionary<string, string> ();
}
public IDictionary<string, string> Properties { get; private set; }
}
public abstract class CompGenericParameter : CompNamed, ICompAttributeContainer {
public readonly Mono.Cecil.GenericParameterAttributes GenericAttributes;
public CompGenericParameter (string name, Mono.Cecil.GenericParameterAttributes attr)
: base (name, CompType.GenericParameter)
{
GenericAttributes = attr;
}
public abstract bool HasConstraints { get; }
public abstract List<CompNamed> GetAttributes ();
public static string GetGenericAttributeDesc (Mono.Cecil.GenericParameterAttributes ga)
{
return ga.ToString ();
}
}
public abstract class CompParameter : CompNamed, ICompAttributeContainer
{
bool optional;
string type;
public CompParameter (string name, string type, bool optional)
: base (name, CompType.Parameter)
{
this.type = type;
this.optional = optional;
}
public bool IsOptional {
get {
return optional;
}
}
public string TypeReference {
get {
return type;
}
}
public abstract List<CompNamed> GetAttributes ();
}
}
|