App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
ulrich
2021-03-23 852f209e38278342948786f576c5a7a620a0d564
src/de/uhilger/avdirektor/handler/CmdHandler.java
@@ -16,10 +16,39 @@
  private static final Logger logger = Logger.getLogger(CmdHandler.class.getName());
  
  private String cmd;
  protected String cmd;
  protected Map map;
  
  public CmdHandler(String cmd) {
    this.cmd = cmd;
  }
  @Override
  public void handle(HttpExchange t) throws IOException {
    logger.log(Level.FINE, "RequestURI: {0}", t.getRequestURI().toString());
    StringBuilder params = buildParams(t);
    String antwort = process(t, params.toString());
    sendResponse(t, cmd, antwort);
  }
  protected String process(HttpExchange t, String params) {
    String antwort = this.kommando(cmd);
    logger.log(Level.FINE, antwort);
    return antwort;
  }
  protected StringBuilder buildParams(HttpExchange t) {
    map = getQueryMap(t);
    StringBuilder params = new StringBuilder();
    return params;
  }
  protected void sendResponse(HttpExchange t, String cmd, String antwort) throws IOException {
    String response = getResponseString(map, cmd, antwort);
    t.sendResponseHeaders(200, response.length());
    OutputStream os = t.getResponseBody();
    os.write(response.getBytes());
    os.close();
  }
  
  public void setCmd(String cmd) {
@@ -30,19 +59,4 @@
    return this.cmd;
  }
  @Override
  public void handle(HttpExchange t) throws IOException {
    logger.log(Level.FINE, "RequestURI: {0}", t.getRequestURI().toString());
    Map map = getQueryMap(t);
    String antwort = this.kommando(cmd);
    logger.log(Level.FINE, antwort);
    String response = getResponseString(map, cmd, antwort);
    t.sendResponseHeaders(200, response.length());
    OutputStream os = t.getResponseBody();
    os.write(response.getBytes());
    os.close();
  }
}