com.yahoo.vespa.config.server.configchange.ReindexActions Maven / Gradle / Ivy
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.configchange;
import com.yahoo.config.model.api.ConfigChangeAction;
import com.yahoo.config.model.api.ConfigChangeReindexAction;
import com.yahoo.config.model.api.ServiceInfo;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
/**
* @author bjorncs
*/
public class ReindexActions {
private final Map actions = new TreeMap<>();
public ReindexActions() {}
public ReindexActions(List actions) {
for (ConfigChangeAction action : actions) {
if (action.getType().equals(ConfigChangeAction.Type.REINDEX)) {
ConfigChangeReindexAction reindexChange = (ConfigChangeReindexAction) action;
for (ServiceInfo service : reindexChange.getServices()) {
addEntry(reindexChange.name(), reindexChange.getDocumentType(), service).
addService(service).
addMessage(action.getMessage());
}
}
}
}
private Entry addEntry(String name, String documentType, ServiceInfo service) {
String clusterName = service.getProperty("clustername").orElse("");
String entryId = name + "." + "." + clusterName + "." + documentType;
Entry entry = actions.get(entryId);
if (entry == null) {
entry = new Entry(name, documentType, clusterName);
actions.put(entryId, entry);
}
return entry;
}
public List getEntries() { return new ArrayList<>(actions.values()); }
public String format() { return new ReindexActionsFormatter(this).format(); }
public boolean isEmpty() { return getEntries().isEmpty(); }
public static class Entry {
private final String name;
private final String documentType;
private final String clusterName;
private final Set services = new LinkedHashSet<>();
private final Set messages = new TreeSet<>();
private Entry(String name, String documentType, String clusterName) {
this.name = name;
this.documentType = documentType;
this.clusterName = clusterName;
}
private Entry addService(ServiceInfo service) {
services.add(service);
return this;
}
private Entry addMessage(String message) {
messages.add(message);
return this;
}
public String name() { return name; }
public String getDocumentType() { return documentType; }
public String getClusterName() { return clusterName; }
public Set getServices() { return services; }
public Set getMessages() { return messages; }
}
}