All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ibatis.migration.VariableReplacer Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*
 *    Copyright 2010-2021 the original author or authors.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */
package org.apache.ibatis.migration;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Collectors;

/**
 * @author Clinton Begin
 */
public class VariableReplacer {

  private static final String openToken = "${";
  private static final String closeToken = "}";
  private final List> variablesList;

  public VariableReplacer(Map variablesList) {
    this(Arrays.asList(variablesList));
  }

  public VariableReplacer(List> variablesList) {
    this.variablesList = variablesList == null ? Collections.emptyList()
        : variablesList.stream().filter(Objects::nonNull).collect(Collectors.toList());
  }

  public String replace(String text) {
    if (text == null || text.isEmpty()) {
      return "";
    }
    // search open token
    int start = text.indexOf(openToken);
    if (start == -1) {
      return text;
    }
    char[] src = text.toCharArray();
    int offset = 0;
    final StringBuilder builder = new StringBuilder();
    StringBuilder expression = null;
    while (start > -1) {
      if (start > 0 && src[start - 1] == '\\') {
        // this open token is escaped. remove the backslash and continue.
        builder.append(src, offset, start - offset - 1).append(openToken);
        offset = start + openToken.length();
      } else {
        // found open token. let's search close token.
        if (expression == null) {
          expression = new StringBuilder();
        } else {
          expression.setLength(0);
        }
        builder.append(src, offset, start - offset);
        offset = start + openToken.length();
        int end = text.indexOf(closeToken, offset);
        while (end > -1) {
          if (end > offset && src[end - 1] == '\\') {
            // this close token is escaped. remove the backslash and continue.
            expression.append(src, offset, end - offset - 1).append(closeToken);
            offset = end + closeToken.length();
            end = text.indexOf(closeToken, offset);
          } else {
            expression.append(src, offset, end - offset);
            break;
          }
        }
        if (end == -1) {
          // close token was not found.
          builder.append(src, start, src.length - start);
          offset = src.length;
        } else {
          appendWithReplace(builder, expression.toString());
          offset = end + closeToken.length();
        }
      }
      start = text.indexOf(openToken, offset);
    }
    if (offset < src.length) {
      builder.append(src, offset, src.length - offset);
    }
    return builder.toString();
  }

  private StringBuilder appendWithReplace(StringBuilder builder, String key) {
    String value = null;
    for (Map variables : variablesList) {
      value = (String) variables.get(key);
      if (value != null) {
        builder.append(value);
        break;
      }
    }
    if (value == null) {
      builder.append(openToken).append(key).append(closeToken);
    }
    return builder;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy