LookupExpression.java
/*
* (c) Copyright 2021 Hasan Selman Kara. All rights reserved.
*
* 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 li.selman.jpbe.dsl.expression;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Optional;
import li.selman.jpbe.dsl.Expression;
/**
* Note that not the whole input string has to match for the lookup expression to be applied.
* For example, if we have a lookup table that translates from German to French numbers, the following input:
* "einsAAAA, zwei, dreissig" would translate to "uneAAAA, doix, troisssig".
* <p>
* Note that if you want a stricter behaviour, i.e. the whole string must match, you can implement your own
* LookupExpression <b>and</b> LookupExpressionBuilder.
*
* @author Hasan Selman Kara
* @see LookupExpressionBuilder
*/
public class LookupExpression implements Expression {
private final Map<String, String> lookupTable;
public LookupExpression(Map<String, String> lookupTable) {
this.lookupTable = lookupTable;
}
@Override
public Optional<String> apply(String input) {
if (lookupTable.containsKey(input)) {
return Optional.ofNullable(lookupTable.get(input));
} else {
// Use the more computationally expensive search
String lookupValuesReplaced = null;
for (Entry<String, String> item : lookupTable.entrySet()) {
String key = item.getKey();
String value = item.getValue();
if (input.contains(key)) {
if (lookupValuesReplaced == null) {
lookupValuesReplaced = input;
}
lookupValuesReplaced = lookupValuesReplaced.replace(key, value);
}
}
return Optional.ofNullable(lookupValuesReplaced);
}
}
@Override
public int getDslWeight() {
return 1;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
LookupExpression that = (LookupExpression) o;
return lookupTable.equals(that.lookupTable);
}
@Override
public int hashCode() {
return lookupTable.hashCode();
}
@Override
public String toString() {
return String.format("Lookup(%s)", lookupTable);
}
}