App zur Steuerung des mpv Mediaplayers auf einem Raspberry Pi über HTTP
undisclosed
2023-01-02 aaed2d146028ba1488a7ba7c7e924192b9df8394
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
    Calypso - Media Player Remote Control via HTTP for Raspberry Pi
    Copyright (C) 2021-2023  Ulrich Hilger
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as
    published by the Free Software Foundation, either version 3 of the
    License, or (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.
 
    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
*/
 
package de.uhilger.calypso;
 
import de.uhilger.calypso.handler.OMXPlayer;
import de.uhilger.calypso.handler.Player;
import de.uhilger.calypso.handler.VLCPlayer;
import java.io.IOException;
import java.util.HashMap;
import java.util.logging.Level;
import java.util.logging.Logger;
 
/**
 * Hauptklasse von Calypso
 * 
 * Aufruf mit<br>
 * java -jar calypso.jar port=9000 ctx="/calypso"<br>
 * java -jar calypso.jar nfs-prefix="/media/mc" port=9000<br>
 * java -Djava.util.logging.config.file=logging.properties -jar ..<br>
 * 
 * Der Parameter nfs-prefix bewirkt, dass beim Abspielen relative Pfade 
 * mit diesem Praefix verbunden werden und setzt voraus, dass auf der 
 * Maschine ein NFS-Mount ueber /etc/fstab eingerichtet ist.<br>
 * <br>
 * Anmerkung anlaesslich der Aenderung auf VLC (2.1.2023):<br>
 * Mit Calypso wurde erstmals jdk.httpserver anstelle von Tomcat 
 * einsetzt. Es war in diesem Punkt noch ein Laborversuch und sollte 
 * unter Wiederverwendung der wesentlichen Teile bei Gelegenheit 
 * neu gebaut werden.
 * 
 * @author Ulrich Hilger
 * @version 0.2 vom 2.1.2023, 0.1 vom 20.03.2021 als Nachfolger von Pirc (02.2013-03.2021)
 */
public class App {
  
  private static final Logger logger = Logger.getLogger(App.class.getName());
  
  public static final String IP_PORT = "port";
  public static final String IP_WWW_DATA = "www-data";
  public static final String IP_NFS_PREFIX = "nfs-prefix";
  public static final String IP_PLAYER = "player";
  public static final String VLC_PLAYER = "vlc";
  public static final String OMX_PLAYER = "omx";
  public static final String OMX_WD = "omx.wd";
  public static final String CTX = "ctx";
  
  public static final String DEFAULT_CTX = "/calypso";
  
  private static HashMap initParams;  
  private static Process playerproc;
  private static Player player;
  
  /**
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    initParams = new HashMap();
    for(String arg: args) {
      String[] argParts = arg.split("=");
      initParams.put(argParts[0], argParts[1]);
    }
        
    String playerType = getInitParameter(IP_PLAYER);
    switch(playerType) {
      case VLC_PLAYER:
        player = new VLCPlayer();
        break;
      case OMX_PLAYER:
        player = new OMXPlayer();
        break;
    }
    Server server = new Server(Integer.parseInt(getInitParameter(IP_PORT)));
    String ctx = getInitParameter(CTX);
    if(ctx != null && ctx.length() > 0) {
      server.setContextName(ctx);    
    } else {
      server.setContextName(DEFAULT_CTX);
    }
    try {
      server.start(playerType);
    } catch (IOException ex) {
      Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }
  }
  
  public static void stop() {
    System.exit(0);
  }
  
  public static String getInitParameter(String pname) {
    String param = null;
    Object o = initParams.get(pname);
    if(o != null) {
      param = o.toString();
    }
    return param;
  } 
  
  public static Process getPlayerProcess() {
    return playerproc;
  }
  
  public static void setPlayerProcess(Process p) {
    playerproc = p;
  }
  
  public static Player getPlayer() {
    return player;
  }
 
  public static void setPlayer(Player pl) {
    player = pl;
  }
  
  
  
}