blob: 6d980adca79edf44b82344624f659c1b0008d2b9 [file] [log] [blame]
/*
* Copyright 2019 WeBank
*
* 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.webank.wedatasphere.linkis.server.socket.controller
import com.webank.wedatasphere.linkis.common.listener.ListenerEventBus
import com.webank.wedatasphere.linkis.server.exception.BDPServerErrorException
import org.apache.commons.lang.StringUtils
/**
* Created by enjoyyin on 2018/1/11.
*/
class ServerListenerEventBus(eventQueueCapacity: Int, name: String,
listenerConsumerThreadSize: Int,
listenerThreadMaxFreeTime: Long)
extends ListenerEventBus[ServerEventService, SocketServerEvent](eventQueueCapacity, name)(listenerConsumerThreadSize, listenerThreadMaxFreeTime) {
/**
* Post an event to the specified listener. `onPostEvent` is guaranteed to be called in the same
* thread for all listeners.
*/
override protected def doPostEvent(listener: ServerEventService, event: SocketServerEvent): Unit = {
val serverEvent = event.serverEvent
if(StringUtils.isEmpty(serverEvent.getMethod)) info("ignore empty method with " + serverEvent.getData)
else if(serverEvent.getMethod.startsWith(listener.serviceName)) {
val response = listener.onEvent(serverEvent)
if(response != null) {
response.setMethod(serverEvent.getMethod)
event.socket.sendMessage(response)
}
}
}
override protected val dropEvent: DropEvent = new DropEvent {
override def onDropEvent(event: SocketServerEvent): Unit = throw new BDPServerErrorException(11035, "WebSocket consumer has stopped, please contact the administrator to handle!(WebSocket的消费器已停止,请联系管理员处理!)")
override def onBusStopped(event: SocketServerEvent): Unit = throw new BDPServerErrorException(11005, "The receive queue for WebSocket is full, please try again later!(WebSocket的接收队列已满,请稍后重试!)")
}
}