summaryrefslogtreecommitdiffstats
path: root/java/src/main/java/com/redhat/IdPMapping/RuleProcessor.java
blob: ebf4e0a0922824c41a3c643c00d6afd8f7f45772 (plain)
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
/*
 * Copyright (C) 2014 Red Hat
 * All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.aaa.idpmapping;


import java.io.IOException;
import java.io.StringWriter;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.EnumSet;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.opendaylight.aaa.idpmapping.IdpJson;
import org.opendaylight.aaa.idpmapping.Token;



enum ProcessResult {
  RULE_FAIL, RULE_SUCCESS, BLOCK_CONTINUE, STATEMENT_CONTINUE
}


/**
 * Evaluate a set of rules against an assertion from an external
 * Identity Provider (IdP) mapping those assertion values to local
 * values.
 *
 * @author John Dennis <jdennis@redhat.com>
 */

public class RuleProcessor {
  private static final Logger logger = LoggerFactory
      .getLogger(RuleProcessor.class);

  public String ruleIdFormat = "<rule [${rule_number}:\"${rule_name}\"]>";
  public String statementIdFormat =
      "<rule [${rule_number}:\"${rule_name}\"] block [${block_number}:\"${block_name}\"] statement ${statement_number}>";

  /*
   * Reserved variables
   */
  public static final String ASSERTION = "assertion";
  public static final String RULE_NUMBER = "rule_number";
  public static final String RULE_NAME = "rule_name";
  public static final String BLOCK_NUMBER = "block_number";
  public static final String BLOCK_NAME = "block_name";
  public static final String STATEMENT_NUMBER = "statement_number";
  public static final String REGEXP_ARRAY_VARIABLE = "regexp_array";
  public static final String REGEXP_MAP_VARIABLE = "regexp_map";

  private static final String REGEXP_NAMED_GROUP_PAT = "\\(\\?<([a-zA-Z][a-zA-Z0-9]*)>";
  private static final Pattern REGEXP_NAMED_GROUP_RE = Pattern.compile(REGEXP_NAMED_GROUP_PAT);


  List<Map<String, Object>> rules = null;
  boolean success = true;
  Map<String, Map<String, Object>> mappings = null;

  public RuleProcessor(java.io.Reader rulesIn, Map<String, Map<String, Object>> mappings) {
    this.mappings = mappings;
    IdpJson json = new IdpJson();
    @SuppressWarnings("unchecked")
    List<Map<String, Object>> loadJson = (List<Map<String, Object>>) json.loadJson(rulesIn);
    rules = loadJson;
  }

  public RuleProcessor(Path rulesIn, Map<String, Map<String, Object>> mappings) throws IOException {
    this.mappings = mappings;
    IdpJson json = new IdpJson();
    @SuppressWarnings("unchecked")
    List<Map<String, Object>> loadJson = (List<Map<String, Object>>) json.loadJson(rulesIn);
    rules = loadJson;
  }

  public RuleProcessor(String rulesIn, Map<String, Map<String, Object>> mappings) {
    this.mappings = mappings;
    IdpJson json = new IdpJson();
    @SuppressWarnings("unchecked")
    List<Map<String, Object>> loadJson = (List<Map<String, Object>>) json.loadJson(rulesIn);
    rules = loadJson;
  }

  /*
   * For some odd reason the Java Regular Expression API does not include a way to retrieve a map of
   * the named groups and their values. The API only permits us to retrieve a named group if we
   * already know the group names. So instead we parse the pattern string looking for named groups,
   * extract the name, look up the value of the named group and build a map from that.
   */

  private Map<String, String> regexpGroupMap(String pattern, Matcher matcher) {
    Map<String, String> groupMap = new HashMap<String, String>();
    Matcher groupMatcher = REGEXP_NAMED_GROUP_RE.matcher(pattern);

    while (groupMatcher.find()) {
      String groupName = groupMatcher.group(1);

      groupMap.put(groupName, matcher.group(groupName));
    }
    return groupMap;
  }

  static public String join(List<Object> list, String conjunction) {
    StringBuilder sb = new StringBuilder();
    boolean first = true;
    for (Object item : list) {
      if (first) {
        first = false;
      } else {
        sb.append(conjunction);
      }
      sb.append(item.toString());
    }
    return sb.toString();
  }

  private List<String> regexpGroupList(Matcher matcher) {
    List<String> groupList = new ArrayList<String>(matcher.groupCount() + 1);
    groupList.add(0, matcher.group(0));
    for (int i = 1; i < matcher.groupCount() + 1; i++) {
      groupList.add(i, matcher.group(i));
    }
    return groupList;
  }

  private String objToString(Object obj) {
    StringWriter sw = new StringWriter();
    objToStringItem(sw, obj);
    return sw.toString();
  }

  private void objToStringItem(StringWriter sw, Object obj) {
    // ordered by expected occurrence
    if (obj instanceof String) {
      sw.write('"');
      sw.write(((String) obj).replaceAll("\"", "\\\""));
      sw.write('"');
    } else if (obj instanceof List) {
      @SuppressWarnings("unchecked")
      List<Object> list = (List<Object>) obj;
      boolean first = true;

      sw.write('[');
      for (Object item : list) {
        if (first) {
          first = false;
        } else {
          sw.write(", ");
        }
        objToStringItem(sw, item);
      }
      sw.write(']');
    } else if (obj instanceof Map) {
      @SuppressWarnings("unchecked")
      Map<String, Object> map = (Map<String, Object>) obj;
      boolean first = true;

      sw.write('{');
      for (Map.Entry<String, Object> entry : map.entrySet()) {
        String key = entry.getKey();
        Object value = entry.getValue();

        if (first) {
          first = false;
        } else {
          sw.write(", ");
        }

        objToStringItem(sw, key);
        sw.write(": ");
        objToStringItem(sw, value);

      }
      sw.write('}');
    } else if (obj instanceof Long) {
      sw.write(((Long) obj).toString());
    } else if (obj instanceof Boolean) {
      sw.write(((Boolean) obj).toString());
    } else if (obj == null) {
      sw.write("null");
    } else if (obj instanceof Double) {
      sw.write(((Double) obj).toString());
    } else {
      throw new IllegalStateException(
          String
              .format(
                  "unsupported data type, must be String, Long, Double, Boolean, List, Map, or null, not %s",
                  obj.getClass().getSimpleName()));
    }
  }

  private Object deepCopy(Object obj) {
    // ordered by expected occurrence
    if (obj instanceof String) {
      return obj; // immutable
    } else if (obj instanceof List) {
      List<Object> new_list = new ArrayList<Object>();
      @SuppressWarnings("unchecked")
      List<Object> list = (List<Object>) obj;
      for (Object item : list) {
        new_list.add(deepCopy(item));
      }
      return new_list;
    } else if (obj instanceof Map) {
      Map<String, Object> new_map = new LinkedHashMap<String, Object>();
      @SuppressWarnings("unchecked")
      Map<String, Object> map = (Map<String, Object>) obj;
      for (Map.Entry<String, Object> entry : map.entrySet()) {
        String key = entry.getKey(); // immutable
        Object value = entry.getValue();
        new_map.put(key, deepCopy(value));
      }
      return new_map;
    } else if (obj instanceof Long) {
      return obj; // immutable
    } else if (obj instanceof Boolean) {
      return obj; // immutable
    } else if (obj == null) {
      return null;
    } else if (obj instanceof Double) {
      return obj; // immutable
    } else {
      throw new IllegalStateException(
          String
              .format(
                  "unsupported data type, must be String, Long, Double, Boolean, List, Map, or null, not %s",
                  obj.getClass().getSimpleName()));
    }
  }

  public String ruleId(Map<String, Object> namespace) {
    return substituteVariables(ruleIdFormat, namespace);
  }

  public String statementId(Map<String, Object> namespace) {
    return substituteVariables(statementIdFormat, namespace);
  }

  public String substituteVariables(String string, Map<String, Object> namespace)
  {
    StringBuffer sb = new StringBuffer();
    Matcher matcher = Token.VARIABLE_RE.matcher(string);

    while (matcher.find()) {
      Token token = new Token(matcher.group(0), namespace);
      token.load();
      String replacement;
      if (token.type == TokenType.STRING) {
        replacement = token.getStringValue();
      } else {
        replacement = objToString(token.getObjectValue());
      }

      matcher.appendReplacement(sb, replacement);
    }
    matcher.appendTail(sb);
    return sb.toString();
  }

  Map<String, Object> getMapping(Map<String, Object> namespace, Map<String, Object> rule)
      {
    Map<String, Object> mapping = null;
    String mappingName = null;

    try {
      @SuppressWarnings("unchecked")
      Map<String, Object> map = (Map<String, Object>) rule.get("mapping");
      mapping = map;
    } catch (java.lang.ClassCastException e) {
      throw new InvalidRuleException(String.format("%s rule defines 'mapping' but it is not a Map",
          this.ruleId(namespace)));
    }
    if (mapping != null) {
      return mapping;
    }
    try {
      mappingName = (String) rule.get("mapping_name");
    } catch (java.lang.ClassCastException e) {
      throw new InvalidRuleException(String.format(
          "%s rule defines 'mapping_name' but it is not a string", this.ruleId(namespace)));
    }
    if (mappingName == null) {
      throw new InvalidRuleException(String.format(
          "%s rule does not define mapping nor mapping_name unable to load mapping",
          this.ruleId(namespace)));
    }
    mapping = this.mappings.get(mappingName);
    if (mapping == null) {
      throw new InvalidRuleException(
          String
              .format(
                  "%s rule specifies mapping_name '%s' but a mapping by that name does not exist, unable to load mapping",
                  this.ruleId(namespace)));
    }
    logger.debug(String.format("using named mapping '%s' from rule %s mapping=%s", mappingName,
        this.ruleId(namespace), mapping));
    return mapping;
  }

  private String getVerb(List<Object> statement) {
    Token verb;

    if (statement.size() < 1) {
      throw new InvalidRuleException("statement has no verb");
    }

    try {
      verb = new Token(statement.get(0), null);
    } catch (Exception e) {
      throw new InvalidRuleException(
          String.format("statement first member (i.e. verb) error %s", e));
    }

    if (verb.type != TokenType.STRING) {
      throw new InvalidRuleException(String.format(
          "statement first member (i.e. verb) must be a string, not %s", verb.type));
    }

    return (verb.getStringValue()).toLowerCase();
  }

  private Token getToken(String verb, List<Object> statement, int index,
      Map<String, Object> namespace, Set<TokenStorageType> storageTypes, Set<TokenType> tokenTypes) {
    Object item;
    Token token;

    try {
      item = statement.get(index);
    } catch (IndexOutOfBoundsException e) {
      throw new InvalidRuleException(String.format(
          "verb '%s' requires at least %d items but only %d are available.", verb, index + 1,
          statement.size()));
    }

    try {
      token = new Token(item, namespace);
    } catch (Exception e) {
      throw new StatementErrorException(String.format("parameter %d, %s", index, e));
    }

    if (storageTypes != null) {
      if (!storageTypes.contains(token.storageType)) {
        throw new InvalidTypeException(String.format(
            "verb '%s' requires parameter #%d to have storage types %s not %s. statement=%s", verb,
            index, storageTypes, statement));
      }
    }

    if (tokenTypes != null) {
      token.load(); // Note, Token.load() sets the Token.type

      if (!tokenTypes.contains(token.type)) {
        throw new InvalidTypeException(String.format(
            "verb '%s' requires parameter #%d to have types %s, not %s. statement=%s", verb, index,
            tokenTypes, statement));
      }
    }

    return token;
  }

  private Token getParameter(String verb, List<Object> statement, int index,
      Map<String, Object> namespace, Set<TokenType> tokenTypes) {
    Object item;
    Token token;

    try {
      item = statement.get(index);
    } catch (IndexOutOfBoundsException e) {
      throw new InvalidRuleException(String.format(
          "verb '%s' requires at least %d items but only %d are available.", verb, index + 1,
          statement.size()));
    }

    try {
      token = new Token(item, namespace);
    } catch (Exception e) {
      throw new StatementErrorException(String.format("parameter %d, %s", index, e));
    }

    token.load();

    if (tokenTypes != null) {
      try {
        token.get(); // Note, Token.get() sets the Token.type
      } catch (UndefinedValueException e) {
        // OK if not yet defined
      }
      if (!tokenTypes.contains(token.type)) {
        throw new InvalidTypeException(String.format(
            "verb '%s' requires parameter #%d to have types %s, not %s. statement=%s", verb, index,
            tokenTypes, item.getClass().getSimpleName(), statement));
      }
    }

    return token;
  }

  private Object getRawParameter(String verb, List<Object> statement, int index,
      Set<TokenType> tokenTypes)  {
    Object item;

    try {
      item = statement.get(index);
    } catch (IndexOutOfBoundsException e) {
      throw new InvalidRuleException(String.format(
          "verb '%s' requires at least %d items but only %d are available.", verb, index + 1,
          statement.size()));
    }

    if (tokenTypes != null) {
      TokenType itemType = Token.classify(item);

      if (!tokenTypes.contains(itemType)) {
        throw new InvalidTypeException(String.format(
            "verb '%s' requires parameter #%d to have types %s, not %s. statement=%s", verb, index,
            tokenTypes, statement));
      }
    }

    return item;
  }

  private Token getVariable(String verb, List<Object> statement, int index,
      Map<String, Object> namespace) {
    Object item;
    Token token;

    try {
      item = statement.get(index);
    } catch (IndexOutOfBoundsException e) {
      throw new InvalidRuleException(String.format(
          "verb '%s' requires at least %d items but only %d are available.", verb, index + 1,
          statement.size()));
    }

    try {
      token = new Token(item, namespace);
    } catch (Exception e) {
      throw new StatementErrorException(String.format("parameter %d, %s", index, e));
    }

    if (token.storageType != TokenStorageType.VARIABLE) {
      throw new InvalidTypeException(String.format(
          "verb '%s' requires parameter #%d to be a variable not %s. statement=%s", verb, index,
          token.storageType, statement));
    }

    return token;
  }

  public Map<String, Object> process(String assertionJson) {
    ProcessResult result;
    IdpJson json = new IdpJson();
    @SuppressWarnings("unchecked")
    Map<String, Object> assertion = (Map<String, Object>) json.loadJson(assertionJson);
    System.out.println(assertionJson);
    System.out.println(json.dumpJson(assertion));
    this.success = true;

    for (int ruleNumber = 0; ruleNumber < this.rules.size(); ruleNumber++) {
      Map<String, Object> namespace = new HashMap<String, Object>();
      Map<String, Object> rule = (Map<String, Object>) this.rules.get(ruleNumber);
      namespace.put(RULE_NUMBER, new Long(ruleNumber));
      namespace.put(RULE_NAME, new String(""));
      namespace.put(ASSERTION, deepCopy(assertion));

      result = processRule(namespace, rule);

      if (result == ProcessResult.RULE_SUCCESS) {
        Map<String, Object> mapped = new LinkedHashMap<String, Object>();
        Map<String, Object> mapping = getMapping(namespace, rule);
        for (Map.Entry<String, Object> entry : ((Map<String, Object>) mapping).entrySet()) {
          String key = entry.getKey();
          Object value = entry.getValue();
          Object newValue = null;
          try {
            Token token = new Token(value, namespace);
            newValue = token.get();
          } catch (Exception e) {
            throw new InvalidRuleException(String.format(
                "%s unable to get value for mapping %s=%s, %s", ruleId(namespace), key, value, e),
                e);
          }
          mapped.put(key, newValue);
        }
        return mapped;
      }
    }
    return null;
  }

  private ProcessResult processRule(Map<String, Object> namespace, Map<String, Object> rule)
  {
    ProcessResult result = ProcessResult.BLOCK_CONTINUE;
    @SuppressWarnings("unchecked")
    List<List<List<Object>>> statementBlocks =
        (List<List<List<Object>>>) rule.get("statement_blocks");
    if (statementBlocks == null) {
      throw new InvalidRuleException("rule missing 'statement_blocks'");

    }
    for (int blockNumber = 0; blockNumber < statementBlocks.size(); blockNumber++) {
      List<List<Object>> block = (List<List<Object>>) statementBlocks.get(blockNumber);
      namespace.put(BLOCK_NUMBER, new Long(blockNumber));
      namespace.put(BLOCK_NAME, "");

      result = processBlock(namespace, block);
      System.out.println();
      if (EnumSet.of(ProcessResult.RULE_SUCCESS, ProcessResult.RULE_FAIL).contains(result)) {
        break;
      } else if (result == ProcessResult.BLOCK_CONTINUE) {
        continue;
      } else {
        throw new IllegalStateException(String.format("%s unexpected statement result: %s", result));
      }
    }
    if (EnumSet.of(ProcessResult.RULE_SUCCESS, ProcessResult.BLOCK_CONTINUE).contains(result)) {
      return ProcessResult.RULE_SUCCESS;
    } else {
      return ProcessResult.RULE_FAIL;
    }
  }

  private ProcessResult processBlock(Map<String, Object> namespace, List<List<Object>> block)
      {
    ProcessResult result = ProcessResult.STATEMENT_CONTINUE;

    for (int statementNumber = 0; statementNumber < block.size(); statementNumber++) {
      List<Object> statement = (List<Object>) block.get(statementNumber);
      namespace.put(STATEMENT_NUMBER, new Long(statementNumber));

      try {
        result = processStatement(namespace, statement);
      } catch (Exception e) {
        throw new IllegalStateException(String.format("%s statement=%s %s", statementId(namespace),
            statement, e), e);
      }
      if (EnumSet.of(ProcessResult.BLOCK_CONTINUE, ProcessResult.RULE_SUCCESS,
          ProcessResult.RULE_FAIL).contains(result)) {
        break;
      } else if (result == ProcessResult.STATEMENT_CONTINUE) {
        continue;
      } else {
        throw new IllegalStateException(String.format("%s unexpected statement result: %s", result));
      }
    }
    if (result == ProcessResult.STATEMENT_CONTINUE) {
      result = ProcessResult.BLOCK_CONTINUE;
    }
    return result;
  }

  private ProcessResult processStatement(Map<String, Object> namespace, List<Object> statement)
      {
    ProcessResult result = ProcessResult.STATEMENT_CONTINUE;
    String verb = getVerb(statement);

    switch (verb) {
      case "set":
        result = verbSet(verb, namespace, statement);
        break;
      case "length":
        result = verbLength(verb, namespace, statement);
        break;
      case "interpolate":
        result = verbInterpolate(verb, namespace, statement);
        break;
      case "append":
        result = verbAppend(verb, namespace, statement);
        break;
      case "unique":
        result = verbUnique(verb, namespace, statement);
        break;
      case "split":
        result = verbSplit(verb, namespace, statement);
        break;
      case "join":
        result = verbJoin(verb, namespace, statement);
        break;
      case "lower":
        result = verbLower(verb, namespace, statement);
        break;
      case "upper":
        result = verbUpper(verb, namespace, statement);
        break;
      case "in":
        result = verbIn(verb, namespace, statement);
        break;
      case "not_in":
        result = verbNotIn(verb, namespace, statement);
        break;
      case "compare":
        result = verbCompare(verb, namespace, statement);
        break;
      case "regexp":
        result = verbRegexp(verb, namespace, statement);
        break;
      case "regexp_replace":
        result = verbRegexpReplace(verb, namespace, statement);
        break;
      case "exit":
        result = verbExit(verb, namespace, statement);
        break;
      case "continue":
        result = verbContinue(verb, namespace, statement);
        break;
      default:
        throw new InvalidRuleException(String.format("unknown verb '%s'", verb));
    }

    return result;
  }

  private ProcessResult verbSet(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token parameter = getParameter(verb, statement, 2, namespace, null);

    variable.set(parameter.getObjectValue());
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s", statementId(namespace),
          verb, this.success, variable, variable.get()));
    }
    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbLength(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token parameter =
        getParameter(verb, statement, 2, namespace,
            EnumSet.of(TokenType.ARRAY, TokenType.MAP, TokenType.STRING));
    long length;


    switch (parameter.type) {
      case ARRAY: {
        length = parameter.getListValue().size();
      }
        break;
      case MAP: {
        length = parameter.getMapValue().size();
      }
        break;
      case STRING: {
        length = parameter.getStringValue().length();
      }
        break;
      default:
        throw new IllegalStateException(String.format("unexpected token type: %s", parameter.type));
    }

    variable.set(new Long(length));
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s parameter=%s",
          statementId(namespace), verb, this.success, variable, variable.get(),
          parameter.getObjectValue()));
    }
    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbInterpolate(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token variable = getVariable(verb, statement, 1, namespace);
    String string = (String) getRawParameter(verb, statement, 2, EnumSet.of(TokenType.STRING));
    String newValue = null;

    try {
      newValue = substituteVariables(string, namespace);
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, variable='%s' string='%s': %s", verb, variable, string, e));
    }
    variable.set(newValue);
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s string='%s'",
          statementId(namespace), verb, this.success, variable, variable.get(), string));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbAppend(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token variable =
        getToken(verb, statement, 1, namespace, EnumSet.of(TokenStorageType.VARIABLE),
            EnumSet.of(TokenType.ARRAY));
    Token item = getParameter(verb, statement, 2, namespace, null);

    try {
      List<Object> list = variable.getListValue();
      list.add(item.getObjectValue());
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, variable='%s' item='%s': %s", verb, variable.getObjectValue(),
          item.getObjectValue(), e));
    }
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s item=%s",
          statementId(namespace), verb, this.success, variable, variable.get(),
          item.getObjectValue()));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbUnique(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token array = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.ARRAY));

    List<Object> newValue = new ArrayList<Object>();
    Set<Object> seen = new HashSet<Object>();

    for (Object member : array.getListValue()) {
      if (seen.contains(member)) {
        continue;
      } else {
        newValue.add(member);
        seen.add(member);
      }
    }

    variable.set(newValue);
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s array=%s",
          statementId(namespace), verb, this.success, variable, variable.get(),
          array.getObjectValue()));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbSplit(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token string = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.STRING));
    Token pattern = getParameter(verb, statement, 3, namespace, EnumSet.of(TokenType.STRING));

    Pattern regexp;
    List<String> newValue;

    try {
      regexp = Pattern.compile(pattern.getStringValue());
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, bad regular expression pattern '%s', %s", verb,
          pattern.getObjectValue(), e));
    }
    try {
      newValue =
          new ArrayList<String>(Arrays.asList(regexp.split((String) string.getStringValue())));
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, string='%s' pattern='%s', %s", verb, string.getObjectValue(),
          pattern.getObjectValue(), e));
    }

    variable.set(newValue);
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s string='%s' pattern='%s'",
          statementId(namespace), verb, this.success, variable, variable.get(),
          string.getObjectValue(), pattern.getObjectValue()));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbJoin(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token array = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.ARRAY));
    Token conjunction = getParameter(verb, statement, 3, namespace, EnumSet.of(TokenType.STRING));
    String newValue;

    try {
      newValue = join(array.getListValue(), conjunction.getStringValue());
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, array=%s conjunction='%s', %s", verb, array.getObjectValue(),
          conjunction.getObjectValue(), e));
    }

    variable.set(newValue);
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format(
          "%s verb='%s' success=%s variable: %s=%s array='%s' conjunction='%s'",
          statementId(namespace), verb, this.success, variable, variable.get(),
          array.getObjectValue(), conjunction.getObjectValue()));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbLower(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token parameter =
        getParameter(verb, statement, 2, namespace,
            EnumSet.of(TokenType.STRING, TokenType.ARRAY, TokenType.MAP));

    try {
      switch (parameter.type) {
        case STRING: {
          String oldValue = parameter.getStringValue();
          String newValue;
          newValue = oldValue.toLowerCase();
          variable.set(newValue);
        }
          break;
        case ARRAY: {
          List<Object> oldValue = parameter.getListValue();
          List<Object> newValue = new ArrayList<Object>(oldValue.size());
          String oldItem;
          String newItem;

          for (Object item : oldValue) {
            try {
              oldItem = (String) item;
            } catch (ClassCastException e) {
              throw new InvalidValueException(String.format(
                  "verb '%s' failed, array item (%s) is not a string, array=%s", verb, item,
                  parameter.getObjectValue()));
            }
            newItem = oldItem.toLowerCase();
            newValue.add(newItem);
          }
          variable.set(newValue);
        }
          break;
        case MAP: {
          Map<String, Object> oldValue = parameter.getMapValue();
          Map<String, Object> newValue = new LinkedHashMap<String, Object>(oldValue.size());

          for (Map.Entry<String, Object> entry : oldValue.entrySet()) {
            String oldKey;
            String newKey;
            Object value = entry.getValue();

            oldKey = entry.getKey();
            newKey = oldKey.toLowerCase();
            newValue.put(newKey, value);
          }
          variable.set(newValue);
        }
          break;
        default:
          throw new IllegalStateException(
              String.format("unexpected token type: %s", parameter.type));
      }
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, variable='%s' parameter='%s': %s", verb, variable,
          parameter.getObjectValue(), e), e);
    }
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s parameter=%s",
          statementId(namespace), verb, this.success, variable, variable.get(),
          parameter.getObjectValue()));
    }
    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbUpper(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token parameter =
        getParameter(verb, statement, 2, namespace,
            EnumSet.of(TokenType.STRING, TokenType.ARRAY, TokenType.MAP));

    try {
      switch (parameter.type) {
        case STRING: {
          String oldValue = parameter.getStringValue();
          String newValue;
          newValue = oldValue.toUpperCase();
          variable.set(newValue);
        }
          break;
        case ARRAY: {
          List<Object> oldValue = parameter.getListValue();
          List<Object> newValue = new ArrayList<Object>(oldValue.size());
          String oldItem;
          String newItem;

          for (Object item : oldValue) {
            try {
              oldItem = (String) item;
            } catch (ClassCastException e) {
              throw new InvalidValueException(String.format(
                  "verb '%s' failed, array item (%s) is not a string, array=%s", verb, item,
                  parameter.getObjectValue()));
            }
            newItem = oldItem.toUpperCase();
            newValue.add(newItem);
          }
          variable.set(newValue);
        }
          break;
        case MAP: {
          Map<String, Object> oldValue = parameter.getMapValue();
          Map<String, Object> newValue = new LinkedHashMap<String, Object>(oldValue.size());

          for (Map.Entry<String, Object> entry : oldValue.entrySet()) {
            String oldKey;
            String newKey;
            Object value = entry.getValue();

            oldKey = entry.getKey();
            newKey = oldKey.toUpperCase();
            newValue.put(newKey, value);
          }
          variable.set(newValue);
        }
          break;
        default:
          throw new IllegalStateException(
              String.format("unexpected token type: %s", parameter.type));
      }
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, variable='%s' parameter='%s': %s", verb, variable,
          parameter.getObjectValue(), e), e);
    }
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s variable: %s=%s parameter=%s",
          statementId(namespace), verb, this.success, variable, variable.get(),
          parameter.getObjectValue()));
    }
    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbIn(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token member = getParameter(verb, statement, 1, namespace, null);
    Token collection =
        getParameter(verb, statement, 2, namespace,
            EnumSet.of(TokenType.ARRAY, TokenType.MAP, TokenType.STRING));

    switch (collection.type) {
      case ARRAY: {
        this.success = collection.getListValue().contains(member.getObjectValue());
      }
        break;
      case MAP: {
        if (member.type != TokenType.STRING) {
          throw new InvalidTypeException(String.format(
              "verb '%s' requires parameter #1 to be a %swhen parameter #2 is a %s",
              TokenType.STRING, collection.type));
        }
        this.success = collection.getMapValue().containsKey(member.getObjectValue());
      }
        break;
      case STRING: {
        if (member.type != TokenType.STRING) {
          throw new InvalidTypeException(String.format(
              "verb '%s' requires parameter #1 to be a %swhen parameter #2 is a %s",
              TokenType.STRING, collection.type));
        }
        this.success = (collection.getStringValue()).contains(member.getStringValue());
      }
        break;
      default:
        throw new IllegalStateException(String.format("unexpected token type: %s", collection.type));
    }


    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s member=%s collection=%s",
          statementId(namespace), verb, this.success, member.getObjectValue(),
          collection.getObjectValue()));
    }
    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbNotIn(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    Token member = getParameter(verb, statement, 1, namespace, null);
    Token collection =
        getParameter(verb, statement, 2, namespace,
            EnumSet.of(TokenType.ARRAY, TokenType.MAP, TokenType.STRING));

    switch (collection.type) {
      case ARRAY: {
        this.success = !collection.getListValue().contains(member.getObjectValue());
      }
        break;
      case MAP: {
        if (member.type != TokenType.STRING) {
          throw new InvalidTypeException(String.format(
              "verb '%s' requires parameter #1 to be a %swhen parameter #2 is a %s",
              TokenType.STRING, collection.type));
        }
        this.success = !collection.getMapValue().containsKey(member.getObjectValue());
      }
        break;
      case STRING: {
        if (member.type != TokenType.STRING) {
          throw new InvalidTypeException(String.format(
              "verb '%s' requires parameter #1 to be a %swhen parameter #2 is a %s",
              TokenType.STRING, collection.type));
        }
        this.success = !(collection.getStringValue()).contains(member.getStringValue());
      }
        break;
      default:
        throw new IllegalStateException(String.format("unexpected token type: %s", collection.type));
    }


    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s member=%s collection=%s",
          statementId(namespace), verb, this.success, member.getObjectValue(),
          collection.getObjectValue()));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbCompare(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token left = getParameter(verb, statement, 1, namespace, null);
    Token op = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.STRING));
    Token right = getParameter(verb, statement, 3, namespace, null);
    String invalidOp = "operator %s not supported for type %s";
    TokenType tokenType;
    String opValue = op.getStringValue();
    boolean result;

    if (left.type != right.type) {
      throw new InvalidTypeException(String.format(
          "verb '%s' both items must have the same type left is %s and right is %s", verb,
          left.type, right.type));
    } else {
      tokenType = left.type;
    }

    switch (opValue) {
      case "==":
      case "!=": {
        switch (tokenType) {
          case STRING: {
            String leftValue = left.getStringValue();
            String rightValue = right.getStringValue();
            result = leftValue.equals(rightValue);
          }
            break;
          case INTEGER: {
            Long leftValue = left.getLongValue();
            Long rightValue = right.getLongValue();
            result = leftValue.equals(rightValue);
          }
            break;
          case REAL: {
            Double leftValue = left.getDoubleValue();
            Double rightValue = right.getDoubleValue();
            result = leftValue.equals(rightValue);
          }
            break;
          case ARRAY: {
            List<Object> leftValue = left.getListValue();
            List<Object> rightValue = right.getListValue();
            result = leftValue.equals(rightValue);
          }
            break;
          case MAP: {
            Map<String, Object> leftValue = left.getMapValue();
            Map<String, Object> rightValue = right.getMapValue();
            result = leftValue.equals(rightValue);
          }
            break;
          case BOOLEAN: {
            Boolean leftValue = left.getBooleanValue();
            Boolean rightValue = right.getBooleanValue();
            result = leftValue.equals(rightValue);
          }
            break;
          case NULL: {
            result = (left.getNullValue() == right.getNullValue());
          }
            break;
          default: {
            throw new IllegalStateException(String.format("unexpected token type: %s", tokenType));
          }
        }
        if (opValue.equals("!=")) { // negate the sense of the test
          result = !result;
        }
      }
        break;
      case "<":
      case ">=": {
        switch (tokenType) {
          case STRING: {
            String leftValue = left.getStringValue();
            String rightValue = right.getStringValue();
            result = leftValue.compareTo(rightValue) < 0;
          }
            break;
          case INTEGER: {
            Long leftValue = left.getLongValue();
            Long rightValue = right.getLongValue();
            result = leftValue < rightValue;
          }
            break;
          case REAL: {
            Double leftValue = left.getDoubleValue();
            Double rightValue = right.getDoubleValue();
            result = leftValue < rightValue;
          }
            break;
          case ARRAY:
          case MAP:
          case BOOLEAN:
          case NULL: {
            throw new InvalidRuleException(String.format(invalidOp, opValue, tokenType));
          }
          default: {
            throw new IllegalStateException(String.format("unexpected token type: %s", tokenType));
          }
        }
        if (opValue.equals(">=")) { // negate the sense of the test
          result = !result;
        }
      }
        break;
      case ">":
      case "<=": {
        switch (tokenType) {
          case STRING: {
            String leftValue = left.getStringValue();
            String rightValue = right.getStringValue();
            result = leftValue.compareTo(rightValue) > 0;
          }
            break;
          case INTEGER: {
            Long leftValue = left.getLongValue();
            Long rightValue = right.getLongValue();
            result = leftValue > rightValue;
          }
            break;
          case REAL: {
            Double leftValue = left.getDoubleValue();
            Double rightValue = right.getDoubleValue();
            result = leftValue > rightValue;
          }
            break;
          case ARRAY:
          case MAP:
          case BOOLEAN:
          case NULL: {
            throw new InvalidRuleException(String.format(invalidOp, opValue, tokenType));
          }
          default: {
            throw new IllegalStateException(String.format("unexpected token type: %s", tokenType));
          }
        }
        if (opValue.equals("<=")) { // negate the sense of the test
          result = !result;
        }
      }
        break;
      default: {
        throw new InvalidRuleException(String.format(
            "verb '%s' has unknown comparison operator '%s'", verb, op.getObjectValue()));
      }
    }
    this.success = result;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s left=%s op='%s' right=%s",
          statementId(namespace), verb, this.success, left.getObjectValue(), op.getObjectValue(),
          right.getObjectValue()));
    }
    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbRegexp(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token string = getParameter(verb, statement, 1, namespace, EnumSet.of(TokenType.STRING));
    Token pattern = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.STRING));

    Pattern regexp;
    Matcher matcher;

    try {
      regexp = Pattern.compile(pattern.getStringValue());
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, bad regular expression pattern '%s', %s", verb,
          pattern.getObjectValue(), e));
    }
    matcher = regexp.matcher(string.getStringValue());

    if (matcher.find()) {
      this.success = true;
      namespace.put(REGEXP_ARRAY_VARIABLE, regexpGroupList(matcher));
      namespace.put(REGEXP_MAP_VARIABLE, regexpGroupMap(pattern.getStringValue(), matcher));
    } else {
      this.success = false;
      namespace.put(REGEXP_ARRAY_VARIABLE, new ArrayList<Object>());
      namespace.put(REGEXP_MAP_VARIABLE, new HashMap<String, Object>());
    }


    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s string='%s' pattern='%s' %s=%s %s=%s",
          statementId(namespace), verb, this.success, string.getObjectValue(),
          pattern.getObjectValue(), REGEXP_ARRAY_VARIABLE, namespace.get(REGEXP_ARRAY_VARIABLE),
          REGEXP_MAP_VARIABLE, namespace.get(REGEXP_MAP_VARIABLE)));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbRegexpReplace(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    Token variable = getVariable(verb, statement, 1, namespace);
    Token string = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.STRING));
    Token pattern = getParameter(verb, statement, 3, namespace, EnumSet.of(TokenType.STRING));
    Token replacement = getParameter(verb, statement, 4, namespace, EnumSet.of(TokenType.STRING));

    Pattern regexp;
    Matcher matcher;
    String newValue;

    try {
      regexp = Pattern.compile(pattern.getStringValue());
    } catch (Exception e) {
      throw new InvalidValueException(String.format(
          "verb '%s' failed, bad regular expression pattern '%s', %s", verb,
          pattern.getObjectValue(), e));
    }
    matcher = regexp.matcher(string.getStringValue());

    newValue = matcher.replaceAll(replacement.getStringValue());
    variable.set(newValue);
    this.success = true;

    if (logger.isDebugEnabled()) {
      logger.debug(String.format(
          "%s verb='%s' success=%s variable: %s=%s string='%s' pattern='%s' replacement='%s'",
          statementId(namespace), verb, this.success, variable, variable.get(),
          string.getObjectValue(), pattern.getObjectValue(), replacement.getObjectValue()));
    }

    return ProcessResult.STATEMENT_CONTINUE;
  }

  private ProcessResult verbExit(String verb, Map<String, Object> namespace, List<Object> statement)
      {
    ProcessResult statementResult = ProcessResult.STATEMENT_CONTINUE;

    Token exitStatusParam =
        getParameter(verb, statement, 1, namespace, EnumSet.of(TokenType.STRING));
    Token criteriaParam = getParameter(verb, statement, 2, namespace, EnumSet.of(TokenType.STRING));
    String exitStatus = (exitStatusParam.getStringValue()).toLowerCase();
    String criteria = (criteriaParam.getStringValue()).toLowerCase();
    ProcessResult result;
    boolean doExit;


    if (exitStatus.equals("rule_succeeds")) {
      result = ProcessResult.RULE_SUCCESS;
    } else if (exitStatus.equals("rule_fails")) {
      result = ProcessResult.RULE_FAIL;
    } else {
      throw new InvalidRuleException(String.format("verb='%s' unknown exit status '%s'", verb,
          exitStatus));
    }


    if (criteria.equals("if_success")) {
      if (this.success) {
        doExit = true;
      } else {
        doExit = false;
      }
    } else if (criteria.equals("if_not_success")) {
      if (!this.success) {
        doExit = true;
      } else {
        doExit = false;
      }
    } else if (criteria.equals("always")) {
      doExit = true;
    } else if (criteria.equals("never")) {
      doExit = false;
    } else {
      throw new InvalidRuleException(String.format("verb='%s' unknown exit criteria '%s'", verb,
          criteria));
    }

    if (doExit) {
      statementResult = result;
    }

    if (logger.isDebugEnabled()) {
      logger.debug(String
          .format("%s verb='%s' success=%s status=%s criteria=%s exiting=%s result=%s",
              statementId(namespace), verb, this.success, exitStatus, criteria, doExit,
              statementResult));
    }

    return statementResult;
  }

  private ProcessResult verbContinue(String verb, Map<String, Object> namespace,
      List<Object> statement) {
    ProcessResult statementResult = ProcessResult.STATEMENT_CONTINUE;
    Token criteriaParam = getParameter(verb, statement, 1, namespace, EnumSet.of(TokenType.STRING));
    String criteria = (criteriaParam.getStringValue()).toLowerCase();
    boolean doContinue;

    if (criteria.equals("if_success")) {
      if (this.success) {
        doContinue = true;
      } else {
        doContinue = false;
      }
    } else if (criteria.equals("if_not_success")) {
      if (!this.success) {
        doContinue = true;
      } else {
        doContinue = false;
      }
    } else if (criteria.equals("always")) {
      doContinue = true;
    } else if (criteria.equals("never")) {
      doContinue = false;
    } else {
      throw new InvalidRuleException(String.format("verb='%s' unknown continue criteria '%s'",
          verb, criteria));
    }

    if (doContinue) {
      statementResult = ProcessResult.BLOCK_CONTINUE;
    }

    if (logger.isDebugEnabled()) {
      logger.debug(String.format("%s verb='%s' success=%s criteria=%s continuing=%s result=%s",
          statementId(namespace), verb, this.success, criteria, doContinue, statementResult));
    }

    return statementResult;
  }

}