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
|
//
// NRefactoryExpressionEvaluator.cs
//
// Authors: Lluis Sanchez Gual <lluis@novell.com>
// Jeffrey Stedfast <jeff@xamarin.com>
//
// Copyright (c) 2008 Novell, Inc (http://www.novell.com)
// Copyright (c) 2012 Xamarin Inc. (http://www.xamarin.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.Linq;
using System.Collections.Generic;
using Mono.Debugging.Client;
using ICSharpCode.NRefactory.CSharp;
namespace Mono.Debugging.Evaluation
{
public class NRefactoryExpressionEvaluator : ExpressionEvaluator
{
readonly Dictionary<string, ValueReference> userVariables = new Dictionary<string, ValueReference> ();
public override ValueReference Evaluate (EvaluationContext ctx, string expression, object expectedType)
{
expression = expression.TrimStart ();
if (expression.Length > 0 && expression[0] == '?')
expression = expression.Substring (1).Trim ();
if (expression.Length > 3 && expression.StartsWith ("var", StringComparison.Ordinal) && char.IsWhiteSpace (expression[3])) {
expression = expression.Substring (4).Trim (' ', '\t');
string variable = null;
for (int n = 0; n < expression.Length; n++) {
if (!char.IsLetterOrDigit (expression[n]) && expression[n] != '_') {
variable = expression.Substring (0, n);
if (!expression.Substring (n).Trim (' ', '\t').StartsWith ("=", StringComparison.Ordinal))
variable = null;
break;
}
if (n == expression.Length - 1) {
variable = expression;
expression = null;
break;
}
}
if (!string.IsNullOrEmpty (variable))
userVariables[variable] = new UserVariableReference (ctx, variable);
if (expression == null)
return null;
}
expression = ReplaceExceptionTag (expression, ctx.Options.CurrentExceptionTag);
var expr = new CSharpParser ().ParseExpression (expression);
if (expr == null)
throw new EvaluatorException ("Could not parse expression '{0}'", expression);
var evaluator = new NRefactoryExpressionEvaluatorVisitor (ctx, expression, expectedType, userVariables);
return expr.AcceptVisitor<ValueReference> (evaluator);
}
public override string Resolve (DebuggerSession session, SourceLocation location, string exp)
{
return Resolve (session, location, exp, false);
}
string Resolve (DebuggerSession session, SourceLocation location, string expression, bool tryTypeOf)
{
expression = expression.TrimStart ();
if (expression.Length > 0 && expression[0] == '?')
return "?" + Resolve (session, location, expression.Substring (1).Trim ());
if (expression.Length > 3 && expression.StartsWith ("var", StringComparison.Ordinal) && char.IsWhiteSpace (expression[3]))
return "var " + Resolve (session, location, expression.Substring (4).Trim (' ', '\t'));
expression = ReplaceExceptionTag (expression, session.Options.EvaluationOptions.CurrentExceptionTag);
Expression expr = new CSharpParser ().ParseExpression (expression);
if (expr == null)
return expression;
var resolver = new NRefactoryExpressionResolverVisitor (session, location, expression);
expr.AcceptVisitor (resolver);
string resolved = resolver.GetResolvedExpression ();
if (resolved == expression && !tryTypeOf && (expr is BinaryOperatorExpression) && IsTypeName (expression)) {
// This is a hack to be able to parse expressions such as "List<string>". The NRefactory parser
// can parse a single type name, so a solution is to wrap it around a typeof(). We do it if
// the evaluation fails.
string res = Resolve (session, location, "typeof(" + expression + ")", true);
return res.Substring (7, res.Length - 8);
}
return resolved;
}
public override ValidationResult ValidateExpression (EvaluationContext ctx, string expression)
{
expression = expression.TrimStart ();
if (expression.Length > 0 && expression[0] == '?')
expression = expression.Substring (1).Trim ();
if (expression.Length > 3 && expression.StartsWith ("var", StringComparison.Ordinal) && char.IsWhiteSpace (expression[3]))
expression = expression.Substring (4).Trim ();
expression = ReplaceExceptionTag (expression, ctx.Options.CurrentExceptionTag);
// Required as a workaround for a bug in the parser (it won't parse simple expressions like numbers)
if (!expression.EndsWith (";", StringComparison.Ordinal))
expression += ";";
var parser = new CSharpParser ();
parser.ParseExpression (expression);
if (parser.HasErrors)
return new ValidationResult (false, parser.Errors.First ().Message);
return new ValidationResult (true, null);
}
string ReplaceExceptionTag (string exp, string tag)
{
// FIXME: Don't replace inside string literals
return exp.Replace (tag, "__EXCEPTION_OBJECT__");
}
bool IsTypeName (string name)
{
int pos = 0;
bool res = ParseTypeName (name + "$", ref pos);
return res && pos >= name.Length;
}
bool ParseTypeName (string name, ref int pos)
{
EatSpaces (name, ref pos);
if (!ParseName (name, ref pos))
return false;
EatSpaces (name, ref pos);
if (!ParseGenericArgs (name, ref pos))
return false;
EatSpaces (name, ref pos);
if (!ParseIndexer (name, ref pos))
return false;
EatSpaces (name, ref pos);
return true;
}
void EatSpaces (string name, ref int pos)
{
while (char.IsWhiteSpace (name[pos]))
pos++;
}
bool ParseName (string name, ref int pos)
{
if (name[0] == 'g' && pos < name.Length - 8 && name.Substring (pos, 8) == "global::")
pos += 8;
do {
int oldp = pos;
while (char.IsLetterOrDigit (name[pos]))
pos++;
if (oldp == pos)
return false;
if (name[pos] != '.')
return true;
pos++;
}
while (true);
}
bool ParseGenericArgs (string name, ref int pos)
{
if (name [pos] != '<')
return true;
pos++;
EatSpaces (name, ref pos);
while (true) {
if (!ParseTypeName (name, ref pos))
return false;
EatSpaces (name, ref pos);
char c = name [pos++];
if (c == '>')
return true;
if (c == ',')
continue;
return false;
}
}
bool ParseIndexer (string name, ref int pos)
{
if (name [pos] != '[')
return true;
do {
pos++;
EatSpaces (name, ref pos);
} while (name [pos] == ',');
return name [pos++] == ']';
}
}
}
|