alexarcan

client.java

May 26th, 2016
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.38 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package fxmlimageborderpane;
  7.  
  8. import java.awt.TrayIcon.MessageType;
  9. import java.awt.image.BufferedImage;
  10. import java.awt.image.DataBufferByte;
  11. import java.io.BufferedOutputStream;
  12. import java.io.BufferedReader;
  13. import java.io.ByteArrayOutputStream;
  14. import java.io.DataOutputStream;
  15. import java.io.File;
  16. import java.io.FileOutputStream;
  17. import java.io.FileReader;
  18. import java.io.IOException;
  19. import java.io.InputStream;
  20. import java.io.InputStreamReader;
  21. import java.io.PrintWriter;
  22. import java.net.Socket;
  23. import java.rmi.server.Operation;
  24. import java.util.ArrayList;
  25. import java.util.logging.Level;
  26. import java.util.logging.Logger;
  27. import javafx.scene.image.Image;
  28. import javax.imageio.ImageIO;
  29. import javax.net.ssl.SSLEngineResult.Status;
  30. //import org.json.simple.JSONObject;
  31. //import org.json.simple.parser.JSONParser;
  32. //import org.json.simple.parser.ParseException;
  33.  
  34. /**
  35. *
  36. * @author ArteneR
  37. */
  38. public class Client {
  39.  
  40. private static final String JSON_FILES_PATH = "json/";
  41. private static int PORT = 5012;
  42. private static String SERVER = "raspberrypi.local";//IP-ul PI0ului
  43. private Socket clientSocket;
  44. private static PrintWriter outToServer;
  45. private static BufferedReader inFromServer;
  46. private static InputStream is;
  47. private static DataOutputStream os;
  48. private BufferedReader inFromUser;
  49. private String messageToSend;
  50. private String messageReceived;
  51. private static String username = "picture";
  52. private static String userID;
  53. private static String status;
  54. private static Image userPhoto;
  55. private static final int BUFFER_SIZE = 10240;
  56.  
  57. public Client() {
  58. // JSONParser parser = new JSONParser();
  59. try {
  60. // Object obj = parser.parse(new FileReader(JSON_FILES_PATH + "config.json"));
  61. // JSONObject jsonObject = (JSONObject) obj;
  62.  
  63. System.out.println("Port: " + PORT + "\nServer: " + SERVER);
  64.  
  65. System.out.println("Creating new Client...");
  66. clientSocket = new Socket(SERVER, PORT);
  67.  
  68. inFromServer = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
  69. outToServer = new PrintWriter(clientSocket.getOutputStream(), true);
  70. is = clientSocket.getInputStream();
  71. os = new DataOutputStream(clientSocket.getOutputStream());
  72.  
  73.  
  74. } catch (IOException ex) {
  75. Logger.getLogger(Client.class.getName()).log(Level.SEVERE, null, ex);
  76. }
  77. }
  78.  
  79. /**
  80. * messageType: can be: MESSAGE - regular message CLOSE_CONNECTION - message
  81. * for closing connection message: is the actual message to be sent
  82. * receiver: the username of the message receiver OR the name of the
  83. * conference
  84. *
  85. */
  86. public static void sendQuery(String messageType, String operation, String params) throws IOException {
  87. System.out.println(messageType + ":" + operation + ":" + params);
  88. outToServer.println(messageType + ":" + operation + ":" + params);
  89. System.out.println("Query message sent!");
  90. }
  91. public static String waitForResponse() throws IOException {//astept ceva de la server
  92. System.out.println("waiting..");
  93. String response = inFromServer.readLine();
  94. System.out.println("Response from server: " + response);
  95. return response;
  96. }
  97. //de masurat pe server: timpul de procesare a imaginii(clock cycles) si memory footprint
  98. public static byte[] waitForFileBytes() throws IOException, InterruptedException {
  99. byte[] allReceivedBytes = new byte[0];
  100. byte[] readBytes = new byte[BUFFER_SIZE];
  101. byte[] enlargedAllReceivedBytes;
  102.  
  103. FileOutputStream fos = new FileOutputStream(username + ".png");
  104. BufferedOutputStream bos = new BufferedOutputStream(fos);
  105.  
  106. int bytesRead;
  107. int totalBytes = 0;
  108. while ((bytesRead = is.read(readBytes, 0, readBytes.length)) > 0) {
  109. String message = new String(readBytes, "UTF-8");
  110. if (message.contains(":")) {
  111. String messageType = message.substring(0, message.indexOf(":"));
  112. if (messageType.equals("RESPONSE_SUCCESS")) {
  113. break;
  114. }
  115. }
  116. enlargedAllReceivedBytes = new byte[allReceivedBytes.length + BUFFER_SIZE];
  117. for (int i = 0; i < allReceivedBytes.length; i++) {
  118. enlargedAllReceivedBytes[i] = allReceivedBytes[i];
  119. }
  120. for (int i = 0, j = allReceivedBytes.length; j < enlargedAllReceivedBytes.length; i++, j++) {
  121. enlargedAllReceivedBytes[j] = readBytes[i];
  122. }
  123. allReceivedBytes = new byte[allReceivedBytes.length + BUFFER_SIZE];
  124. System.arraycopy(enlargedAllReceivedBytes, 0, allReceivedBytes, 0, enlargedAllReceivedBytes.length);
  125.  
  126. totalBytes += bytesRead;
  127. readBytes = new byte[BUFFER_SIZE];
  128. outToServer.println("ACKNOWLEDGE" + ":" + Status.OK);
  129. }
  130. bos.write(allReceivedBytes, 0, totalBytes);
  131. bos.flush();
  132. fos.close();
  133.  
  134. return allReceivedBytes;
  135. }
  136.  
  137. }
Add Comment
Please, Sign In to add comment