/servers/sip-servlets/sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/core/session/SipApplicationSessionAsyncTask.java

http://mobicents.googlecode.com/ · Java · 84 lines · 46 code · 8 blank · 30 comment · 6 complexity · c0e18c1425eb3324e0cd868b459f5962 MD5 · raw file

  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. package org.mobicents.servlet.sip.core.session;
  23. import org.apache.log4j.Logger;
  24. import org.mobicents.javax.servlet.sip.SipApplicationSessionAsynchronousWork;
  25. import org.mobicents.servlet.sip.core.SipContext;
  26. import org.mobicents.servlet.sip.core.SipManager;
  27. import org.mobicents.servlet.sip.message.SipFactoryImpl;
  28. /**
  29. * Wrapper around the SipApplicationSessionAsynchronousWork to make sure the work is done in a thread safe manner
  30. *
  31. * @author jean.deruelle@gmail.com
  32. *
  33. */
  34. public class SipApplicationSessionAsyncTask implements Runnable {
  35. private static final Logger logger = Logger.getLogger(SipApplicationSessionAsyncTask.class);
  36. private SipApplicationSessionKey key;
  37. private SipApplicationSessionAsynchronousWork work;
  38. private SipFactoryImpl sipFactoryImpl;
  39. public SipApplicationSessionAsyncTask(SipApplicationSessionKey key,
  40. SipApplicationSessionAsynchronousWork work, SipFactoryImpl sipFactory) {
  41. this.key = key;
  42. this.work = work;
  43. this.sipFactoryImpl = sipFactory;
  44. }
  45. /* (non-Javadoc)
  46. * @see java.lang.Runnable#run()
  47. */
  48. public void run() {
  49. final SipContext sipContext = sipFactoryImpl.getSipApplicationDispatcher().findSipApplication(key.getApplicationName());
  50. if(sipContext != null) {
  51. SipManager sipManager = sipContext.getSipManager();
  52. MobicentsSipApplicationSession sipApplicationSession = sipManager.getSipApplicationSession(key, false);
  53. if(sipApplicationSession != null) {
  54. ClassLoader oldClassLoader = Thread.currentThread().getContextClassLoader();
  55. boolean batchStarted = false;
  56. try {
  57. ClassLoader cl = sipContext.getSipContextClassLoader();
  58. Thread.currentThread().setContextClassLoader(cl);
  59. sipContext.enterSipApp(sipApplicationSession, null, false);
  60. batchStarted = sipContext.enterSipAppHa(true);
  61. work.doAsynchronousWork(sipApplicationSession);
  62. } catch(Throwable t) {
  63. logger.error("An unexpected exception happened in the SipApplicationSessionAsynchronousWork callback on sip application session " + key, t);
  64. } finally {
  65. sipContext.exitSipAppHa(null, null, batchStarted);
  66. sipContext.exitSipApp(sipApplicationSession, null);
  67. Thread.currentThread().setContextClassLoader(oldClassLoader);
  68. }
  69. } else {
  70. if(logger.isDebugEnabled()) {
  71. logger.debug("SipApplicationSession " + key + " couldn't be found, it may have been already invalidated.");
  72. }
  73. }
  74. }
  75. }
  76. }