RawContent.java

  1. /*
  2.  * MIT License
  3.  *
  4.  * Copyright (c) 2023-2024 Eugene Terekhov
  5.  *
  6.  * Permission is hereby granted, free of charge, to any person obtaining a copy
  7.  * of this software and associated documentation files (the "Software"), to deal
  8.  * in the Software without restriction, including without limitation the rights
  9.  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10.  * copies of the Software, and to permit persons to whom the Software is
  11.  * furnished to do so, subject to the following conditions:
  12.  *
  13.  * The above copyright notice and this permission notice shall be included in all
  14.  * copies or substantial portions of the Software.
  15.  *
  16.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19.  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20.  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21.  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  22.  * SOFTWARE.
  23.  */

  24. package ru.ewc.decita.input;

  25. import java.util.ArrayList;
  26. import java.util.List;
  27. import ru.ewc.decita.Coordinate;
  28. import ru.ewc.decita.DecisionTable;
  29. import ru.ewc.decita.Locator;
  30. import ru.ewc.decita.Rule;
  31. import ru.ewc.decita.conditions.Condition;
  32. import ru.ewc.decita.conditions.EqualsCondition;
  33. import ru.ewc.decita.conditions.GreaterThanCondition;
  34. import ru.ewc.decita.conditions.LessThanCondition;
  35. import ru.ewc.decita.conditions.NotCondition;

  36. /**
  37.  * I am the unified source for building {@link DecisionTable}s. My main responsibility is to store
  38.  * all the data needed to construct {@link Rule}s and fill the {@link DecisionTable}.
  39.  *
  40.  * @since 0.2
  41.  */
  42. public final class RawContent {
  43.     /**
  44.      * The name of the source table.
  45.      */
  46.     private final String table;

  47.     /**
  48.      * Array of String values that form the Conditions part of a {@link DecisionTable}.
  49.      */
  50.     private final String[][] conditions;

  51.     /**
  52.      * Array of String values that form the Outcomes/Actions part of a {@link DecisionTable}.
  53.      */
  54.     private final String[][] outcomes;

  55.     /**
  56.      * Ctor.
  57.      *
  58.      * @param conditions A 2D-array of Strings describing the Conditions part of the
  59.      *  {@link DecisionTable}.
  60.      * @param outcomes A 2D-array of Strings describing the Outcomes part of the
  61.      *  {@link DecisionTable}.
  62.      * @param table Name of the source table.
  63.      */
  64.     public RawContent(final String[][] conditions, final String[][] outcomes, final String table) {
  65.         this.table = table;
  66.         this.conditions = conditions.clone();
  67.         this.outcomes = outcomes.clone();
  68.     }

  69.     /**
  70.      * Answers the table name.
  71.      *
  72.      * @return The table name.
  73.      */
  74.     public String tableName() {
  75.         return this.table;
  76.     }

  77.     /**
  78.      * Creates a {@link DecisionTable} from the raw contents.
  79.      *
  80.      * @return The {@link DecisionTable} created from the source file.
  81.      */
  82.     public DecisionTable asDecisionTable() {
  83.         final List<Rule> rules = new ArrayList<>(this.conditions[0].length - 1);
  84.         for (int column = 1; column < this.conditions[0].length; column += 1) {
  85.             final Rule rule = new Rule();
  86.             for (final String[] condition : this.conditions) {
  87.                 rule.withCondition(
  88.                     fullConditionFrom(coordinateFrom(condition[0]), condition[column])
  89.                 );
  90.             }
  91.             for (final String[] outcome : this.outcomes) {
  92.                 rule.withOutcome(
  93.                     outcome[0],
  94.                     outcome[column]
  95.                 );
  96.             }
  97.             rules.add(rule);
  98.         }
  99.         final Rule elserule = new Rule();
  100.         if (this.outcomes[0].length > this.conditions[0].length) {
  101.             for (final String[] outcome : this.outcomes) {
  102.                 elserule.withOutcome(
  103.                     outcome[0],
  104.                     outcome[this.conditions[0].length]
  105.                 );
  106.             }
  107.         } else {
  108.             elserule.withOutcome("outcome", "undefined");
  109.         }
  110.         return new DecisionTable(rules, elserule);
  111.     }

  112.     /**
  113.      * Creates a {@link Condition} based on a string representation.
  114.      *
  115.      * @param base The base {@link Coordinate} for the condition.
  116.      * @param argument String representation of a condition.
  117.      * @return A concrete {@link Condition} based on given string representation.
  118.      */
  119.     private static Condition fullConditionFrom(final Coordinate base, final String argument) {
  120.         final Condition result;
  121.         final char operation = argument.charAt(0);
  122.         if (operation == '~') {
  123.             result = new EqualsCondition(base, base);
  124.         } else if (operation == '!') {
  125.             result = new NotCondition(fullConditionFrom(base, argument.substring(1)));
  126.         } else if (operation == '>') {
  127.             result = new GreaterThanCondition(base, coordinateFrom(argument.substring(1)));
  128.         } else if (operation == '<') {
  129.             result = new LessThanCondition(base, coordinateFrom(argument.substring(1)));
  130.         } else {
  131.             result = new EqualsCondition(base, coordinateFrom(argument));
  132.         }
  133.         return result;
  134.     }

  135.     /**
  136.      * Creates a {@link Coordinate} based on a string representation. The provided string can
  137.      * reference to a constant value or to some {@link Locator}'s value. In the latter case, the
  138.      * string should be in the format "locator::fragment".
  139.      *
  140.      * @param coordinate String representation of a coordinate.
  141.      * @return A concrete {@link Coordinate} based on given string representation.
  142.      */
  143.     private static Coordinate coordinateFrom(final String coordinate) {
  144.         final Coordinate result;
  145.         if (coordinate.contains("::")) {
  146.             final String[] split = coordinate.split("::");
  147.             result = new Coordinate(split[0], split[1]);
  148.         } else {
  149.             result = new Coordinate(Locator.CONSTANT_VALUES, coordinate);
  150.         }
  151.         return result;
  152.     }
  153. }