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

Java tutorial

Introduction

Here is the source code for com.conwet.silbops.connectors.comet.handlers.PublishResponse.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 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;

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.Context;
import com.conwet.silbops.model.Notification;
import com.conwet.silbops.msg.PublishMsg;

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

    public PublishResponse(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 notification = retriveParameter(req, "notification");
            String context = retriveParameter(req, "context");

            JSONObject jsonNotification = (JSONObject) JSONValue.parseWithException(notification);
            JSONObject jsonContext = (JSONObject) JSONValue.parseWithException(context);

            PublishMsg msg = new PublishMsg();
            msg.setNotification(Notification.fromJSON(jsonNotification));
            msg.setContext(Context.fromJSON(jsonContext));

            broker.receiveMessage(msg, connection);
            writeOut(writer, httpEndPoint.getEndPoint(), "publish success");

        } catch (ParseException ex) {
            logger.warn("publish exception: " + ex.getMessage());
            try {
                res.sendError(HttpServletResponse.SC_BAD_REQUEST);
            } catch (IOException ex1) {
                logger.warn(ex1.getMessage());
            }
        }
    }

    @Override
    protected boolean supportPublisherOperations() {

        return true;
    }

    @Override
    protected boolean supportSubscriberOperations() {

        return false;
    }
}