models.protocol.v1.HeartbeatMessagesProcessor.java Source code

Java tutorial

Introduction

Here is the source code for models.protocol.v1.HeartbeatMessagesProcessor.java

Source

/**
 * Copyright 2014 Groupon.com
 *
 * 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 models.protocol.v1;

import com.arpnetworking.metrics.Metrics;
import com.fasterxml.jackson.databind.node.JsonNodeFactory;
import com.fasterxml.jackson.databind.node.ObjectNode;
import models.ConnectionContext;
import models.messages.Command;
import models.protocol.MessagesProcessor;

/**
 * Processes heartbeat messages.
 *
 * @author Brandon Arp (barp at groupon dot com)
 */
public class HeartbeatMessagesProcessor implements MessagesProcessor {
    /**
     * Public constructor.
     *
     * @param connectionContext ConnectionContext where processing takes place
     */
    public HeartbeatMessagesProcessor(final ConnectionContext connectionContext) {
        _connectionContext = connectionContext;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public boolean handleMessage(final Object message) {
        if (message instanceof Command) {
            _metrics.incrementCounter(HEARTBEAT_COUNTER);
            //TODO(barp): Map with a POJO mapper [MAI-184]
            final Command command = (Command) message;
            final ObjectNode commandNode = (ObjectNode) command.getCommand();
            final String commandString = commandNode.get("command").asText();
            if (COMMAND_HEARTBEAT.equals(commandString)) {
                _connectionContext.getConnection().write(OK_RESPONSE);
                return true;
            }
        }
        return false;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public void initializeMetrics(final Metrics metrics) {
        _metrics = metrics;
        metrics.resetCounter(HEARTBEAT_COUNTER);
    }

    private Metrics _metrics;
    private final ConnectionContext _connectionContext;

    private static final String COMMAND_HEARTBEAT = "heartbeat";
    private static final ObjectNode OK_RESPONSE = JsonNodeFactory.instance.objectNode().put("response", "ok");
    private static final String HEARTBEAT_COUNTER = "Actors/Connection/Command/Heartbeat";
}