
org.asteriskjava.manager.internal.ManagerReaderImpl Maven / Gradle / Ivy
/*
* Copyright 2004-2006 Stefan Reuter
*
* 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 org.asteriskjava.manager.internal;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import org.asteriskjava.manager.event.DisconnectEvent;
import org.asteriskjava.manager.event.ManagerEvent;
import org.asteriskjava.manager.event.ProtocolIdentifierReceivedEvent;
import org.asteriskjava.manager.internal.backwardsCompatibility.BackwardsCompatibilityForManagerEvents;
import org.asteriskjava.manager.response.ManagerResponse;
import org.asteriskjava.util.DateUtil;
import org.asteriskjava.util.SocketConnectionFacade;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Default implementation of the ManagerReader interface.
*
* @author srt
* @version $Id$
*/
public class ManagerReaderImpl implements ManagerReader {
private static final Logger logger = LoggerFactory.getLogger(ManagerReaderImpl.class);
/**
* The event builder utility to convert a map of attributes reveived from
* asterisk to instances of registered event classes.
*/
private final EventBuilder eventBuilder;
/**
* The response builder utility to convert a map of attributes reveived from
* asterisk to instances of well known response classes.
*/
private final ResponseBuilder responseBuilder;
/**
* The dispatcher to use for dispatching events and responses.
*/
private final Dispatcher dispatcher;
private final Map> expectedResponseClasses;
/**
* The source to use when creating {@link ManagerEvent}s.
*/
private final Object source;
/**
* The socket to use for reading from the asterisk server.
*/
private SocketConnectionFacade socket;
/**
* If set to true
, terminates and closes the reader.
*/
private volatile boolean die = false;
/**
* true
if the main loop has finished.
*/
private boolean dead = false;
/**
* Exception that caused this reader to terminate if any.
*/
private IOException terminationException;
/**
* set of classes able to take newer versions of ManagerEvents and emit
* older style manager Events
*/
BackwardsCompatibilityForManagerEvents compatibility =
new BackwardsCompatibilityForManagerEvents();
/**
* Creates a new ManagerReaderImpl.
*
* @param dispatcher
* the dispatcher to use for dispatching events and
* responses.
* @param source
* the source to use when creating {@link ManagerEvent}s
*/
public ManagerReaderImpl(final Dispatcher dispatcher, Object source) {
this.dispatcher = dispatcher;
this.source = source;
this.eventBuilder = new EventBuilderImpl();
this.responseBuilder = new ResponseBuilderImpl();
this.expectedResponseClasses = new ConcurrentHashMap<>();
}
/**
* Sets the socket to use for reading from the asterisk server.
*
* @param socket
* the socket to use for reading from the asterisk server.
*/
public void setSocket(final SocketConnectionFacade socket) {
this.socket = socket;
}
public void registerEventClass(Class extends ManagerEvent> eventClass) {
eventBuilder.registerEventClass(eventClass);
}
public void expectResponseClass(String internalActionId,
Class extends ManagerResponse> responseClass) {
expectedResponseClasses.put(internalActionId, responseClass);
}
/**
* Reads line by line from the asterisk server, sets the protocol identifier
* (using a generated
* {@link org.asteriskjava.manager.event.ProtocolIdentifierReceivedEvent})
* as soon as it is received and dispatches the received events and
* responses via the associated dispatcher.
*
* @see org.asteriskjava.manager.internal.Dispatcher#dispatchEvent(ManagerEvent)
* @see org.asteriskjava.manager.internal.Dispatcher#dispatchResponse(ManagerResponse)
*/
@SuppressWarnings("unchecked")
public void run() {
final Map buffer = new HashMap<>();
String line;
if (socket == null) {
throw new IllegalStateException("Unable to run: socket is null.");
}
this.die = false;
this.dead = false;
try {
// main loop
while (!this.die && (line = socket.readLine()) != null) {
// maybe we will find a better way to identify the protocol
// identifier but for now
// this works quite well.
if (line.startsWith("Asterisk Call Manager/")
|| line.startsWith("Asterisk Call Manager Proxy/")
|| line.startsWith("Asterisk Manager Proxy/")
|| line.startsWith("OpenPBX Call Manager/")
|| line.startsWith("CallWeaver Call Manager/")
|| line.startsWith("VoIP API/AMI/")) {
ProtocolIdentifierReceivedEvent protocolIdentifierReceivedEvent;
protocolIdentifierReceivedEvent = new ProtocolIdentifierReceivedEvent(source);
protocolIdentifierReceivedEvent.setProtocolIdentifier(line);
protocolIdentifierReceivedEvent.setDateReceived(DateUtil.getDate());
dispatcher.dispatchEvent(protocolIdentifierReceivedEvent);
continue;
}
/*
* Special handling for "Response: Follows" (CommandResponse) As
* we are using "\r\n" as the delimiter for line this also
* handles multiline results as long as they only contain "\n".
*/
if ("Follows".equals(buffer.get("response")) && line.endsWith("--END COMMAND--")) {
buffer.put(COMMAND_RESULT_RESPONSE_KEY, line);
continue;
}
if (line.length() > 0) {
// begin of workaround for Astersik bug 13319
// see AJ-77
// Use this workaround only when line starts from "From "
// and "To "
int isFromAtStart = line.indexOf("From ");
int isToAtStart = line.indexOf("To ");
int delimiterIndex = isFromAtStart == 0 || isToAtStart == 0 ? line.indexOf(" ")
: line.indexOf(":");
// end of workaround for Astersik bug 13319
int delimiterLength = 1;
if (delimiterIndex > 0 && line.length() > delimiterIndex + delimiterLength) {
String name = line.substring(0, delimiterIndex)
.toLowerCase(Locale.ENGLISH)
.trim();
String value = line.substring(delimiterIndex + delimiterLength)
.trim();
addToBuffer(buffer, name, value);
}
}
// an empty line indicates a normal response's or event's end so
// we build
// the corresponding value object and dispatch it through the
// ManagerConnection.
if (line.length() == 0) {
if (buffer.containsKey("event")) {
ManagerEvent event = buildEvent(source, buffer);
if (event != null) {
dispatcher.dispatchEvent(event);
// Backwards compatibility for bridge events.
// Asterisk 13 uses BridgeCreate,
// BridgeEnter, BridgeLeave and BridgeDestroy
// events.
// So here we track active bridges and simulate
// BridgeEvent's for them allowing legacy code to
// still work with BridgeEvent's
ManagerEvent secondaryEvent = compatibility.handleEvent(event);
if (secondaryEvent != null) {
dispatcher.dispatchEvent(secondaryEvent);
}
} else {
logger.debug("buildEvent returned null");
}
} else if (buffer.containsKey("response")) {
final Map bufferEvents = new HashMap<>();
// tqcenglish 对关联事件进行处理
// 当出现 Message: Queue status will follow 时将关联的事件一并返回
String str = (String) buffer.get("message");
if (str != null && str.contains(" follow")) {
final Map event = new HashMap<>();
// 循环读取, 当事件完成后会出现 EventList: Complete
while (!this.die && (line = socket.readLine()) != null) {
if (line.length() > 0) {
int delimiterIndex = line.indexOf(":");
int delimiterLength = 1;
if (delimiterIndex > 0
&& line.length() > delimiterIndex + delimiterLength) {
String name = line.substring(0, delimiterIndex)
.toLowerCase(Locale.ENGLISH)
.trim();
String value =
line.substring(delimiterIndex + delimiterLength)
.trim();
event.put(name, value);
}
}
// 获取一个事件完成,将事件按名称分组
if (line.length() == 0) {
String name = event.get("event");
if (bufferEvents.containsKey(name)) {
Object currentValue = bufferEvents.get(name);
((List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy