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

com.github.tomakehurst.wiremock.matching.MatchResult Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
/*
 * Copyright (C) 2016-2022 Thomas Akehurst
 *
 * 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 com.github.tomakehurst.wiremock.matching;

import static com.google.common.collect.Iterables.all;
import static java.util.Arrays.asList;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.collect.Lists;
import java.util.List;

public abstract class MatchResult implements Comparable {

  @JsonCreator
  public static MatchResult partialMatch(@JsonProperty("distance") double distance) {
    return new EagerMatchResult(distance);
  }

  public static MatchResult exactMatch() {
    return new EagerMatchResult(0);
  }

  public static MatchResult noMatch() {
    return new EagerMatchResult(1);
  }

  public static MatchResult of(boolean isMatch) {
    return isMatch ? exactMatch() : noMatch();
  }

  public static MatchResult aggregate(MatchResult... matches) {
    return aggregate(asList(matches));
  }

  public static MatchResult aggregate(final List matchResults) {
    return aggregateWeighted(
        Lists.transform(
            matchResults,
            new Function() {
              @Override
              public WeightedMatchResult apply(MatchResult matchResult) {
                return new WeightedMatchResult(matchResult);
              }
            }));
  }

  public static MatchResult aggregateWeighted(WeightedMatchResult... matchResults) {
    return aggregateWeighted(asList(matchResults));
  }

  public static MatchResult aggregateWeighted(final List matchResults) {
    return new MatchResult() {
      @Override
      public boolean isExactMatch() {
        return all(matchResults, ARE_EXACT_MATCH);
      }

      @Override
      public double getDistance() {
        double totalDistance = 0;
        double sizeWithWeighting = 0;
        for (WeightedMatchResult matchResult : matchResults) {
          totalDistance += matchResult.getDistance();
          sizeWithWeighting += matchResult.getWeighting();
        }

        return (totalDistance / sizeWithWeighting);
      }
    };
  }

  @JsonIgnore
  public abstract boolean isExactMatch();

  public abstract double getDistance();

  @Override
  public int compareTo(MatchResult other) {
    return Double.compare(other.getDistance(), getDistance());
  }

  public static final Predicate ARE_EXACT_MATCH =
      new Predicate() {
        @Override
        public boolean apply(WeightedMatchResult matchResult) {
          return matchResult.isExactMatch();
        }
      };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy