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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
#pragma warning disable 1634, 1691
using System;
using System.Text;
using System.CodeDom;
using System.Reflection;
using System.Globalization;
using System.Collections.Generic;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Serialization;
using System.Workflow.Activities.Common;
namespace System.Workflow.Activities.Rules
{
[Serializable]
public abstract class RuleAction
{
public abstract bool Validate(RuleValidation validator);
public abstract void Execute(RuleExecution context);
public abstract ICollection<string> GetSideEffects(RuleValidation validation);
public abstract RuleAction Clone();
}
[Serializable]
public class RuleHaltAction : RuleAction
{
public override bool Validate(RuleValidation validator)
{
// Trivial... nothing to validate.
return true;
}
public override void Execute(RuleExecution context)
{
if (context == null)
throw new ArgumentNullException("context");
context.Halted = true;
}
public override ICollection<string> GetSideEffects(RuleValidation validation)
{
return null;
}
public override RuleAction Clone()
{
return (RuleAction)this.MemberwiseClone();
}
public override string ToString()
{
return "Halt";
}
public override bool Equals(object obj)
{
return (obj is RuleHaltAction);
}
public override int GetHashCode()
{
return base.GetHashCode();
}
}
[Serializable]
public class RuleUpdateAction : RuleAction
{
private string path;
public RuleUpdateAction(string path)
{
this.path = path;
}
public RuleUpdateAction()
{
}
public string Path
{
get { return path; }
set { path = value; }
}
public override bool Validate(RuleValidation validator)
{
if (validator == null)
throw new ArgumentNullException("validator");
bool success = true;
if (path == null)
{
ValidationError error = new ValidationError(Messages.NullUpdate, ErrorNumbers.Error_ParameterNotSet);
error.UserData[RuleUserDataKeys.ErrorObject] = this;
validator.AddError(error);
success = false;
}
// now make sure that the path is valid
string[] parts = path.Split('/');
if (parts[0] == "this")
{
Type currentType = validator.ThisType;
for (int i = 1; i < parts.Length; ++i)
{
if (parts[i] == "*")
{
if (i < parts.Length - 1)
{
// The "*" occurred in the middle of the path, which is a no-no.
ValidationError error = new ValidationError(Messages.InvalidWildCardInPathQualifier, ErrorNumbers.Error_InvalidWildCardInPathQualifier);
error.UserData[RuleUserDataKeys.ErrorObject] = this;
validator.AddError(error);
success = false;
break;
}
else
{
// It occurred at the end, which is okay.
break;
}
}
else if (string.IsNullOrEmpty(parts[i]) && i == parts.Length - 1)
{
// It's okay to end with a "/".
break;
}
while (currentType.IsArray)
currentType = currentType.GetElementType();
BindingFlags bindingFlags = BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.FlattenHierarchy;
if (validator.AllowInternalMembers(currentType))
bindingFlags |= BindingFlags.NonPublic;
FieldInfo field = currentType.GetField(parts[i], bindingFlags);
if (field != null)
{
currentType = field.FieldType;
}
else
{
PropertyInfo property = currentType.GetProperty(parts[i], bindingFlags);
if (property != null)
{
currentType = property.PropertyType;
}
else
{
string message = string.Format(CultureInfo.CurrentCulture, Messages.UpdateUnknownFieldOrProperty, parts[i]);
ValidationError error = new ValidationError(message, ErrorNumbers.Error_InvalidUpdate);
error.UserData[RuleUserDataKeys.ErrorObject] = this;
validator.AddError(error);
success = false;
break;
}
}
}
}
else
{
ValidationError error = new ValidationError(Messages.UpdateNotThis, ErrorNumbers.Error_InvalidUpdate);
error.UserData[RuleUserDataKeys.ErrorObject] = this;
validator.AddError(error);
success = false;
}
return success;
}
public override void Execute(RuleExecution context)
{
// This action has no execution behaviour.
}
public override ICollection<string> GetSideEffects(RuleValidation validation)
{
return new string[] { this.path };
}
public override RuleAction Clone()
{
return (RuleAction)this.MemberwiseClone();
}
public override string ToString()
{
return "Update(\"" + this.path + "\")";
}
public override bool Equals(object obj)
{
#pragma warning disable 56506
RuleUpdateAction other = obj as RuleUpdateAction;
return ((other != null) && (string.Equals(this.Path, other.Path, StringComparison.Ordinal)));
#pragma warning restore 56506
}
public override int GetHashCode()
{
return base.GetHashCode();
}
}
[Serializable]
public class RuleStatementAction : RuleAction
{
private CodeStatement codeDomStatement;
public RuleStatementAction(CodeStatement codeDomStatement)
{
this.codeDomStatement = codeDomStatement;
}
public RuleStatementAction(CodeExpression codeDomExpression)
{
this.codeDomStatement = new CodeExpressionStatement(codeDomExpression);
}
public RuleStatementAction()
{
}
public CodeStatement CodeDomStatement
{
get { return codeDomStatement; }
set { codeDomStatement = value; }
}
public override bool Validate(RuleValidation validator)
{
if (validator == null)
throw new ArgumentNullException("validator");
if (codeDomStatement == null)
{
ValidationError error = new ValidationError(Messages.NullStatement, ErrorNumbers.Error_ParameterNotSet);
error.UserData[RuleUserDataKeys.ErrorObject] = this;
validator.AddError(error);
return false;
}
else
{
return CodeDomStatementWalker.Validate(validator, codeDomStatement);
}
}
public override void Execute(RuleExecution context)
{
if (codeDomStatement == null)
throw new InvalidOperationException(Messages.NullStatement);
CodeDomStatementWalker.Execute(context, codeDomStatement);
}
public override ICollection<string> GetSideEffects(RuleValidation validation)
{
RuleAnalysis analysis = new RuleAnalysis(validation, true);
if (codeDomStatement != null)
CodeDomStatementWalker.AnalyzeUsage(analysis, codeDomStatement);
return analysis.GetSymbols();
}
public override RuleAction Clone()
{
RuleStatementAction newAction = (RuleStatementAction)this.MemberwiseClone();
newAction.codeDomStatement = CodeDomStatementWalker.Clone(codeDomStatement);
return newAction;
}
public override string ToString()
{
if (codeDomStatement == null)
return "";
StringBuilder decompilation = new StringBuilder();
CodeDomStatementWalker.Decompile(decompilation, codeDomStatement);
return decompilation.ToString();
}
public override bool Equals(object obj)
{
#pragma warning disable 56506
RuleStatementAction other = obj as RuleStatementAction;
return ((other != null) && (CodeDomStatementWalker.Match(CodeDomStatement, other.CodeDomStatement)));
#pragma warning restore 56506
}
public override int GetHashCode()
{
return base.GetHashCode();
}
}
}
|