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
|
// IExpressionEvaluator.cs
//
// Author:
// Lluis Sanchez Gual <lluis@novell.com>
//
// Copyright (c) 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.Text;
using System.Globalization;
using System.Runtime.Serialization;
using Mono.Debugging.Backend;
using Mono.Debugging.Client;
namespace Mono.Debugging.Evaluation
{
public abstract class ExpressionEvaluator
{
public ValueReference Evaluate (EvaluationContext ctx, string exp)
{
return Evaluate (ctx, exp, null);
}
public virtual ValueReference Evaluate (EvaluationContext ctx, string exp, object expectedType)
{
foreach (ValueReference var in ctx.Adapter.GetLocalVariables (ctx))
if (var.Name == exp)
return var;
foreach (ValueReference var in ctx.Adapter.GetParameters (ctx))
if (var.Name == exp)
return var;
ValueReference thisVar = ctx.Adapter.GetThisReference (ctx);
if (thisVar != null) {
if (thisVar.Name == exp)
return thisVar;
foreach (ValueReference cv in thisVar.GetChildReferences (ctx.Options))
if (cv.Name == exp)
return cv;
}
throw new EvaluatorException ("Invalid Expression: '{0}'", exp);
}
public virtual ValidationResult ValidateExpression (EvaluationContext ctx, string expression)
{
return new ValidationResult (true, null);
}
public string TargetObjectToString (EvaluationContext ctx, object obj)
{
object res = ctx.Adapter.TargetObjectToObject (ctx, obj);
if (res == null)
return null;
if (res is EvaluationResult)
return ((EvaluationResult) res).DisplayValue;
else
return res.ToString ();
}
public EvaluationResult TargetObjectToExpression (EvaluationContext ctx, object obj)
{
return ToExpression (ctx, ctx.Adapter.TargetObjectToObject (ctx, obj));
}
public virtual EvaluationResult ToExpression (EvaluationContext ctx, object obj)
{
if (obj == null)
return new EvaluationResult ("null");
else if (obj is IntPtr) {
IntPtr p = (IntPtr) obj;
return new EvaluationResult ("0x" + p.ToInt64 ().ToString ("x"));
} else if (obj is char) {
char c = (char) obj;
string str;
if (c == '\'')
str = @"'\''";
else if (c == '"')
str = "'\"'";
else
str = EscapeString ("'" + c + "'");
return new EvaluationResult (str, ((int) c) + " " + str);
}
else if (obj is string)
return new EvaluationResult ("\"" + EscapeString ((string)obj) + "\"");
else if (obj is bool)
return new EvaluationResult (((bool)obj) ? "true" : "false");
else if (obj is decimal)
return new EvaluationResult (((decimal)obj).ToString (System.Globalization.CultureInfo.InvariantCulture));
else if (obj is EvaluationResult)
return (EvaluationResult) obj;
if (ctx.Options.IntegerDisplayFormat == IntegerDisplayFormat.Hexadecimal) {
string fval = null;
if (obj is sbyte)
fval = ((sbyte)obj).ToString ("x2");
else if (obj is int)
fval = ((int)obj).ToString ("x4");
else if (obj is short)
fval = ((short)obj).ToString ("x8");
else if (obj is long)
fval = ((long)obj).ToString ("x16");
else if (obj is byte)
fval = ((byte)obj).ToString ("x2");
else if (obj is uint)
fval = ((uint)obj).ToString ("x4");
else if (obj is ushort)
fval = ((ushort)obj).ToString ("x8");
else if (obj is ulong)
fval = ((ulong)obj).ToString ("x16");
if (fval != null)
return new EvaluationResult ("0x" + fval);
}
return new EvaluationResult (obj.ToString ());
}
public static string EscapeString (string text)
{
StringBuilder sb = new StringBuilder ();
for (int i = 0; i < text.Length; i++) {
char c = text[i];
string txt;
switch (c) {
case '"': txt = "\\\""; break;
case '\0': txt = @"\0"; break;
case '\\': txt = @"\\"; break;
case '\a': txt = @"\a"; break;
case '\b': txt = @"\b"; break;
case '\f': txt = @"\f"; break;
case '\v': txt = @"\v"; break;
case '\n': txt = @"\n"; break;
case '\r': txt = @"\r"; break;
case '\t': txt = @"\t"; break;
default:
if (char.GetUnicodeCategory (c) == UnicodeCategory.OtherNotAssigned) {
sb.AppendFormat ("\\u{0:x4}", (int) c);
} else {
sb.Append (c);
}
continue;
}
sb.Append (txt);
}
return sb.ToString ();
}
public virtual bool CaseSensitive {
get { return true; }
}
public abstract string Resolve (DebuggerSession session, SourceLocation location, string exp);
}
[Serializable]
public class EvaluatorException: Exception
{
protected EvaluatorException (SerializationInfo info, StreamingContext context)
: base (info, context)
{
}
public EvaluatorException (string msg, params object[] args): base (string.Format (msg, args))
{
}
}
[Serializable]
public class EvaluatorAbortedException: EvaluatorException
{
protected EvaluatorAbortedException (SerializationInfo info, StreamingContext context)
: base (info, context)
{
}
public EvaluatorAbortedException ()
: base ("Aborted.")
{
}
}
[Serializable]
public class NotSupportedExpressionException: EvaluatorException
{
protected NotSupportedExpressionException (SerializationInfo info, StreamingContext context)
: base (info, context)
{
}
public NotSupportedExpressionException ()
: base ("Expression not supported.")
{
}
}
[Serializable]
public class ImplicitEvaluationDisabledException: EvaluatorException
{
protected ImplicitEvaluationDisabledException (SerializationInfo info, StreamingContext context)
: base (info, context)
{
}
public ImplicitEvaluationDisabledException ( )
: base ("Implicit property and method evaluation is disabled.")
{
}
}
}
|