/* * Symphony - A modern community (forum/SNS/blog) platform written in Java. * Copyright (C) 2012-2017, b3log.org & hacpai.com * * This program 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 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 General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.b3log.symphony.processor.channel; import org.b3log.latke.logging.Logger; import org.json.JSONObject; import javax.websocket.*; import javax.websocket.server.ServerEndpoint; import java.util.Collections; import java.util.Iterator; import java.util.Set; import java.util.concurrent.ConcurrentHashMap; /** * Timeline channel. * * @author <a href="http://88250.b3log.org">Liang Ding</a> * @version 2.0.3.1, Jul 21, 2016 * @since 1.3.0 */ @ServerEndpoint(value = "/timeline-channel", configurator = Channels.WebSocketConfigurator.class) public class TimelineChannel { /** * Logger. */ private static final Logger LOGGER = Logger.getLogger(TimelineChannel.class.getName()); /** * Session set. */ public static final Set<Session> SESSIONS = Collections.newSetFromMap(new ConcurrentHashMap()); /** * Called when the socket connection with the browser is established. * * @param session session */ @OnOpen public void onConnect(final Session session) { SESSIONS.add(session); } /** * Called when the connection closed. * * @param session session * @param closeReason close reason */ @OnClose public void onClose(final Session session, final CloseReason closeReason) { removeSession(session); } /** * Called when a message received from the browser. * * @param message message */ @OnMessage public void onMessage(final String message) { } /** * Called in case of an error. * * @param session session * @param error error */ @OnError public void onError(final Session session, final Throwable error) { removeSession(session); } /** * Notifies the specified timeline message to browsers. * * @param message the specified message, for example <pre> * { * "type": "article", * "content": "" * } * </pre> */ public static void notifyTimeline(final JSONObject message) { final String msgStr = message.toString(); final Iterator<Session> i = SESSIONS.iterator(); while (i.hasNext()) { final Session session = i.next(); if (session.isOpen()) { session.getAsyncRemote().sendText(msgStr); } } } /** * Removes the specified session. * * @param session the specified session */ private void removeSession(final Session session) { SESSIONS.remove(session); } }