CorbaSenderImpl.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.transport.hybrid;
  19. import org.apache.log4j.LogManager;
  20. import org.apache.log4j.Logger;
  21. import org.jboss.blacktie.jatmibroker.core.transport.Sender;
  22. import org.jboss.blacktie.jatmibroker.xatmi.Connection;
  23. import org.jboss.blacktie.jatmibroker.xatmi.ConnectionException;
  24. import AtmiBroker.EndpointQueue;
  25. import AtmiBroker.EndpointQueueHelper;
  26. public class CorbaSenderImpl implements Sender {
  27. private static final Logger log = LogManager
  28. .getLogger(CorbaSenderImpl.class);
  29. private EndpointQueue queue;
  30. private String name;
  31. private int pad = 0;
  32. private boolean closed;
  33. CorbaSenderImpl(org.omg.CORBA.Object serviceFactoryObject, String name) {
  34. this.queue = EndpointQueueHelper.narrow(serviceFactoryObject);
  35. this.name = name;
  36. log.debug("Corba sender for: " + name + " created");
  37. }
  38. public void send(Object replyTo, short rval, int rcode, byte[] data,
  39. int len, int correlationId, int flags, int ttl, String type,
  40. String subtype) throws ConnectionException {
  41. log.debug("Sending the message");
  42. if (closed) {
  43. log.error("Sender closed");
  44. throw new ConnectionException(Connection.TPEPROTO, "Sender closed");
  45. }
  46. if (data == null) {
  47. data = new byte[1];
  48. len = 1;
  49. }
  50. String toReplyTo = (String) replyTo;
  51. if (toReplyTo == null) {
  52. log.trace("Reply to set as null");
  53. toReplyTo = "";
  54. }
  55. if (type == null) {
  56. log.trace("Type set as null");
  57. type = "";
  58. }
  59. if (subtype == null) {
  60. log.trace("Subtype set as null");
  61. subtype = "";
  62. }
  63. if (len < 1) {
  64. log.error("Length of buffer must be greater than 0");
  65. throw new ConnectionException(Connection.TPEINVAL,
  66. "Length of buffer must be greater than 0");
  67. }
  68. byte[] toSend = new byte[len + pad];
  69. if (data != null) {
  70. int min = Math.min(toSend.length, data.length);
  71. System.arraycopy(data, 0, toSend, 0, min);
  72. }
  73. log.debug("Preparing to send the message");
  74. queue.send(toReplyTo, rval, rcode, toSend, toSend.length,
  75. correlationId, flags, type, subtype);
  76. log.debug("Sent the message");
  77. }
  78. public void close() {
  79. log.debug("Close called");
  80. closed = true;
  81. log.debug("Sender closed: " + name);
  82. }
  83. public Object getSendTo() {
  84. return name;
  85. }
  86. }