/* * Copyright (c) 2011 PonySDK * Owners: * Luciano Broussal <luciano.broussal AT gmail.com> * Mathieu Barbier <mathieu.barbier AT gmail.com> * Nicolas Ciaravola <nicolas.ciaravola.pro AT gmail.com> * * WebSite: * http://code.google.com/p/pony-sdk/ * * 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 com.ponysdk.core.server.servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.ponysdk.core.model.ClientToServerModel; import com.ponysdk.core.server.application.Application; import com.ponysdk.core.server.application.UIContext; import com.ponysdk.core.ui.eventbus.StreamHandler; /** * The server side implementation of the RPC service. */ public class StreamServiceServlet extends HttpServlet { private static final long serialVersionUID = 5368766616550622126L; private static final Logger log = LoggerFactory.getLogger(StreamServiceServlet.class); private static void streamRequest(final HttpServletRequest req, final HttpServletResponse resp) throws IOException { try { final String applicationId = req.getParameter(ClientToServerModel.APPLICATION_ID.toStringValue()); final Application application = SessionManager.get().getApplication(applicationId); final Integer uiContextID = Integer.parseInt(req.getParameter(ClientToServerModel.UI_CONTEXT_ID.toStringValue())); final UIContext uiContext = application.getUIContext(uiContextID); final StreamHandler streamHandler = uiContext .removeStreamListener(Integer.parseInt(req.getParameter(ClientToServerModel.STREAM_REQUEST_ID.toStringValue()))); streamHandler.onStream(req, resp, uiContext); } catch (final Exception e) { log.error("Cannot stream request", e); resp.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e.getMessage()); } } @Override protected void doGet(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException, IOException { streamRequest(req, resp); } @Override protected void doPost(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException, IOException { streamRequest(req, resp); } }