Persoenliche Mediazentrale
ulrich
2021-04-16 849ee289c2a0561b709f92f8cbbda00415c6caba
commit | author | age
c3b1d1 1 /*
043915 2   Mediazentrale - Personal Media Center
U 3   Copyright (C) 2021  Ulrich Hilger
4
5   This program is free software: you can redistribute it and/or modify
6   it under the terms of the GNU Affero General Public License as
7   published by the Free Software Foundation, either version 3 of the
8   License, or (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU Affero General Public License for more details.
14
15   You should have received a copy of the GNU Affero General Public License
16   along with this program.  If not, see <https://www.gnu.org/licenses/>.
c3b1d1 17  */
U 18 package de.uhilger.mediaz;
19
043915 20 import java.io.File;
c3b1d1 21 import java.io.IOException;
U 22 import java.util.HashMap;
2b6134 23 import java.util.ResourceBundle;
c3b1d1 24 import java.util.logging.Level;
U 25 import java.util.logging.Logger;
26
27 /**
0e9cd3 28  * Die Hauptklasse der Mediazentrale mit der Methode <code>main</code>.
U 29  * 
f64984 30  * 
U 31  * args
32  * ctx=mz port=9090 conf=conf www-data=www
33  * 
34  * -Djava.util.logging.config.file=/pfad/zu/logging.properties
35  * 
0e9cd3 36  * @author Ulrich Hilger
U 37  * @version 1, 25.3.2021
c3b1d1 38  */
U 39 public class App {
40
41   private static final Logger logger = Logger.getLogger(App.class.getName());
42
43   private static HashMap initParams;
2b6134 44   
U 45   /* ResourceBundle dieser App */
46   private static ResourceBundle rb;
47   
48   /* Name des ResourceBundles dieser App */
49   private static final String RB_NAME = "mediaz";
50   
51   /* ResourceBundle-Kennungen */
52   public static final String RB_PARAM_FEHLT = "msgParamFehlt";
53   public static final String RB_AP_PORT = "appParamPort";
54   public static final String RB_AP_CONF = "appParamConf";
55   public static final String RB_AP_WWW_DATA = "appParamWWWData"; 
56   public static final String RB_AP_CTX = "appParamCtx"; 
cfa858 57   public static final String RB_AP_UI = "appParamUi"; 
f45e20 58   public static final String RB_EP_LISTE = "epliste"; 
0e9cd3 59   public static final String RB_AUDIOEXTS = "audioexts";
U 60   public static final String RB_VIDEOEXTS = "videoexts";
61   public static final String RB_PLAYERPARAMS = "playerparams";
005d7a 62   public static final String RB_HOST = "host";
c3b1d1 63
U 64   /**
65    * <p>Start-Methode dieser Anwendung</p>
66    *
67    * @param args Kommandozeilenparameter
0e9cd3 68    * @throws java.lang.ClassNotFoundException
c3b1d1 69    */
b379f5 70   public static void main(String[] args) throws ClassNotFoundException {
2b6134 71     rb = ResourceBundle.getBundle(RB_NAME);
b29119 72     logger.fine(new File(".").getAbsolutePath());
043915 73     
c3b1d1 74     initParams = new HashMap();
U 75     for (String arg : args) {
76       String[] argParts = arg.split("=");
77       initParams.put(argParts[0], argParts[1]);
78     }
79
2b6134 80     String portStr = getInitParameter(getRs(RB_AP_PORT));
c3b1d1 81     if (portStr != null) {
U 82       Server server = new Server(Integer.parseInt(portStr));
83       try {
2b6134 84         String ctxName = getInitParameter(getRs(RB_AP_CTX));
c3b1d1 85         if (ctxName != null) {
U 86           server.setContextName(ctxName);
87           server.start();
88         } else {
2b6134 89           logger.log(Level.INFO, getRs(RB_PARAM_FEHLT), getRs(RB_AP_CTX));
c3b1d1 90         }
2b6134 91         String conf = getInitParameter(getRs(RB_AP_CONF));
043915 92         if(conf != null) {
U 93           File confDir = new File(conf);
94           confDir.mkdirs();
95         } else {
2b6134 96           logger.log(Level.INFO, App.getRs(RB_PARAM_FEHLT), getRs(RB_AP_CONF));
043915 97         }
c3b1d1 98       } catch (IOException ex) {
2b6134 99         logger.log(Level.SEVERE, null, ex);
c3b1d1 100       }
U 101     } else {
2b6134 102       logger.log(Level.INFO, App.getRs(RB_PARAM_FEHLT), getRs(RB_AP_PORT));
c3b1d1 103     }
U 104   }
105
106   /**
107    * Diese Anwendung stoppen
108    */
109   public static void stop() {
110     System.exit(0);
111   }
112
113   /**
114    * Einen Kommandozeilenparameter ermitteln
115    *
116    * @param pname Names des Parameters
117    * @return Inhalt des Parameters oder null, wenn der Parameter nicht gefunden
118    * wurde
119    */
120   public static String getInitParameter(String pname) {
121     String param = null;
122     Object o = initParams.get(pname);
123     if (o != null) {
124       param = o.toString();
125     }
126     return param;
127   }
2b6134 128   
U 129   public static String getRs(String key) {
130     return rb.getString(key);
131   }
c3b1d1 132
U 133 }