view plugins/killvm/agent/src/main/java/com/redhat/thermostat/killvm/agent/internal/KillVmReceiver.java @ 2725:4f2764035d3b

Log activation of cmd-channel receivers. Reviewed-by: aazores Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-July/024204.html
author Severin Gehwolf <sgehwolf@redhat.com>
date Wed, 19 Jul 2017 14:42:37 +0200
parents c4ea301ff07b
children 08bb838d3c6c
line wrap: on
line source

/*
 * Copyright 2012-2017 Red Hat, Inc.
 *
 * This file is part of Thermostat.
 *
 * Thermostat is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2, or (at your
 * option) any later version.
 *
 * Thermostat is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Thermostat; see the file COPYING.  If not see
 * <http://www.gnu.org/licenses/>.
 *
 * Linking this code with other modules is making a combined work
 * based on this code.  Thus, the terms and conditions of the GNU
 * General Public License cover the whole combination.
 *
 * As a special exception, the copyright holders of this code give
 * you permission to link this code with independent modules to
 * produce an executable, regardless of the license terms of these
 * independent modules, and to copy and distribute the resulting
 * executable under terms of your choice, provided that you also
 * meet, for each linked independent module, the terms and conditions
 * of the license of that module.  An independent module is a module
 * which is not derived from or based on this code.  If you modify
 * this code, you may extend this exception to your version of the
 * library, but you are not obligated to do so.  If you do not wish
 * to do so, delete this exception statement from your version.
 */

package com.redhat.thermostat.killvm.agent.internal;

import java.util.logging.Level;
import java.util.logging.Logger;

import org.apache.felix.scr.annotations.Activate;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.Service;

import com.redhat.thermostat.commands.agent.receiver.RequestReceiver;
import com.redhat.thermostat.commands.model.AgentRequest;
import com.redhat.thermostat.commands.model.WebSocketResponse;
import com.redhat.thermostat.commands.model.WebSocketResponse.ResponseType;
import com.redhat.thermostat.common.utils.LoggingUtils;
import com.redhat.thermostat.service.process.ProcessHandler;
import com.redhat.thermostat.service.process.UNIXSignal;

@Component
@Service(value = RequestReceiver.class)
@Property(name = "servicename", value = "com.redhat.thermostat.killvm.agent.internal.KillVmReceiver")
public class KillVmReceiver implements RequestReceiver {

    private static final Logger log = LoggingUtils.getLogger(KillVmReceiver.class);
    
    @Reference
    private ProcessHandler processService;
    
    @Activate
    public void activate() {
        log.log(Level.FINE, "KillVmReceiver activated.");
    }
    
    @Override
    public WebSocketResponse receive(AgentRequest request) {
        if (processService == null) {
            // no dice, should have service by now
            log.severe("Process service is null!");
            return new WebSocketResponse(request.getSequenceId(), ResponseType.ERROR);
        }
        String strPid = request.getParam("vm-pid");
        try {
            Integer pid = Integer.parseInt(strPid);
            processService.sendSignal(pid, UNIXSignal.TERM);
            log.fine("Killed VM with PID " + pid);
            return new WebSocketResponse(request.getSequenceId(), ResponseType.OK);
        } catch (NumberFormatException e) {
            log.log(Level.WARNING, "Invalid PID argument", e);
            return new WebSocketResponse(request.getSequenceId(), ResponseType.ERROR);
        }
    }
    
    protected void bindProcessService(ProcessHandler handler) {
        this.processService = handler;
    }

}