| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- //
- // ExpressionPrinter.cs
- //
- // Author:
- // Jb Evain ([email protected])
- //
- // (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.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Text;
- namespace System.Linq.Expressions {
- class ExpressionPrinter : ExpressionVisitor {
- StringBuilder builder;
- const string ListSeparator = ", ";
- ExpressionPrinter (StringBuilder builder)
- {
- this.builder = builder;
- }
- ExpressionPrinter () : this (new StringBuilder ())
- {
- }
- public static string ToString (Expression expression)
- {
- var printer = new ExpressionPrinter ();
- printer.Visit (expression);
- return printer.builder.ToString ();
- }
- public static string ToString (ElementInit init)
- {
- var printer = new ExpressionPrinter ();
- printer.VisitElementInitializer (init);
- return printer.builder.ToString ();
- }
- public static string ToString (MemberBinding binding)
- {
- var printer = new ExpressionPrinter ();
- printer.VisitBinding (binding);
- return printer.builder.ToString ();
- }
- void Print (string str)
- {
- builder.Append (str);
- }
- void Print (object obj)
- {
- builder.Append (obj);
- }
- void Print (string str, params object [] objs)
- {
- builder.AppendFormat (str, objs);
- }
- protected override void VisitElementInitializer (ElementInit initializer)
- {
- Print (initializer.AddMethod);
- Print ("(");
- VisitExpressionList (initializer.Arguments);
- Print (")");
- }
- protected override void VisitUnary (UnaryExpression unary)
- {
- switch (unary.NodeType) {
- case ExpressionType.ArrayLength:
- case ExpressionType.Convert:
- case ExpressionType.ConvertChecked:
- case ExpressionType.Not:
- Print ("{0}(", unary.NodeType);
- Visit (unary.Operand);
- Print (")");
- return;
- case ExpressionType.Negate:
- Print ("-");
- Visit (unary.Operand);
- return;
- case ExpressionType.Quote:
- Visit (unary.Operand);
- return;
- case ExpressionType.TypeAs:
- Print ("(");
- Visit (unary.Operand);
- Print (" As {0})", unary.Type.Name);
- return;
- case ExpressionType.UnaryPlus:
- Print ("+");
- Visit (unary.Operand);
- return;
- }
- throw new NotImplementedException ();
- }
- static string OperatorToString (BinaryExpression binary)
- {
- switch (binary.NodeType) {
- case ExpressionType.Add:
- case ExpressionType.AddChecked:
- return "+";
- case ExpressionType.AndAlso:
- return "&&";
- case ExpressionType.Coalesce:
- return "??";
- case ExpressionType.Divide:
- return "/";
- case ExpressionType.Equal:
- return "=";
- case ExpressionType.ExclusiveOr:
- return "^";
- case ExpressionType.GreaterThan:
- return ">";
- case ExpressionType.GreaterThanOrEqual:
- return ">=";
- case ExpressionType.LeftShift:
- return "<<";
- case ExpressionType.LessThan:
- return "<";
- case ExpressionType.LessThanOrEqual:
- return "<=";
- case ExpressionType.Modulo:
- return "%";
- case ExpressionType.Multiply:
- case ExpressionType.MultiplyChecked:
- return "*";
- case ExpressionType.NotEqual:
- return "!=";
- case ExpressionType.OrElse:
- return "||";
- case ExpressionType.Power:
- return "^";
- case ExpressionType.RightShift:
- return ">>";
- case ExpressionType.Subtract:
- case ExpressionType.SubtractChecked:
- return "-";
- case ExpressionType.And:
- return IsBoolean (binary) ? "And" : "&";
- case ExpressionType.Or:
- return IsBoolean (binary) ? "Or" : "|";
- default:
- return null;
- }
- }
- static bool IsBoolean (Expression expression)
- {
- return expression.Type == typeof (bool) || expression.Type == typeof (bool?);
- }
- void PrintArrayIndex (BinaryExpression index)
- {
- Visit (index.Left);
- Print ("[");
- Visit (index.Right);
- Print ("]");
- }
- protected override void VisitBinary (BinaryExpression binary)
- {
- switch (binary.NodeType) {
- case ExpressionType.ArrayIndex:
- PrintArrayIndex (binary);
- return;
- default:
- Print ("(");
- Visit (binary.Left);
- Print (" {0} ", OperatorToString (binary));
- Visit (binary.Right);
- Print (")");
- return;
- }
- }
- protected override void VisitTypeIs (TypeBinaryExpression type)
- {
- switch (type.NodeType) {
- case ExpressionType.TypeIs:
- Print ("(");
- Visit (type.Expression);
- Print (" Is {0})", type.TypeOperand.Name);
- return;
- }
- throw new NotImplementedException ();
- }
- protected override void VisitConstant (ConstantExpression constant)
- {
- var value = constant.Value;
- if (value == null) {
- Print ("null");
- } else if (value is string) {
- Print ("\"");
- Print (value);
- Print ("\"");
- } else if (!HasStringRepresentation (value)) {
- Print ("value(");
- Print (value);
- Print (")");
- } else
- Print (value);
- }
- static bool HasStringRepresentation (object obj)
- {
- return obj.ToString () != obj.GetType ().ToString ();
- }
- protected override void VisitConditional (ConditionalExpression conditional)
- {
- Print ("IIF(");
- Visit (conditional.Test);
- Print (", ");
- Visit (conditional.IfTrue);
- Print (", ");
- Visit (conditional.IfFalse);
- Print (")");
- }
- protected override void VisitParameter (ParameterExpression parameter)
- {
- Print (parameter.Name ?? "<param>");
- }
- protected override void VisitMemberAccess (MemberExpression access)
- {
- if (access.Expression == null)
- Print (access.Member.DeclaringType.Name);
- else
- Visit (access.Expression);
- Print (".{0}", access.Member.Name);
- }
- protected override void VisitMethodCall (MethodCallExpression call)
- {
- if (call.Object != null) {
- Visit (call.Object);
- Print (".");
- }
- Print (call.Method.Name);
- Print ("(");
- VisitExpressionList (call.Arguments);
- Print (")");
- }
- protected override void VisitMemberAssignment (MemberAssignment assignment)
- {
- Print ("{0} = ", assignment.Member.Name);
- Visit (assignment.Expression);
- }
- protected override void VisitMemberMemberBinding (MemberMemberBinding binding)
- {
- Print (binding.Member.Name);
- Print (" = {");
- // VisitBindingList (binding.Bindings);
- VisitList (binding.Bindings, VisitBinding);
- Print ("}");
- }
- protected override void VisitMemberListBinding (MemberListBinding binding)
- {
- Print (binding.Member.Name);
- Print (" = {");
- // replace when the patch to the visitor is in
- // VisitElementInitializerList (binding.Initializers);
- VisitList (binding.Initializers, VisitElementInitializer);
- Print ("}");
- }
- protected override void VisitList<T> (ReadOnlyCollection<T> list, Action<T> visitor)
- {
- for (int i = 0; i < list.Count; i++) {
- if (i > 0)
- Print (ListSeparator);
- visitor (list [i]);
- }
- }
- protected override void VisitLambda (LambdaExpression lambda)
- {
- if (lambda.Parameters.Count != 1) {
- Print ("(");
- // replace when the patch to the visitor is in
- // VisitExpressionList (lambda.Parameters);
- VisitList (lambda.Parameters, Visit);
- Print (")");
- } else
- Visit (lambda.Parameters [0]);
- Print (" => ");
- Visit (lambda.Body);
- }
- protected override void VisitNew (NewExpression nex)
- {
- Print ("new {0}(", nex.Type.Name);
- if (nex.Members != null && nex.Members.Count > 0) {
- for (int i = 0; i < nex.Members.Count; i++) {
- if (i > 0)
- Print (ListSeparator);
- Print ("{0} = ", nex.Members [i].Name);
- Visit (nex.Arguments [i]);
- }
- } else
- VisitExpressionList (nex.Arguments);
- Print (")");
- }
- protected override void VisitMemberInit (MemberInitExpression init)
- {
- Visit (init.NewExpression);
- Print (" {");
- // VisitBindingList (init.Bindings)
- VisitList (init.Bindings, VisitBinding);
- Print ("}");
- }
- protected override void VisitListInit (ListInitExpression init)
- {
- Visit (init.NewExpression);
- Print (" {");
- // VisitElementInitializerList
- VisitList (init.Initializers, VisitElementInitializer);
- Print ("}");
- }
- protected override void VisitNewArray (NewArrayExpression newArray)
- {
- Print ("new ");
- switch (newArray.NodeType) {
- case ExpressionType.NewArrayBounds:
- Print (newArray.Type);
- Print ("(");
- VisitExpressionList (newArray.Expressions);
- Print (")");
- return;
- case ExpressionType.NewArrayInit:
- Print ("[] {");
- VisitExpressionList (newArray.Expressions);
- Print ("}");
- return;
- }
- throw new NotSupportedException ();
- }
- protected override void VisitInvocation (InvocationExpression invocation)
- {
- Print ("Invoke(");
- Visit (invocation.Expression);
- if (invocation.Arguments.Count != 0) {
- Print (ListSeparator);
- VisitExpressionList (invocation.Arguments);
- }
- Print (")");
- }
- }
- }
|