/IBMainJava/src/main/java/com/chapal/ib/activemq/client/Producer.java

http://ibtrading.googlecode.com/ · Java · 132 lines · 101 code · 29 blank · 2 comment · 15 complexity · f640707d941b65f1e70f7ed9a926e6bb MD5 · raw file

  1. package com.chapal.ib.activemq.client;
  2. import java.io.Serializable;
  3. import javax.jms.Connection;
  4. import javax.jms.DeliveryMode;
  5. import javax.jms.Destination;
  6. import javax.jms.MessageProducer;
  7. import javax.jms.ObjectMessage;
  8. import javax.jms.Session;
  9. import org.apache.activemq.ActiveMQConnection;
  10. import org.apache.activemq.ActiveMQConnectionFactory;
  11. public class Producer {
  12. private Destination destination;
  13. private int messageSize = 255;
  14. private long timeToLive;
  15. private String user = ActiveMQConnection.DEFAULT_USER;
  16. private String password = ActiveMQConnection.DEFAULT_PASSWORD;
  17. private String url = ActiveMQConnection.DEFAULT_BROKER_URL;
  18. private String subject = null;
  19. private boolean topic;
  20. private boolean transacted;
  21. private boolean persistent = false;
  22. private Connection connection = null;
  23. MessageProducer producer = null;
  24. Session session = null;
  25. public Producer(String subject, boolean isTopic) {
  26. this.subject = subject;
  27. this.topic = isTopic;
  28. }
  29. public void init() throws Exception {
  30. try {
  31. if (this.timeToLive != 0) System.out.println("Messages time to live " + this.timeToLive + " ms");
  32. // Create the connection.
  33. final ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(this.user, this.password, this.url);
  34. this.connection = connectionFactory.createConnection();
  35. this.connection.start();
  36. // Create the session
  37. this.session = this.connection.createSession(this.transacted, Session.AUTO_ACKNOWLEDGE);
  38. if (this.subject == null) throw new Exception("Subject is null");
  39. if (this.topic) this.destination = this.session.createTopic(this.subject);
  40. else this.destination = this.session.createQueue(this.subject);
  41. this.producer = this.session.createProducer(this.destination);
  42. if (this.persistent) this.producer.setDeliveryMode(DeliveryMode.PERSISTENT);
  43. else this.producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
  44. if (this.timeToLive != 0) this.producer.setTimeToLive(this.timeToLive);
  45. } catch (final Exception e) {
  46. System.out.println("Caught: " + e);
  47. e.printStackTrace();
  48. throw e;
  49. }
  50. }
  51. @Override
  52. protected void finalize() {
  53. try {
  54. this.connection.close();
  55. } catch (final Exception e) {
  56. e.printStackTrace();
  57. }
  58. }
  59. public void sendMessage(Serializable obj) throws Exception {
  60. if (this.session == null) throw new Exception("Session is null");
  61. if (this.producer == null) throw new Exception("producer is null");
  62. final ObjectMessage msgObject = this.session.createObjectMessage();
  63. msgObject.setObject(obj);
  64. this.producer.send(msgObject);
  65. if (this.transacted) this.session.commit();
  66. }
  67. public void setPersistent(boolean durable) {
  68. this.persistent = durable;
  69. }
  70. public void setMessageCount(int messageCount) {
  71. }
  72. public void setMessageSize(int messageSize) {
  73. this.messageSize = messageSize;
  74. }
  75. public void setPassword(String pwd) {
  76. this.password = pwd;
  77. }
  78. public void setSleepTime(long sleepTime) {
  79. }
  80. public void setSubject(String subject) {
  81. this.subject = subject;
  82. }
  83. public void setTimeToLive(long timeToLive) {
  84. this.timeToLive = timeToLive;
  85. }
  86. public void setTopic(boolean topic) {
  87. this.topic = topic;
  88. }
  89. public void setQueue(boolean queue) {
  90. this.topic = !queue;
  91. }
  92. public void setTransacted(boolean transacted) {
  93. this.transacted = transacted;
  94. }
  95. public void setUrl(String url) {
  96. this.url = url;
  97. }
  98. public void setUser(String user) {
  99. this.user = user;
  100. }
  101. public void setVerbose(boolean verbose) {
  102. }
  103. }