de4dot-cex/de4dot.code/deobfuscators/dotNET_Reactor/LocalTypes.cs

72 lines
1.9 KiB
C#
Raw Normal View History

/*
Copyright (C) 2011 de4dot@gmail.com
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;
using System.Collections.Generic;
2011-10-27 01:49:25 +08:00
using Mono.Cecil;
using Mono.Cecil.Cil;
namespace de4dot.deobfuscators.dotNET_Reactor {
class LocalTypes {
Dictionary<string, int> localTypes = new Dictionary<string, int>(StringComparer.Ordinal);
2011-10-30 02:26:59 +08:00
public IEnumerable<string> Types {
get { return localTypes.Keys; }
}
2011-10-27 08:07:06 +08:00
public LocalTypes(MethodDefinition method) {
2011-10-30 02:26:59 +08:00
if (method != null && method.Body != null)
2011-10-27 08:07:06 +08:00
init(method.Body.Variables);
2011-10-27 01:49:25 +08:00
}
2011-10-27 08:07:06 +08:00
public LocalTypes(IEnumerable<VariableDefinition> locals) {
init(locals);
}
void init(IEnumerable<VariableDefinition> locals) {
2011-10-30 02:26:59 +08:00
if (locals == null)
return;
foreach (var local in locals) {
var key = local.VariableType.FullName;
int count;
localTypes.TryGetValue(key, out count);
localTypes[key] = count + 1;
}
}
public bool exists(string typeFullName) {
return localTypes.ContainsKey(typeFullName);
}
2011-10-27 01:49:25 +08:00
public bool all(IList<string> types) {
foreach (var typeName in types) {
if (!exists(typeName))
return false;
}
return true;
}
public int count(string typeFullName) {
int count;
localTypes.TryGetValue(typeFullName, out count);
return count;
}
}
}