Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2009-06-29 13:32:59 +0400
committerjfrijters <jfrijters>2009-06-29 13:32:59 +0400
commitcb4e9c37cac8ae9988ad8defaf6f14cc127f2b65 (patch)
tree1ad8b8039a84099036ab6c2e1e04981bf49b0de7 /tools
parentf6cbd1dd5012b60fb1822aed80a5b21b86d4bb0e (diff)
Added a mechanism to prevent accidentally introducing new dependencies in the OpenJDK assemblies.
Diffstat (limited to 'tools')
-rw-r--r--tools/depcheck.cs90
-rw-r--r--tools/tools.build6
2 files changed, 96 insertions, 0 deletions
diff --git a/tools/depcheck.cs b/tools/depcheck.cs
new file mode 100644
index 00000000..ee86e43a
--- /dev/null
+++ b/tools/depcheck.cs
@@ -0,0 +1,90 @@
+/*
+ Copyright (C) 2009 Jeroen Frijters
+
+ This software is provided 'as-is', without any express or implied
+ warranty. In no event will the authors be held liable for any damages
+ arising from the use of this software.
+
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+ 3. This notice may not be removed or altered from any source distribution.
+
+ Jeroen Frijters
+ jeroen@frijters.net
+
+*/
+
+using System;
+using System.IO;
+using System.Collections.Generic;
+using System.Reflection;
+
+class DependencyChecker
+{
+ static int Main(string[] args)
+ {
+ Dictionary<string, List<string>> deps = new Dictionary<string, List<string>>();
+ string dep = null;
+ foreach (string line in File.ReadAllLines(args[1]))
+ {
+ if (line.Trim().Length == 0 || line.StartsWith("#"))
+ {
+ // comment
+ }
+ else if (line.StartsWith("->"))
+ {
+ deps[dep].Add(line.Substring(2));
+ }
+ else
+ {
+ dep = line;
+ deps.Add(dep, new List<string>());
+ }
+ }
+ List<string> whitelist = new List<string>(new string[] { "mscorlib", "System", "IKVM.Runtime", "IKVM.OpenJDK.Core" });
+ bool fail = false;
+ foreach (string line in File.ReadAllLines(args[0]))
+ {
+ if (line.Contains("-out:"))
+ {
+ string file = line.Trim().Substring(5);
+ Assembly asm = Assembly.ReflectionOnlyLoadFrom(Path.Combine(Path.GetDirectoryName(args[0]), file));
+ if (!deps.ContainsKey(asm.GetName().Name))
+ {
+ fail = true;
+ Console.WriteLine(asm.GetName().Name);
+ foreach (AssemblyName asmdep in asm.GetReferencedAssemblies())
+ {
+ if (!whitelist.Contains(asmdep.Name))
+ {
+ Console.WriteLine("->{0}", asmdep.Name);
+ }
+ }
+ }
+ else
+ {
+ foreach (AssemblyName asmdep in asm.GetReferencedAssemblies())
+ {
+ if (!whitelist.Contains(asmdep.Name))
+ {
+ if (!deps[asm.GetName().Name].Contains(asmdep.Name))
+ {
+ fail = true;
+ Console.WriteLine("Error: Assembly {0} has an undeclared dependency on {1}", asm.GetName().Name, asmdep.Name);
+ }
+ }
+ }
+ }
+ }
+ }
+ return fail ? 1 : 0;
+ }
+}
diff --git a/tools/tools.build b/tools/tools.build
index df76059a..aa4d56ab 100644
--- a/tools/tools.build
+++ b/tools/tools.build
@@ -13,6 +13,12 @@
</sources>
</csc>
+ <csc target="exe" output="depcheck.exe" optimize="true">
+ <sources>
+ <include name="depcheck.cs" />
+ </sources>
+ </csc>
+
<if test="${property::exists('signed')}">
<property name="defs" value="${signed}" />
</if>