/src/vogar/monitor/TargetMonitor.java

http://vogar.googlecode.com/ · Java · 95 lines · 61 code · 15 blank · 19 comment · 2 complexity · 478578fd59beadf1efe0fb21e9626892 MD5 · raw file

  1. /*
  2. * Copyright (C) 2010 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package vogar.monitor;
  17. import com.google.caliper.internal.gson.Gson;
  18. import com.google.caliper.internal.gson.JsonObject;
  19. import java.io.IOException;
  20. import java.io.PrintStream;
  21. import java.net.ServerSocket;
  22. import java.net.Socket;
  23. import vogar.Result;
  24. import vogar.target.Runner;
  25. /**
  26. * Accepts a connection from the host process. Once connected, XML is sent over
  27. * raw sockets.
  28. */
  29. public class TargetMonitor {
  30. private static final int ACCEPT_TIMEOUT_MILLIS = 10 * 1000;
  31. private final Gson gson = new Gson();
  32. private final String marker = "//00xx";
  33. private final PrintStream writer;
  34. private TargetMonitor(PrintStream writer) {
  35. this.writer = writer;
  36. }
  37. public static TargetMonitor forPrintStream(PrintStream printStream) {
  38. return new TargetMonitor(printStream);
  39. }
  40. public static TargetMonitor await(int port) {
  41. try {
  42. final ServerSocket serverSocket = new ServerSocket(port);
  43. serverSocket.setSoTimeout(ACCEPT_TIMEOUT_MILLIS);
  44. serverSocket.setReuseAddress(true);
  45. final Socket socket = serverSocket.accept();
  46. return new TargetMonitor(new PrintStream(socket.getOutputStream())) {
  47. @Override public void close() throws IOException {
  48. socket.close();
  49. serverSocket.close();
  50. }
  51. };
  52. } catch (IOException e) {
  53. throw new RuntimeException("Failed to accept a monitor on localhost:" + port, e);
  54. }
  55. }
  56. public void outcomeStarted(Runner runner, String outcomeName, String actionName) {
  57. JsonObject jsonObject = new JsonObject();
  58. jsonObject.addProperty("outcome", outcomeName);
  59. if (runner != null) {
  60. jsonObject.addProperty("runner", runner.getClass().getName());
  61. }
  62. writer.print(marker + gson.toJson(jsonObject) + "\n");
  63. }
  64. public void output(String text) {
  65. writer.print(text);
  66. }
  67. public void outcomeFinished(Result result) {
  68. JsonObject jsonObject = new JsonObject();
  69. jsonObject.addProperty("result", result.name());
  70. writer.print(marker + gson.toJson(jsonObject) + "\n");
  71. }
  72. public synchronized void close() throws IOException {
  73. writer.close();
  74. }
  75. public void completedNormally(boolean completedNormally) {
  76. JsonObject jsonObject = new JsonObject();
  77. jsonObject.addProperty("completedNormally", completedNormally);
  78. writer.print(marker + gson.toJson(jsonObject) + "\n");
  79. }
  80. }