EditScript.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.text.diff;

  18. import java.util.ArrayList;
  19. import java.util.List;

  20. /**
  21.  * This class gathers all the {@link EditCommand commands} needed to transform
  22.  * one objects sequence into another objects sequence.
  23.  * <p>
  24.  * An edit script is the most general view of the differences between two
  25.  * sequences. It is built as the result of the comparison between two sequences
  26.  * by the {@link StringsComparator StringsComparator} class. The user can
  27.  * walk through it using the <em>visitor</em> design pattern.
  28.  * <p>
  29.  * It is guaranteed that the objects embedded in the {@link InsertCommand insert
  30.  * commands} come from the second sequence and that the objects embedded in
  31.  * either the {@link DeleteCommand delete commands} or {@link KeepCommand keep
  32.  * commands} come from the first sequence. This can be important if subclassing
  33.  * is used for some elements in the first sequence and the <code>equals</code>
  34.  * method is specialized.
  35.  *
  36.  * @see StringsComparator
  37.  * @see EditCommand
  38.  * @see CommandVisitor
  39.  * @see ReplacementsHandler
  40.  *
  41.  * @param <T> object type
  42.  * @since 1.0
  43.  */
  44. public class EditScript<T> {

  45.     /** Container for the commands. */
  46.     private final List<EditCommand<T>> commands;

  47.     /** Length of the longest common subsequence. */
  48.     private int lcsLength;

  49.     /** Number of modifications. */
  50.     private int modifications;

  51.     /**
  52.      * Simple constructor. Creates a new empty script.
  53.      */
  54.     public EditScript() {
  55.         commands = new ArrayList<>();
  56.         lcsLength = 0;
  57.         modifications = 0;
  58.     }

  59.     /**
  60.      * Add a keep command to the script.
  61.      *
  62.      * @param command  command to add
  63.      */
  64.     public void append(final KeepCommand<T> command) {
  65.         commands.add(command);
  66.         ++lcsLength;
  67.     }

  68.     /**
  69.      * Add an insert command to the script.
  70.      *
  71.      * @param command  command to add
  72.      */
  73.     public void append(final InsertCommand<T> command) {
  74.         commands.add(command);
  75.         ++modifications;
  76.     }

  77.     /**
  78.      * Add a delete command to the script.
  79.      *
  80.      * @param command  command to add
  81.      */
  82.     public void append(final DeleteCommand<T> command) {
  83.         commands.add(command);
  84.         ++modifications;
  85.     }

  86.     /**
  87.      * Visit the script. The script implements the <em>visitor</em> design
  88.      * pattern, this method is the entry point to which the user supplies its
  89.      * own visitor, the script will be responsible to drive it through the
  90.      * commands in order and call the appropriate method as each command is
  91.      * encountered.
  92.      *
  93.      * @param visitor  the visitor that will visit all commands in turn
  94.      */
  95.     public void visit(final CommandVisitor<T> visitor) {
  96.         for (final EditCommand<T> command : commands) {
  97.             command.accept(visitor);
  98.         }
  99.     }

  100.     /**
  101.      * Get the length of the Longest Common Subsequence (LCS). The length of the
  102.      * longest common subsequence is the number of {@link KeepCommand keep
  103.      * commands} in the script.
  104.      *
  105.      * @return length of the Longest Common Subsequence
  106.      */
  107.     public int getLCSLength() {
  108.         return lcsLength;
  109.     }

  110.     /**
  111.      * Get the number of effective modifications. The number of effective
  112.      * modification is the number of {@link DeleteCommand delete} and
  113.      * {@link InsertCommand insert} commands in the script.
  114.      *
  115.      * @return number of effective modifications
  116.      */
  117.     public int getModifications() {
  118.         return modifications;
  119.     }

  120. }