|
| 1 | +/* |
| 2 | + * Copyright 2021 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.springframework.data.elasticsearch.core.convert; |
| 17 | + |
| 18 | +import java.util.LinkedHashMap; |
| 19 | +import java.util.Map; |
| 20 | + |
| 21 | +import org.springframework.data.elasticsearch.core.Range; |
| 22 | +import org.springframework.data.mapping.PersistentProperty; |
| 23 | +import org.springframework.util.Assert; |
| 24 | + |
| 25 | +/** |
| 26 | + * @author Sascha Woo |
| 27 | + * @since 4.3 |
| 28 | + */ |
| 29 | +public abstract class AbstractRangePersistentPropertyConverter<T> extends AbstractPersistentPropertyConverter { |
| 30 | + |
| 31 | + public AbstractRangePersistentPropertyConverter(PersistentProperty<?> property) { |
| 32 | + super(property); |
| 33 | + } |
| 34 | + |
| 35 | + @Override |
| 36 | + public Object read(Object value) { |
| 37 | + |
| 38 | + Assert.notNull(value, "value must not be null."); |
| 39 | + Assert.isInstanceOf(Map.class, value, "value must be instance of Map."); |
| 40 | + |
| 41 | + try { |
| 42 | + Map<String, Object> source = (Map<String, Object>) value; |
| 43 | + Range.Bound<T> lowerBound; |
| 44 | + Range.Bound<T> upperBound; |
| 45 | + |
| 46 | + if (source.containsKey("lte")) { |
| 47 | + lowerBound = Range.Bound.inclusive(parse((String) source.get("lte"))); |
| 48 | + } else if (source.containsKey("lt")) { |
| 49 | + lowerBound = Range.Bound.exclusive(parse((String) source.get("lt"))); |
| 50 | + } else { |
| 51 | + lowerBound = Range.Bound.unbounded(); |
| 52 | + } |
| 53 | + |
| 54 | + if (source.containsKey("gte")) { |
| 55 | + upperBound = Range.Bound.inclusive(parse((String) source.get("gte"))); |
| 56 | + } else if (source.containsKey("gt")) { |
| 57 | + upperBound = Range.Bound.exclusive(parse((String) source.get("gt"))); |
| 58 | + } else { |
| 59 | + upperBound = Range.Bound.unbounded(); |
| 60 | + } |
| 61 | + |
| 62 | + return Range.of(lowerBound, upperBound); |
| 63 | + |
| 64 | + } catch (Exception e) { |
| 65 | + throw new ConversionException( |
| 66 | + String.format("Unable to convert value '%s' of property '%s'", value, getProperty().getName()), e); |
| 67 | + } |
| 68 | + } |
| 69 | + |
| 70 | + @Override |
| 71 | + public Object write(Object value) { |
| 72 | + |
| 73 | + Assert.notNull(value, "value must not be null."); |
| 74 | + Assert.isInstanceOf(Range.class, value, "value must be instance of Range."); |
| 75 | + |
| 76 | + try { |
| 77 | + Range<T> range = (Range<T>) value; |
| 78 | + Range.Bound<T> lowerBound = range.getLowerBound(); |
| 79 | + Range.Bound<T> upperBound = range.getUpperBound(); |
| 80 | + Map<String, Object> target = new LinkedHashMap<>(); |
| 81 | + |
| 82 | + if (lowerBound.isBounded()) { |
| 83 | + String lowerBoundValue = format(lowerBound.getValue().get()); |
| 84 | + if (lowerBound.isInclusive()) { |
| 85 | + target.put("lte", lowerBoundValue); |
| 86 | + } else { |
| 87 | + target.put("lt", lowerBoundValue); |
| 88 | + } |
| 89 | + } |
| 90 | + |
| 91 | + if (upperBound.isBounded()) { |
| 92 | + String upperBoundValue = format(upperBound.getValue().get()); |
| 93 | + if (upperBound.isInclusive()) { |
| 94 | + target.put("gte", upperBoundValue); |
| 95 | + } else { |
| 96 | + target.put("gt", upperBoundValue); |
| 97 | + } |
| 98 | + } |
| 99 | + |
| 100 | + return target; |
| 101 | + |
| 102 | + } catch (Exception e) { |
| 103 | + throw new ConversionException( |
| 104 | + String.format("Unable to convert value '%s' of property '%s'", value, getProperty().getName()), e); |
| 105 | + } |
| 106 | + } |
| 107 | + |
| 108 | + protected abstract String format(T value); |
| 109 | + |
| 110 | + protected Class<?> getGenericType() { |
| 111 | + return getProperty().getTypeInformation().getTypeArguments().get(0).getType(); |
| 112 | + } |
| 113 | + |
| 114 | + protected abstract T parse(String value); |
| 115 | + |
| 116 | +} |
0 commit comments