de4dot-cex/de4dot.code/renamer/asmmodules/RefDict.cs

83 lines
2.2 KiB
C#
Raw Normal View History

2011-11-15 21:26:51 +08:00
/*
2012-01-10 06:02:47 +08:00
Copyright (C) 2011-2012 de4dot@gmail.com
2011-11-15 21:26:51 +08:00
This file is part of de4dot.
de4dot is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
de4dot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
using System.Collections.Generic;
using Mono.Cecil;
using de4dot.blocks;
namespace de4dot.code.renamer.asmmodules {
2012-01-01 20:02:16 +08:00
static class DictHelper {
public static IEnumerable<T> getSorted<T>(IEnumerable<T> values) where T : Ref {
var list = new List<T>(values);
2011-11-21 17:36:23 +08:00
list.Sort((a, b) => Utils.compareInt32(a.Index, b.Index));
2011-11-15 21:26:51 +08:00
return list;
}
2012-01-01 20:02:16 +08:00
}
2011-11-15 21:26:51 +08:00
2012-01-01 20:02:16 +08:00
class TypeDefDict : TypeDefinitionDict<TypeDef> {
public IEnumerable<TypeDef> getSorted() {
return DictHelper.getSorted(getValues());
2011-12-28 20:24:02 +08:00
}
2011-11-15 21:26:51 +08:00
public void add(TypeDef typeDef) {
2012-01-01 20:02:16 +08:00
add(typeDef.TypeDefinition, typeDef);
2011-11-15 21:26:51 +08:00
}
}
2012-01-01 20:02:16 +08:00
class FieldDefDict : FieldDefinitionDict<FieldDef> {
2011-11-15 21:26:51 +08:00
public IEnumerable<FieldDef> getSorted() {
2012-01-01 20:02:16 +08:00
return DictHelper.getSorted(getValues());
2011-12-28 20:24:02 +08:00
}
2011-11-15 21:26:51 +08:00
public void add(FieldDef fieldDef) {
2012-01-01 20:02:16 +08:00
add(fieldDef.FieldDefinition, fieldDef);
2011-11-15 21:26:51 +08:00
}
}
2012-01-01 20:02:16 +08:00
class MethodDefDict : MethodDefinitionDict<MethodDef> {
2011-11-15 21:26:51 +08:00
public IEnumerable<MethodDef> getSorted() {
2012-01-01 20:02:16 +08:00
return DictHelper.getSorted(getValues());
2011-12-28 20:24:02 +08:00
}
2011-11-15 21:26:51 +08:00
public void add(MethodDef methodDef) {
2012-01-01 20:02:16 +08:00
add(methodDef.MethodDefinition, methodDef);
2011-11-15 21:26:51 +08:00
}
}
2012-01-01 20:02:16 +08:00
class PropertyDefDict : PropertyDefinitionDict<PropertyDef> {
2011-11-15 21:26:51 +08:00
public IEnumerable<PropertyDef> getSorted() {
2012-01-01 20:02:16 +08:00
return DictHelper.getSorted(getValues());
2011-12-28 20:24:02 +08:00
}
2011-11-15 21:26:51 +08:00
public void add(PropertyDef propDef) {
2012-01-01 20:02:16 +08:00
add(propDef.PropertyDefinition, propDef);
2011-11-15 21:26:51 +08:00
}
}
2012-01-01 20:02:16 +08:00
class EventDefDict : EventDefinitionDict<EventDef> {
2011-11-15 21:26:51 +08:00
public IEnumerable<EventDef> getSorted() {
2012-01-01 20:02:16 +08:00
return DictHelper.getSorted(getValues());
2011-12-28 20:24:02 +08:00
}
2011-11-15 21:26:51 +08:00
public void add(EventDef eventDef) {
2012-01-01 20:02:16 +08:00
add(eventDef.EventDefinition, eventDef);
2011-11-15 21:26:51 +08:00
}
}
}