App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
undisclosed
2022-12-31 b16b544a3982da609564491ac207e74c0e121c25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
package de.uhilger.calypso.handler;
 
import com.sun.net.httpserver.HttpExchange;
import de.uhilger.calypso.App;
import de.uhilger.calypso.OMXLogLeser;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import static java.nio.file.StandardCopyOption.REPLACE_EXISTING;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.Level;
import java.util.logging.Logger;
 
/**
 * z.B.
 * http://rpi4-az:9090/avd/playon?th=1&ti=240&o=local&log=true&titel=http://amd-srv:9090/srv/Filme/C/casino_royale.m4v
 *
 * @author ulrich
 */
public class PlayOnHandler extends PlayHandler {
 
  private static final Logger logger = Logger.getLogger(PlayOnHandler.class.getName());
  
  public static final String LOG_DIR = "omx-logs";
  public static final String LOG_EXT = "log";
  public static final String DASH = "-";
  public static final String DOT = ".";
 
  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");
 
  public PlayOnHandler(String cmd) {
    super(cmd);
  }
 
  /*
    1. buildParams
    2. process
   */
  @Override
  protected StringBuilder buildParams(HttpExchange t) {
    File logDir = logSichern();
    StringBuilder params = super.buildParams(t);
    params.append(" --pos ");
    try {
      params.append(dauerBestimmen(logDir));
    } catch (IOException | ParseException ex) {
      logger.log(Level.SEVERE, null, ex);
    }
    return params;
  }
  
  private File logSichern() {
    String wd = System.getProperty(App.OMX_WD);
    File zielOrdner = new File(wd, LOG_DIR);
    try {
      // omxplayer.log umbenennen
      FileSystem fs = FileSystems.getDefault();
      Path logDatei = fs.getPath(wd, OMXPlayer.NAME + DOT + LOG_EXT);
      Date now = new Date();
      String neuerName = OMXPlayer.NAME + DASH + sdf.format(now) + DOT + LOG_EXT;
      Files.move(logDatei, logDatei.resolveSibling(neuerName));
 
      // Unterverzeichnis ggf. erzeugen
      zielOrdner.mkdirs();
 
      // omxplayer-datum.log verschieben
      Path quellDatei = fs.getPath(wd, neuerName);
      Path zielPfad = fs.getPath(wd, LOG_DIR);
      Files.move(quellDatei, zielPfad.resolve(quellDatei.getFileName()), REPLACE_EXISTING);
    } catch (IOException ex) {
      logger.log(Level.SEVERE, null, ex);
    }
    return zielOrdner;
  }
 
  private String dauerBestimmen(File logDir) throws IOException, FileNotFoundException, ParseException {
    OMXLogLeser leser = new OMXLogLeser();
    return leser.logDirLesen(logDir);
  }
 
}