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
|
using System;
using System.IO;
using System.Text;
using System.Reflection;
using System.Collections;
using System.Configuration;
using System.Runtime.Serialization;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Schema;
using System.Xml.XPath;
namespace Mono.Debugger
{
public class DebuggerConfiguration : DebuggerMarshalByRefObject
{
internal readonly string ConfigDirectory;
const string ConfigFileName = "MonoDebugger.xml";
public DebuggerConfiguration ()
{
ConfigDirectory = Environment.GetEnvironmentVariable ("XDG_CONFIG_HOME");
if ((ConfigDirectory == null) || (ConfigDirectory == ""))
ConfigDirectory = Path.Combine (
Environment.GetEnvironmentVariable ("HOME"), ".config");
ConfigDirectory = Path.Combine (ConfigDirectory, "MonoDebugger");
ConfigDirectory += Path.DirectorySeparatorChar;
module_groups = Hashtable.Synchronized (new Hashtable ());
CreateDefaultModuleGroups ();
}
internal static XmlDocument CreateXmlDocument ()
{
XmlDocument doc = new XmlDocument ();
doc.LoadXml ("<?xml version=\"1.0\"?>\n" +
"<DebuggerConfiguration fileversion = \"1.0\" />");
return doc;
}
public bool LoadConfiguration()
{
try {
if (!Directory.Exists (ConfigDirectory))
Directory.CreateDirectory (ConfigDirectory);
LoadConfigurationFromStream (ConfigDirectory + ConfigFileName);
return true;
} catch {
return false;
}
}
public bool SaveConfiguration ()
{
try {
if (!Directory.Exists (ConfigDirectory))
Directory.CreateDirectory (ConfigDirectory);
SaveConfigurationToStream (ConfigDirectory + ConfigFileName);
return true;
} catch {
return false;
}
}
void LoadConfigurationFromStream (string filename)
{
using (FileStream stream = new FileStream (filename, FileMode.Open))
LoadConfigurationFromStream (stream);
}
void LoadConfigurationFromStream (Stream stream)
{
XmlValidatingReader reader = new XmlValidatingReader (new XmlTextReader (stream));
Assembly ass = Assembly.GetExecutingAssembly ();
using (Stream schema = ass.GetManifestResourceStream ("DebuggerConfiguration"))
reader.Schemas.Add (null, new XmlTextReader (schema));
XPathDocument doc = new XPathDocument (reader);
XPathNavigator nav = doc.CreateNavigator ();
XPathNodeIterator iter = nav.Select ("/DebuggerConfiguration/Configuration/*");
while (iter.MoveNext ()) {
if (iter.Current.Name == "LoadNativeSymtabs")
LoadNativeSymtabs = Boolean.Parse (iter.Current.Value);
else if (iter.Current.Name == "BrokenThreading")
BrokenThreading = Boolean.Parse (iter.Current.Value);
else if (iter.Current.Name == "StayInThread")
StayInThread = Boolean.Parse (iter.Current.Value);
else if (iter.Current.Name == "FollowFork")
FollowFork = Boolean.Parse (iter.Current.Value);
else
throw new InvalidOperationException ();
}
iter = nav.Select ("/DebuggerConfiguration/ModuleGroups/ModuleGroup");
while (iter.MoveNext ()) {
string name = iter.Current.GetAttribute ("name", "");
ModuleGroup group = CreateModuleGroup (name);
group.SetSessionData (iter);
}
}
void SaveConfigurationToStream (string filename)
{
using (FileStream stream = new FileStream (filename, FileMode.Create)) {
XmlDocument doc = CreateXmlDocument ();
XmlElement element = doc.CreateElement ("Configuration");
doc.DocumentElement.AppendChild (element);
XmlElement load_native_symtabs_e = doc.CreateElement ("LoadNativeSymtabs");
load_native_symtabs_e.InnerText = LoadNativeSymtabs ? "true" : "false";
element.AppendChild (load_native_symtabs_e);
XmlElement broken_threading_e = doc.CreateElement ("BrokenThreading");
broken_threading_e.InnerText = BrokenThreading ? "true" : "false";
element.AppendChild (broken_threading_e);
XmlElement stay_in_thread_e = doc.CreateElement ("StayInThread");
stay_in_thread_e.InnerText = StayInThread ? "true" : "false";
element.AppendChild (stay_in_thread_e);
XmlElement follow_fork_e = doc.CreateElement ("FollowFork");
follow_fork_e.InnerText = FollowFork ? "true" : "false";
element.AppendChild (follow_fork_e);
XmlElement module_groups = doc.CreateElement ("ModuleGroups");
doc.DocumentElement.AppendChild (module_groups);
foreach (ModuleGroup group in ModuleGroups)
group.GetSessionData (module_groups);
doc.Save (stream);
}
}
bool stay_in_thread = false;
bool broken_threading = true;
bool load_native_symtabs = false;
bool follow_fork = false;
Hashtable module_groups;
//
// Module groups
//
private void CreateDefaultModuleGroups ()
{
module_groups.Add ("native", new ModuleGroup ("native", true, false, false));
module_groups.Add ("dll", new ModuleGroup ("dll", false, true, false));
module_groups.Add ("runtime", new ModuleGroup ("runtime", false, true, false));
module_groups.Add ("managed", new ModuleGroup ("managed", false, true, true));
module_groups.Add ("corlib", new ModuleGroup ("corlib", false, true, true));
}
public ModuleGroup GetModuleGroup (string name)
{
return (ModuleGroup) module_groups [name];
}
internal ModuleGroup CreateModuleGroup (string name)
{
lock (module_groups.SyncRoot) {
ModuleGroup group = (ModuleGroup) module_groups [name];
if (group == null) {
group = new ModuleGroup (name);
module_groups.Add (name, group);
}
return group;
}
}
internal ModuleGroup[] ModuleGroups {
get {
lock (module_groups.SyncRoot) {
ModuleGroup[] groups = new ModuleGroup [module_groups.Count];
module_groups.Values.CopyTo (groups, 0);
return groups;
}
}
}
internal ModuleGroup GetModuleGroup (SymbolFile symfile)
{
foreach (ModuleGroup group in module_groups.Values) {
if (group.Regexp == null)
continue;
try {
if (Regex.IsMatch (symfile.FullName, group.Regexp))
return group;
} catch {
}
}
if (symfile.IsNative) {
if (symfile.FullName.EndsWith ("/mono"))
return GetModuleGroup ("runtime");
else if (symfile.HasDebuggingInfo)
return GetModuleGroup ("dll");
else
return GetModuleGroup ("native");
} else {
string assembly_name = symfile.FullName;
int pos = assembly_name.IndexOf (',');
if (pos > 0)
assembly_name = assembly_name.Substring (0, pos);
string[] corlib_assemblies = { "mscorlib", "System" };
foreach (string name in corlib_assemblies) {
if (assembly_name == name)
return GetModuleGroup ("corlib");
}
return GetModuleGroup ("managed");
}
}
//
// Debugger Configuration
//
public bool LoadNativeSymtabs {
get { return load_native_symtabs; }
set { load_native_symtabs = value; }
}
public bool StayInThread {
get { return stay_in_thread; }
set { stay_in_thread = value; }
}
public bool BrokenThreading {
get { return broken_threading; }
set { broken_threading = value; }
}
public bool FollowFork {
get { return follow_fork; }
set { follow_fork = value; }
}
public string PrintConfiguration (bool expert_mode)
{
StringBuilder sb = new StringBuilder ("Debugger Configuration:\n");
sb.Append (String.Format (" Load native symtabs (native-symtabs): {0}\n",
LoadNativeSymtabs ? "yes" : "no"));
sb.Append (String.Format (" Follow fork (follow-fork): {0}\n",
FollowFork ? "yes" : "no"));
if (expert_mode) {
sb.Append ("\nExpert Settings:\n");
sb.Append (String.Format (" Broken threading (broken-threading): {0}\n",
BrokenThreading ? "enabled" : "disabled"));
sb.Append (String.Format (" Stay in thread (stay-in-thread): {0}\n",
BrokenThreading ? "yes" : "no"));
}
return sb.ToString ();
}
}
}
|