blob: 0408e0d8f18a3e95c7a05ec92fa6458b3cd20112 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.sling.distribution.journal.impl.precondition;
import static org.apache.sling.distribution.journal.HandlerAdapter.create;
import java.io.Closeable;
import java.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.sling.distribution.journal.MessageInfo;
import org.apache.sling.distribution.journal.MessagingProvider;
import org.apache.sling.distribution.journal.Reset;
import org.apache.sling.distribution.journal.impl.shared.Topics;
import org.apache.sling.distribution.journal.messages.Messages;
import org.apache.sling.distribution.journal.messages.Messages.PackageStatusMessage;
import org.apache.sling.distribution.journal.messages.Messages.PackageStatusMessage.Status;
public class PackageStatusWatcher implements Closeable {
private final Closeable poller;
// subAgentName -> pkgOffset -> Status
private final Map<String, Map<Long, Status>> pkgStatusPerSubAgent = new ConcurrentHashMap<>();
public PackageStatusWatcher(MessagingProvider messagingProvider, Topics topics) {
String topicName = topics.getStatusTopic();
poller = messagingProvider.createPoller(
topicName,
Reset.earliest,
create(Messages.PackageStatusMessage.class, this::handle)
);
}
/**
* Gets the status that confirms the package at offset pkgOffset
* @param pkgOffset the offset of the package
* @return the status confirming the package; or null if it has not been confirmed yet
*/
public PackageStatusMessage.Status getStatus(String subAgentName, long pkgOffset) {
Map<Long, Status> statusPerAgent = getAgentStatus(subAgentName);
return statusPerAgent.get(pkgOffset);
}
private Map<Long, Status> getAgentStatus(String subAgentName) {
return pkgStatusPerSubAgent.computeIfAbsent(subAgentName, this::newMap);
}
private Map<Long, Status> newMap(String subAgentName) {
return new ConcurrentHashMap<>();
}
@Override
public void close() throws IOException {
poller.close();
}
private void handle(MessageInfo info, Messages.PackageStatusMessage pkgStatusMsg) {
// TODO: check revision
Map<Long, Status> agentStatus = getAgentStatus(pkgStatusMsg.getSubAgentName());
agentStatus.put(pkgStatusMsg.getOffset(), pkgStatusMsg.getStatus());
}
}