/activemq-unit-tests/src/test/java/org/apache/activemq/transport/tcp/SocketTstFactory.java

https://github.com/apache/activemq · Java · 179 lines · 128 code · 30 blank · 21 comment · 6 complexity · cca5bd8e78ad390dd0e66b404270b875 MD5 · raw file

  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.activemq.transport.tcp;
  18. import java.io.IOException;
  19. import java.net.InetAddress;
  20. import java.net.Socket;
  21. import java.net.UnknownHostException;
  22. import java.util.Random;
  23. import java.util.concurrent.ConcurrentHashMap;
  24. import java.util.concurrent.ConcurrentMap;
  25. import javax.net.SocketFactory;
  26. import org.slf4j.Logger;
  27. import org.slf4j.LoggerFactory;
  28. /**
  29. *
  30. *
  31. * Automatically generated socket.close() calls to simulate network faults
  32. */
  33. public class SocketTstFactory extends SocketFactory {
  34. private static final Logger LOG = LoggerFactory.getLogger(SocketTstFactory.class);
  35. private static final ConcurrentMap<InetAddress, Integer> closeIter = new ConcurrentHashMap<InetAddress, Integer>();
  36. private class SocketTst {
  37. private class Bagot implements Runnable {
  38. private final Thread processus;
  39. private final Socket socket;
  40. private final InetAddress address;
  41. public Bagot(Random rnd, Socket socket, InetAddress address) {
  42. this.processus = new Thread(this, "Network Faults maker : undefined");
  43. this.socket = socket;
  44. this.address = address;
  45. }
  46. public void start() {
  47. this.processus.setName("Network Faults maker : " + this.socket.toString());
  48. this.processus.start();
  49. }
  50. @Override
  51. public void run() {
  52. int lastDelayVal;
  53. Integer lastDelay;
  54. while (!this.processus.isInterrupted()) {
  55. if (!this.socket.isClosed()) {
  56. try {
  57. lastDelay = closeIter.get(this.address);
  58. if (lastDelay == null) {
  59. lastDelayVal = 0;
  60. } else {
  61. lastDelayVal = lastDelay.intValue();
  62. if (lastDelayVal > 10)
  63. lastDelayVal += 20;
  64. else
  65. lastDelayVal += 1;
  66. }
  67. lastDelay = new Integer(lastDelayVal);
  68. LOG.info("Trying to close client socket " + socket.toString() + " in " + lastDelayVal + " milliseconds");
  69. try {
  70. Thread.sleep(lastDelayVal);
  71. } catch (InterruptedException e) {
  72. this.processus.interrupt();
  73. Thread.currentThread().interrupt();
  74. } catch (IllegalArgumentException e) {
  75. }
  76. this.socket.close();
  77. closeIter.put(this.address, lastDelay);
  78. LOG.info("Client socket " + this.socket.toString() + " is closed.");
  79. } catch (IOException e) {
  80. }
  81. }
  82. this.processus.interrupt();
  83. }
  84. }
  85. }
  86. private final Bagot bagot;
  87. private final Socket socket;
  88. public SocketTst(InetAddress address, int port, Random rnd) throws IOException {
  89. this.socket = new Socket(address, port);
  90. bagot = new Bagot(rnd, this.socket, address);
  91. }
  92. public SocketTst(InetAddress address, int port, InetAddress localAddr, int localPort, Random rnd) throws IOException {
  93. this.socket = new Socket(address, port, localAddr, localPort);
  94. bagot = new Bagot(rnd, this.socket, address);
  95. }
  96. public SocketTst(String address, int port, Random rnd) throws UnknownHostException, IOException {
  97. this.socket = new Socket(address, port);
  98. bagot = new Bagot(rnd, this.socket, InetAddress.getByName(address));
  99. }
  100. public SocketTst(String address, int port, InetAddress localAddr, int localPort, Random rnd) throws IOException {
  101. this.socket = new Socket(address, port, localAddr, localPort);
  102. bagot = new Bagot(rnd, this.socket, InetAddress.getByName(address));
  103. }
  104. public Socket getSocket() {
  105. return this.socket;
  106. }
  107. public void startBagot() {
  108. bagot.start();
  109. }
  110. };
  111. private final Random rnd;
  112. public SocketTstFactory() {
  113. super();
  114. LOG.info("Creating a new SocketTstFactory");
  115. this.rnd = new Random();
  116. }
  117. @Override
  118. public Socket createSocket(InetAddress host, int port) throws IOException {
  119. SocketTst sockTst;
  120. sockTst = new SocketTst(host, port, this.rnd);
  121. sockTst.startBagot();
  122. return sockTst.getSocket();
  123. }
  124. @Override
  125. public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort) throws IOException {
  126. SocketTst sockTst;
  127. sockTst = new SocketTst(host, port, localAddress, localPort, this.rnd);
  128. sockTst.startBagot();
  129. return sockTst.getSocket();
  130. }
  131. @Override
  132. public Socket createSocket(String host, int port) throws IOException {
  133. SocketTst sockTst;
  134. sockTst = new SocketTst(host, port, this.rnd);
  135. sockTst.startBagot();
  136. return sockTst.getSocket();
  137. }
  138. @Override
  139. public Socket createSocket(String host, int port, InetAddress localAddress, int localPort) throws IOException {
  140. SocketTst sockTst;
  141. sockTst = new SocketTst(host, port, localAddress, localPort, this.rnd);
  142. sockTst.startBagot();
  143. return sockTst.getSocket();
  144. }
  145. private final static SocketTstFactory client = new SocketTstFactory();
  146. public static SocketFactory getDefault() {
  147. return client;
  148. }
  149. }