/app/src/main/java/ro/cloudandsun/paymentapplication/ContinuousTcpClient.java

https://bitbucket.org/spa-smartpay/android-castle-btprotocol · Java · 350 lines · 287 code · 59 blank · 4 comment · 34 complexity · 7d1f9d32340a352908c11c581d23bf71 MD5 · raw file

  1. package ro.cloudandsun.paymentapplication;
  2. import android.annotation.SuppressLint;
  3. import android.os.AsyncTask;
  4. import android.os.Handler;
  5. import android.os.Looper;
  6. import android.util.Log;
  7. import android.widget.Toast;
  8. import java.io.BufferedReader;
  9. import java.io.BufferedWriter;
  10. import java.io.IOException;
  11. import java.io.InputStreamReader;
  12. import java.io.OutputStreamWriter;
  13. import java.net.InetAddress;
  14. import java.net.InetSocketAddress;
  15. import java.net.ServerSocket;
  16. import java.net.Socket;
  17. import java.net.SocketTimeoutException;
  18. import java.net.UnknownHostException;
  19. /**
  20. * Created by Akexorcist on 10/1/2018 AD.
  21. */
  22. public class ContinuousTcpClient implements ContinuousTcpServiceImp {
  23. public static final String TAG = ContinuousTcpClient.class.getSimpleName();
  24. private Socket socket;
  25. private TcpService service;
  26. private InetAddress inetAddress;
  27. private String ipAddress = ""; //"213.159.0.195";
  28. private int port = 0;
  29. private boolean isRunning = false;
  30. private boolean isConnected = false;
  31. private TcpConnectionListener tcpConnectionListener;
  32. public ContinuousTcpClient(int port, TcpConnectionListener listener) {
  33. this.port = port;
  34. this.tcpConnectionListener = listener;
  35. }
  36. @SuppressLint("NewApi")
  37. public void start() {
  38. if (!isRunning) {
  39. service = new TcpService(port, this);
  40. service.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[]) null);
  41. isRunning = true;
  42. }
  43. }
  44. public void stop() {
  45. if (this.isRunning) {
  46. this.service.killTask();
  47. this.isRunning = false;
  48. }
  49. disconnect();
  50. }
  51. public boolean isConnected() {
  52. return this.isConnected;
  53. }
  54. @Override
  55. public void setConnected(boolean isConnected) {
  56. this.isConnected = isConnected;
  57. }
  58. @Override
  59. public Socket getSocket() {
  60. return socket;
  61. }
  62. @Override
  63. public void setSocket(Socket socket) {
  64. this.socket = socket;
  65. }
  66. @Override
  67. public InetAddress getInetAddress() {
  68. return inetAddress;
  69. }
  70. @Override
  71. public void setInetAddress(InetAddress inetAddress) {
  72. this.inetAddress = inetAddress;
  73. }
  74. public int getPort() {
  75. return this.port;
  76. }
  77. @Override
  78. public TcpConnectionListener getTcpConnectionListener() {
  79. return tcpConnectionListener;
  80. }
  81. public InetAddress getTargetInetAddress() {
  82. return this.inetAddress;
  83. }
  84. public int getTargetPort() {
  85. return this.port;
  86. }
  87. public String getTargetIP() {
  88. return this.ipAddress;
  89. }
  90. @SuppressLint({"NewApi"})
  91. public void connect(String ipAddress, int port) {
  92. this.ipAddress = ipAddress;
  93. this.port = port;
  94. new TCPConnection(ipAddress, port, null, this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[]) null);
  95. }
  96. @SuppressLint("NewApi")
  97. public void connect(String ipAddress, int port, ConnectionCallback callback) {
  98. this.ipAddress = ipAddress;
  99. this.port = port;
  100. new TCPConnection(ipAddress, port, callback, this).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[]) null);
  101. }
  102. public void disconnect() {
  103. if (this.socket != null) {
  104. try {
  105. this.socket.close();
  106. } catch (IOException ignored) {
  107. }
  108. this.socket = null;
  109. }
  110. }
  111. public void send(String message) {
  112. if (this.socket != null) {
  113. new TCPSend(socket, message, ipAddress, null).execute();
  114. Toast.makeText(MainActivity.getAppContext(), "Message has been sent.", Toast.LENGTH_SHORT).show();
  115. }
  116. }
  117. public void send(String message, SendCallback callback) {
  118. if (this.socket != null)
  119. new TCPSend(socket, message, ipAddress, callback).execute();
  120. }
  121. public interface TcpConnectionListener {
  122. void onConnected(String hostName, String hostAddress, Socket socket);
  123. void onDisconnected();
  124. void onDataReceived(String message, String ipAddress);
  125. }
  126. public interface ConnectionCallback {
  127. void onConnected(String hostName, String hostAddress);
  128. void onConnectionFailed(String ip, Exception e);
  129. }
  130. public interface SendCallback {
  131. void onSuccess(String message, String ip);
  132. void onFailed(String message, String ip, Exception e);
  133. }
  134. @SuppressLint("NewApi")
  135. private static class TcpService extends AsyncTask<Void, Void, Void> {
  136. private ServerSocket serverSocket;
  137. private int port;
  138. private boolean isTaskRunning = true;
  139. private ContinuousTcpServiceImp continuousTcpServiceImp;
  140. public TcpService(int port, ContinuousTcpServiceImp continuousTcpServiceImp) {
  141. this.port = port;
  142. this.continuousTcpServiceImp = continuousTcpServiceImp;
  143. }
  144. public void killTask() {
  145. isTaskRunning = false;
  146. }
  147. protected Void doInBackground(Void... params) {
  148. while (isTaskRunning) {
  149. try {
  150. serverSocket = new ServerSocket(port);
  151. serverSocket.setSoTimeout(1000);
  152. continuousTcpServiceImp.setSocket(serverSocket.accept());
  153. continuousTcpServiceImp.setInetAddress(continuousTcpServiceImp.getSocket().getInetAddress());
  154. continuousTcpServiceImp.setConnected(true);
  155. final String hostName = continuousTcpServiceImp.getInetAddress().getHostName();
  156. final String hostAddress = continuousTcpServiceImp.getInetAddress().getHostAddress();
  157. new Handler(Looper.getMainLooper()).post(new Runnable() {
  158. public void run() {
  159. if (continuousTcpServiceImp.getTcpConnectionListener() != null) {
  160. continuousTcpServiceImp.getTcpConnectionListener().onConnected(hostName, hostAddress, continuousTcpServiceImp.getSocket());
  161. }
  162. }
  163. });
  164. } catch (IOException e) {
  165. Log.w(TAG, "Socket Timeout");
  166. }
  167. while (isTaskRunning && continuousTcpServiceImp.isConnected() && continuousTcpServiceImp.getSocket() != null) {
  168. try {
  169. continuousTcpServiceImp.getSocket().setSoTimeout(1000);
  170. BufferedReader in = new BufferedReader(new InputStreamReader(continuousTcpServiceImp.getSocket().getInputStream()));
  171. char ch_array[] = new char[10000];
  172. in.read(ch_array);
  173. final String incomingMsg = new String(ch_array).trim();
  174. if (continuousTcpServiceImp.getTcpConnectionListener() != null && incomingMsg.length() != 0) {
  175. final String hostAdderss = continuousTcpServiceImp.getInetAddress().getHostAddress();
  176. new Handler(Looper.getMainLooper()).post(new Runnable() {
  177. public void run() {
  178. continuousTcpServiceImp.getTcpConnectionListener().onDataReceived(incomingMsg, hostAdderss);
  179. }
  180. });
  181. } else {
  182. new Handler(Looper.getMainLooper()).post(new Runnable() {
  183. public void run() {
  184. if (continuousTcpServiceImp.getTcpConnectionListener() != null)
  185. continuousTcpServiceImp.getTcpConnectionListener().onDisconnected();
  186. }
  187. });
  188. continuousTcpServiceImp.getSocket().close();
  189. continuousTcpServiceImp.setSocket(null);
  190. }
  191. } catch (NullPointerException e) {
  192. continuousTcpServiceImp.setConnected(false);
  193. } catch (SocketTimeoutException e) {
  194. //e.printStackTrace();
  195. } catch (IOException e) {
  196. e.printStackTrace();
  197. }
  198. }
  199. try {
  200. if (serverSocket != null)
  201. serverSocket.close();
  202. } catch (IOException | NullPointerException e) {
  203. e.printStackTrace();
  204. }
  205. }
  206. return null;
  207. }
  208. }
  209. @SuppressLint("NewApi")
  210. private static class TCPConnection extends AsyncTask<Void, Void, Void> {
  211. private String ipAddress;
  212. private int port;
  213. private ConnectionCallback callback;
  214. private ContinuousTcpServiceImp continuousTcpServiceImp;
  215. public TCPConnection(String ipAddress, int port, ConnectionCallback callback, ContinuousTcpServiceImp continuousTcpServiceImp) {
  216. this.ipAddress = ipAddress;
  217. this.port = port;
  218. this.callback = callback;
  219. this.continuousTcpServiceImp = continuousTcpServiceImp;
  220. }
  221. protected Void doInBackground(Void... params) {
  222. try {
  223. continuousTcpServiceImp.setSocket(new Socket());
  224. continuousTcpServiceImp.getSocket().connect((new InetSocketAddress(InetAddress.getByName(ipAddress), port)), 5000);
  225. continuousTcpServiceImp.setInetAddress(continuousTcpServiceImp.getSocket().getInetAddress());
  226. final String hostName = continuousTcpServiceImp.getInetAddress().getHostName();
  227. final String hostAddress = continuousTcpServiceImp.getInetAddress().getHostAddress();
  228. continuousTcpServiceImp.setConnected(true);
  229. if (callback != null) {
  230. new Handler(Looper.getMainLooper()).post(new Runnable() {
  231. public void run() {
  232. callback.onConnected(hostName, hostAddress);
  233. }
  234. });
  235. }
  236. } catch (final UnknownHostException e) {
  237. if (callback != null) {
  238. new Handler(Looper.getMainLooper()).post(new Runnable() {
  239. public void run() {
  240. callback.onConnectionFailed(ipAddress, e);
  241. }
  242. });
  243. }
  244. } catch (final IOException e) {
  245. if (callback != null) {
  246. new Handler(Looper.getMainLooper()).post(new Runnable() {
  247. public void run() {
  248. callback.onConnectionFailed(ipAddress, e);
  249. }
  250. });
  251. }
  252. }
  253. return null;
  254. }
  255. }
  256. private static class TCPSend extends AsyncTask<Void, Void, Void> {
  257. private Socket socket;
  258. private String message;
  259. private String ipAddress;
  260. private SendCallback callback;
  261. public TCPSend(Socket socket, String message, String ipAddress, SendCallback callback) {
  262. this.socket = socket;
  263. this.message = message;
  264. this.ipAddress = ipAddress;
  265. this.callback = callback;
  266. }
  267. protected Void doInBackground(Void... params) {
  268. try {
  269. BufferedWriter bufferedWriter = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream()));
  270. bufferedWriter.write(message);
  271. bufferedWriter.flush();
  272. if (callback != null) {
  273. new Handler(Looper.getMainLooper()).post(new Runnable() {
  274. public void run() {
  275. callback.onSuccess(message, ipAddress);
  276. }
  277. });
  278. }
  279. } catch (final IOException exception) {
  280. if (callback != null) {
  281. new Handler(Looper.getMainLooper()).post(new Runnable() {
  282. public void run() {
  283. callback.onFailed(message, ipAddress, exception);
  284. }
  285. });
  286. }
  287. }
  288. return null;
  289. }
  290. }
  291. }