/Source/DataTurbine/com/rbnb/utility/MulticastOutputStream.java

http://dataturbine.googlecode.com/ · Java · 256 lines · 50 code · 21 blank · 185 comment · 0 complexity · 726fae3d586ce4e170895483bf7920f0 MD5 · raw file

  1. /*
  2. Copyright 2007 Creare Inc.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. /*
  14. *****************************************************************
  15. *** ***
  16. *** Name : MulticastOutputStream ***
  17. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  18. *** For : E-Scan ***
  19. *** Date : November, 2001 ***
  20. *** ***
  21. *** Copyright 2001 Creare Inc. ***
  22. *** All Rights Reserved ***
  23. *** ***
  24. *** Description : ***
  25. *** This class extends UDPOutputStream. ***
  26. *** ***
  27. *****************************************************************
  28. */
  29. package com.rbnb.utility;
  30. import java.io.IOException;
  31. import java.net.DatagramSocket;
  32. import java.net.InetAddress;
  33. import java.net.MulticastSocket;
  34. import java.net.SocketException;
  35. import java.net.UnknownHostException;
  36. public class MulticastOutputStream extends UDPOutputStream {
  37. private int timeToLive = 8;
  38. /********************** constructors ********************/
  39. /*
  40. *****************************************************************
  41. *** ***
  42. *** Name : MutlicastOutputStream ***
  43. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  44. *** For : E-Scan ***
  45. *** Date : October, 2001 ***
  46. *** ***
  47. *** Copyright 2001 Creare Inc. ***
  48. *** All Rights Reserved ***
  49. *** ***
  50. *** Description : ***
  51. *** Default constructor. ***
  52. *** ***
  53. *****************************************************************
  54. */
  55. public MulticastOutputStream() {}
  56. /*
  57. *****************************************************************
  58. *** ***
  59. *** Name : MulticastOutputStream ***
  60. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  61. *** For : E-Scan ***
  62. *** Date : October, 2001 ***
  63. *** ***
  64. *** Copyright 2001 Creare Inc. ***
  65. *** All Rights Reserved ***
  66. *** ***
  67. *** Description : ***
  68. *** Constructor. Sets size of buffer. ***
  69. *** ***
  70. *****************************************************************
  71. */
  72. public MulticastOutputStream(int buffSize) {
  73. setBufferSize(buffSize);
  74. }
  75. /*
  76. *****************************************************************
  77. *** ***
  78. *** Name : MulticastOutputStream ***
  79. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  80. *** For : E-Scan ***
  81. *** Date : October, 2001 ***
  82. *** ***
  83. *** Copyright 2001 Creare Inc. ***
  84. *** All Rights Reserved ***
  85. *** ***
  86. *** Description : ***
  87. *** Constructor. Sets the address and port of the ***
  88. *** Multicast group to write to. ***
  89. *** ***
  90. *****************************************************************
  91. */
  92. public MulticastOutputStream(String address, int portI)
  93. throws UnknownHostException, SocketException, IOException {
  94. open(InetAddress.getByName(address), portI);
  95. }
  96. /*
  97. *****************************************************************
  98. *** ***
  99. *** Name : MulticastOutputStream ***
  100. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  101. *** For : E-Scan ***
  102. *** Date : November, 2001 ***
  103. *** ***
  104. *** Copyright 2001 Creare Inc. ***
  105. *** All Rights Reserved ***
  106. *** ***
  107. *** Description : ***
  108. *** Constructor. Sets the address and port of the ***
  109. *** Multicast group to write to. ***
  110. *** ***
  111. *****************************************************************
  112. */
  113. public MulticastOutputStream(InetAddress address, int portI)
  114. throws SocketException, IOException {
  115. open(address, portI);
  116. }
  117. /*
  118. *****************************************************************
  119. *** ***
  120. *** Name : MulticastOutputStream ***
  121. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  122. *** For : E-Scan ***
  123. *** Date : October, 2001 ***
  124. *** ***
  125. *** Copyright 2001 Creare Inc. ***
  126. *** All Rights Reserved ***
  127. *** ***
  128. *** Description : ***
  129. *** Constructor. Sets the address and port of the ***
  130. *** Multicast group to write to. Sets the size of the ***
  131. *** buffer. ***
  132. *** ***
  133. *****************************************************************
  134. */
  135. public MulticastOutputStream(String address,
  136. int portI,
  137. int buffSize)
  138. throws UnknownHostException, SocketException, IOException {
  139. open(InetAddress.getByName(address), portI);
  140. setBufferSize(buffSize);
  141. }
  142. /*
  143. *****************************************************************
  144. *** ***
  145. *** Name : MulticastOutputStream ***
  146. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  147. *** For : E-Scan ***
  148. *** Date : October, 2001 ***
  149. *** ***
  150. *** Copyright 2001 Creare Inc. ***
  151. *** All Rights Reserved ***
  152. *** ***
  153. *** Description : ***
  154. *** Constructor. Sets the address and port of the ***
  155. *** Multicast group to write to. Sets the size of the ***
  156. *** buffer. ***
  157. *** ***
  158. *****************************************************************
  159. */
  160. public MulticastOutputStream(InetAddress address,
  161. int portI,
  162. int buffSize)
  163. throws SocketException, IOException {
  164. open(address, portI);
  165. setBufferSize(buffSize);
  166. }
  167. /************ Time To Live ************/
  168. /*
  169. *****************************************************************
  170. *** ***
  171. *** Name : setTTL ***
  172. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  173. *** For : E-Scan II ***
  174. *** Date : April, 2002 ***
  175. *** ***
  176. *** Copyright 2001 Creare Inc. ***
  177. *** All Rights Reserved ***
  178. *** ***
  179. *** Description : ***
  180. *** This method sets the Time To Live. ***
  181. *** ***
  182. *****************************************************************
  183. */
  184. public void setTTL(int ttlI) throws IOException {
  185. timeToLive = ttlI;
  186. ((MulticastSocket) dsock).setTimeToLive(timeToLive);
  187. }
  188. /*
  189. *****************************************************************
  190. *** ***
  191. *** Name : getTTL ***
  192. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  193. *** For : E-Scan II ***
  194. *** Date : April, 2002 ***
  195. *** ***
  196. *** Copyright 2001 Creare Inc. ***
  197. *** All Rights Reserved ***
  198. *** ***
  199. *** Description : ***
  200. *** This method gets the Time To Live. ***
  201. *** ***
  202. *****************************************************************
  203. */
  204. public int getTTL() {
  205. return timeToLive;
  206. }
  207. /************ opening and closing the stream ************/
  208. /*
  209. *****************************************************************
  210. *** ***
  211. *** Name : open ***
  212. *** By : U. Bergstrom (Creare Inc., Hanover, NH) ***
  213. *** For : E-Scan ***
  214. *** Date : October, 2001 ***
  215. *** ***
  216. *** Copyright 2001 Creare Inc. ***
  217. *** All Rights Reserved ***
  218. *** ***
  219. *** Description : ***
  220. *** The user may use this method to set the address and ***
  221. *** port of the Multicast group to write to. ***
  222. *** ***
  223. *****************************************************************
  224. */
  225. public void open(InetAddress address, int portI)
  226. throws SocketException, IOException {
  227. iAdd = address;
  228. port = portI;
  229. dsock = new MulticastSocket(port);
  230. ((MulticastSocket) dsock).joinGroup(iAdd);
  231. }
  232. }