All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restcomm.connect.telephony.ua.UserAgentManagerProxy Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show newest version
/*
 * TeleStax, Open Source Cloud Communications
 * Copyright 2011-2014, Telestax Inc and individual contributors
 * by the @authors tag.
 *
 * This program is free software: you can redistribute it and/or modify
 * 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 Affero 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 
 *
 */
package org.restcomm.connect.telephony.ua;

import akka.actor.ActorRef;
import akka.actor.ActorSystem;
import akka.actor.Props;
import akka.actor.ReceiveTimeout;
import akka.actor.UntypedActor;
import akka.actor.UntypedActorFactory;
import org.apache.commons.configuration.Configuration;
import org.apache.log4j.Logger;
import org.restcomm.connect.dao.DaoManager;
import scala.concurrent.duration.Duration;

import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.sip.SipFactory;
import javax.servlet.sip.SipServlet;
import javax.servlet.sip.SipServletContextEvent;
import javax.servlet.sip.SipServletListener;
import javax.servlet.sip.SipServletRequest;
import javax.servlet.sip.SipServletResponse;
import java.io.IOException;
import java.util.concurrent.TimeUnit;

/**
 * @author [email protected] (Thomas Quintana)
 * @author gvagenas
 */
public final class UserAgentManagerProxy extends SipServlet implements SipServletListener{
    private static final long serialVersionUID = 1L;
    private static Logger logger = Logger.getLogger(UserAgentManagerProxy.class);

    private ActorSystem system;
    private ActorRef manager;
    private ServletContext servletContext;
    private int pingInterval;

    private Configuration configuration;

    public UserAgentManagerProxy() {
        super();
    }

    @Override
    public void destroy() {
        logger.info("About to destroy UserAgentManager");
        if (system != null)
            system.stop(manager);
    }

    @Override
    protected void doRequest(final SipServletRequest request) throws ServletException, IOException {
        manager.tell(request, null);
    }

//    @Override
//    protected void doResponse(final SipServletResponse response) throws ServletException, IOException {
//        manager.tell(response, null);
//    }

    @Override
    protected void doSuccessResponse(final SipServletResponse response) throws ServletException, IOException {
        manager.tell(response, null);
    }

    @Override
    protected void doErrorResponse(final SipServletResponse response) throws ServletException, IOException {
        if(logger.isDebugEnabled()) {
            // https://github.com/RestComm/Restcomm-Connect/issues/1419 avoid using error to avoid polluting alerts on logentries.
            logger.debug("response: \n"+response.toString()+"\n");
        }
        manager.tell(response, null);
    }

    //    @Override
//    public void init(final ServletConfig config) throws ServletException {
//        configuration.setProperty(ServletConfig.class.getName(), config);
//    }

    private ActorRef manager(final Configuration configuration, final SipFactory factory, final DaoManager storage) {
        final Props props = new Props(new UntypedActorFactory() {
            private static final long serialVersionUID = 1L;

            @Override
            public UntypedActor create() throws Exception {
                return new UserAgentManager(configuration, factory, storage, servletContext);
            }
        });
        return system.actorOf(props);
    }

    @Override
    public void servletInitialized(SipServletContextEvent event) {
        if (event.getSipServlet().getClass().equals(UserAgentManagerProxy.class)) {
            servletContext = event.getServletContext();
            configuration = (Configuration) servletContext.getAttribute(Configuration.class.getName());
            final SipFactory factory = (SipFactory) servletContext.getAttribute(SIP_FACTORY);
            final DaoManager storage = (DaoManager) servletContext.getAttribute(DaoManager.class.getName());
            system = (ActorSystem) servletContext.getAttribute(ActorSystem.class.getName());
            logger.info("About to create new UserAgentManager");
            manager = manager(configuration, factory, storage);
            pingInterval = configuration.subset("runtime-settings").getInt("ping-interval", 60);
            system.scheduler().schedule(Duration.create(5, TimeUnit.SECONDS), Duration.create(pingInterval, TimeUnit.SECONDS),
                    manager, ReceiveTimeout.getInstance(), system.dispatcher());
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy