ServiceDispatcher.java
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:3k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. package org.jboss.blacktie.jatmibroker.core.server;
  19. import org.apache.log4j.LogManager;
  20. import org.apache.log4j.Logger;
  21. import org.jboss.blacktie.jatmibroker.core.conf.ConfigurationException;
  22. import org.jboss.blacktie.jatmibroker.core.transport.Message;
  23. import org.jboss.blacktie.jatmibroker.core.transport.Receiver;
  24. import org.jboss.blacktie.jatmibroker.xatmi.BlacktieService;
  25. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  26. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  27. import org.jboss.blacktie.jatmibroker.xatmi.Response;
  28. import org.jboss.blacktie.jatmibroker.xatmi.Service;
  29. import org.jboss.blacktie.jatmibroker.xatmi.TPSVCINFO;
  30. public class ServiceDispatcher extends Service implements Runnable {
  31. private static final Logger log = LogManager
  32. .getLogger(ServiceDispatcher.class);
  33. private BlacktieService callback;
  34. private Receiver receiver;
  35. private Thread thread;
  36. private volatile boolean closed;
  37. ServiceDispatcher(String serviceName, BlacktieService callback,
  38. Receiver receiver) throws ConfigurationException,
  39. ConnectionException {
  40. super(serviceName);
  41. this.callback = callback;
  42. this.receiver = receiver;
  43. thread = new Thread(this, serviceName + "-Dispatcher");
  44. thread.start();
  45. log.debug("Created: " + thread.getName());
  46. }
  47. public void run() {
  48. log.debug("Running");
  49. try {
  50. while (!closed) {
  51. try {
  52. Message message = receiver.receive(0);
  53. log.trace("Received");
  54. try {
  55. this.processMessage(message);
  56. log.trace("Processed");
  57. } catch (Throwable t) {
  58. log.error("Can't process the message", t);
  59. }
  60. } catch (ConnectionException e) {
  61. if (closed) {
  62. throw e;
  63. }
  64. if (e.getTperrno() == Connection.TPETIME) {
  65. log.debug("Got a timeout");
  66. } else {
  67. throw e;
  68. }
  69. }
  70. }
  71. } catch (Throwable t) {
  72. if (!closed) {
  73. log
  74. .error("Could not receive the message: "
  75. + t.getMessage(), t);
  76. } else {
  77. log.debug("Did not receive the message during shutdown: "
  78. + t.getMessage(), t);
  79. }
  80. }
  81. }
  82. public void startClose() {
  83. closed = true;
  84. log.trace("Closed set");
  85. }
  86. public void close() throws ConnectionException {
  87. log.trace("closing");
  88. try {
  89. log.trace("Joining");
  90. thread.join();
  91. log.trace("Joined");
  92. } catch (InterruptedException e) {
  93. log.error("Could not join the dispatcher", e);
  94. }
  95. super.close();
  96. log.trace("closed");
  97. }
  98. public Response tpservice(TPSVCINFO svcinfo) {
  99. log.trace("Invoking callback");
  100. return callback.tpservice(svcinfo);
  101. }
  102. }