blob: 8a54570886c56d81382164ffdf61814145f66dfc [file] [log] [blame]
package org.apache.helix.participant.statemachine;
/*
* 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.
*/
import java.util.Map;
import org.apache.helix.HelixException;
import org.apache.helix.NotificationContext;
import org.apache.helix.zookeeper.datamodel.ZNRecord;
import org.apache.helix.messaging.handling.HelixTaskExecutor;
import org.apache.helix.messaging.handling.MessageHandler;
import org.apache.helix.model.Message;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ScheduledTaskStateModel extends StateModel {
static final String DEFAULT_INITIAL_STATE = "OFFLINE";
Logger logger = LoggerFactory.getLogger(ScheduledTaskStateModel.class);
// TODO Get default state from implementation or from state model annotation
// StateModel with initial state other than OFFLINE should override this field
protected String _currentState = DEFAULT_INITIAL_STATE;
final ScheduledTaskStateModelFactory _factory;
final String _resourceName;
final String _partitionKey;
final HelixTaskExecutor _executor;
public ScheduledTaskStateModel(ScheduledTaskStateModelFactory factory,
HelixTaskExecutor executor, String resourceName, String partitionKey) {
_factory = factory;
_resourceName = resourceName;
_partitionKey = partitionKey;
_executor = executor;
}
@Transition(to = "COMPLETED", from = "OFFLINE")
public void onBecomeCompletedFromOffline(Message message, NotificationContext context)
throws InterruptedException {
logger.info(_partitionKey + " onBecomeCompletedFromOffline");
// Construct the inner task message from the mapfields of scheduledTaskQueue resource group
Map<String, String> messageInfo =
message.getRecord().getMapField(Message.Attributes.INNER_MESSAGE.toString());
ZNRecord record = new ZNRecord(_partitionKey);
record.getSimpleFields().putAll(messageInfo);
Message taskMessage = new Message(record);
if (logger.isDebugEnabled()) {
logger.debug(taskMessage.getRecord().getSimpleFields().toString());
}
MessageHandler handler =
_executor.createMessageHandler(taskMessage, new NotificationContext(null));
if (handler == null) {
throw new HelixException("Task message " + taskMessage.getMsgType()
+ " handler not found, task id " + _partitionKey);
}
// Invoke the internal handler to complete the task
handler.handleMessage();
logger.info(_partitionKey + " onBecomeCompletedFromOffline completed");
}
@Transition(to = "OFFLINE", from = "COMPLETED")
public void onBecomeOfflineFromCompleted(Message message, NotificationContext context) {
logger.info(_partitionKey + " onBecomeOfflineFromCompleted");
}
@Transition(to = "DROPPED", from = "COMPLETED")
public void onBecomeDroppedFromCompleted(Message message, NotificationContext context) {
logger.info(_partitionKey + " onBecomeDroppedFromCompleted");
removeFromStatemodelFactory();
}
@Transition(to = "DROPPED", from = "OFFLINE")
public void onBecomeDroppedFromOffline(Message message, NotificationContext context)
throws InterruptedException {
logger.info(_partitionKey + " onBecomeDroppedFromScheduled");
removeFromStatemodelFactory();
}
@Transition(to = "OFFLINE", from = "ERROR")
public void onBecomeOfflineFromError(Message message, NotificationContext context)
throws InterruptedException {
logger.info(_partitionKey + " onBecomeOfflineFromError");
}
@Override
public void reset() {
logger.info(_partitionKey + " ScheduledTask reset");
removeFromStatemodelFactory();
}
// We need this to prevent state model leak
private void removeFromStatemodelFactory() {
if (_factory.getStateModel(_resourceName, _partitionKey) != null) {
_factory.removeStateModel(_resourceName, _partitionKey);
} else {
logger.warn(_resourceName + "_ " + _partitionKey
+ " not found in ScheduledTaskStateModelFactory");
}
}
}