com.conwet.silbops.connectors.comet.handlers.UnsubscribeResponse.java Source code

Java tutorial

Introduction

Here is the source code for com.conwet.silbops.connectors.comet.handlers.UnsubscribeResponse.java

Source

package com.conwet.silbops.connectors.comet.handlers;

/*
 * #%L
 * SilboPS Service
 * %%
 * Copyright (C) 2011 - 2014 CoNWeT Lab., Universidad Politcnica de Madrid
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program 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 Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 * #L%
 */

import com.conwet.silbops.apibroker.EndPoint;
import com.conwet.silbops.broker.Broker;
import com.conwet.silbops.connectors.comet.ConnectionStatus;
import com.conwet.silbops.connectors.comet.HttpEndPoint;
import com.conwet.silbops.model.Subscription;
import com.conwet.silbops.msg.UnsubscribeMsg;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.json.simple.JSONObject;
import org.json.simple.JSONValue;
import org.json.simple.parser.ParseException;

/**
 * This class handles the response for a unsubscribe command
 * 
 * @author sergio
 */
public class UnsubscribeResponse extends AbstractResponse {

    public UnsubscribeResponse(Broker broker, String recvMsg, ConnectionStatus status) {

        super(broker, recvMsg, status);
    }

    @Override
    protected void reply(HttpServletRequest req, HttpServletResponse res, PrintWriter writer,
            HttpEndPoint httpEndPoint, EndPoint connection) {

        try {
            String subscription = retriveParameter(req, "subscription");
            JSONObject jsonSubscription = (JSONObject) JSONValue.parseWithException(subscription);

            UnsubscribeMsg msg = new UnsubscribeMsg();
            msg.setSubscription(Subscription.fromJSON(jsonSubscription));
            broker.receiveMessage(msg, connection);
            writeOut(writer, httpEndPoint.getEndPoint(), "unsubscribe success");
        } catch (ParseException ex) {
            logger.warn("unsubscribe exception: " + ex.getMessage());
            try {
                res.sendError(HttpServletResponse.SC_BAD_REQUEST);
            } catch (IOException ex1) {
                logger.warn(ex1.getMessage());
            }
        }
    }

    @Override
    protected boolean supportPublisherOperations() {

        return false;
    }

    @Override
    protected boolean supportSubscriberOperations() {

        return true;
    }
}