Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* The MIT License
*
* Copyright (c) 2018 bakdata GmbH
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
package com.bakdata.deduplication.fusion;
import com.bakdata.deduplication.clustering.Cluster;
import java.time.LocalDateTime;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;
import lombok.Builder;
import lombok.Getter;
import lombok.NonNull;
import lombok.Singular;
import lombok.Value;
@Value
@Builder
public class ConflictResolutionFusion implements Fusion {
@NonNull
Function sourceExtractor;
@NonNull
Function lastModifiedExtractor;
@Singular
List sources;
ConflictResolution rootResolution;
@Getter(lazy = true)
Map sourceByName = this.sources.stream().collect(Collectors.toMap(Source::getName, s -> s));
@Override
public FusedValue fuse(final Cluster, T> cluster) {
if (cluster.size() < 2) {
return new FusedValue<>(cluster.get(0), cluster, List.of());
}
final List> conflictingValues = cluster.getElements().stream()
.map(e -> new AnnotatedValue<>(e, this.getSource(e), this.lastModifiedExtractor.apply(e)))
.collect(Collectors.toList());
final FusionContext context = new FusionContext();
final T resolvedValue = context.safeExecute(() -> this.rootResolution.resolve(conflictingValues, context)).flatMap(r -> r)
.orElseThrow(() -> this.createException(conflictingValues, context));
return new FusedValue<>(resolvedValue, cluster, context.getExceptions());
}
private FusionException createException(final List> conflictingValues, final FusionContext context) {
final FusionException fusionException = new FusionException("Could not resolve conflict in " + conflictingValues,
context.getExceptions().get(0));
context.getExceptions().stream().skip(1).forEach(fusionException::addSuppressed);
return fusionException;
}
private Source getSource(final T e) {
return this.getSourceByName().computeIfAbsent(this.sourceExtractor.apply(e), name -> new Source(name, 1));
}
}