Persoenliche Mediazentrale
ulrich
2021-04-10 0e9cd39f81a9635dffd31e1d72229e6ca75d5f84
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  * 
30  * @author Ulrich Hilger
31  * @version 1, 25.3.2021
c3b1d1 32  */
U 33 public class App {
34
35   private static final Logger logger = Logger.getLogger(App.class.getName());
36
37   private static HashMap initParams;
2b6134 38   
U 39   /* ResourceBundle dieser App */
40   private static ResourceBundle rb;
41   
42   /* Name des ResourceBundles dieser App */
43   private static final String RB_NAME = "mediaz";
44   
45   /* ResourceBundle-Kennungen */
46   public static final String RB_PARAM_FEHLT = "msgParamFehlt";
47   public static final String RB_AP_PORT = "appParamPort";
48   public static final String RB_AP_CONF = "appParamConf";
49   public static final String RB_AP_WWW_DATA = "appParamWWWData"; 
50   public static final String RB_AP_CTX = "appParamCtx"; 
cfa858 51   public static final String RB_AP_UI = "appParamUi"; 
f45e20 52   public static final String RB_EP_LISTE = "epliste"; 
0e9cd3 53   public static final String RB_AUDIOEXTS = "audioexts";
U 54   public static final String RB_VIDEOEXTS = "videoexts";
55   public static final String RB_PLAYERPARAMS = "playerparams";
c3b1d1 56
U 57   /**
58    * <p>Start-Methode dieser Anwendung</p>
59    *
60    * @param args Kommandozeilenparameter
0e9cd3 61    * @throws java.lang.ClassNotFoundException
c3b1d1 62    */
b379f5 63   public static void main(String[] args) throws ClassNotFoundException {
2b6134 64     rb = ResourceBundle.getBundle(RB_NAME);
b29119 65     logger.fine(new File(".").getAbsolutePath());
043915 66     
c3b1d1 67     initParams = new HashMap();
U 68     for (String arg : args) {
69       String[] argParts = arg.split("=");
70       initParams.put(argParts[0], argParts[1]);
71     }
72
2b6134 73     String portStr = getInitParameter(getRs(RB_AP_PORT));
c3b1d1 74     if (portStr != null) {
U 75       Server server = new Server(Integer.parseInt(portStr));
76       try {
2b6134 77         String ctxName = getInitParameter(getRs(RB_AP_CTX));
c3b1d1 78         if (ctxName != null) {
U 79           server.setContextName(ctxName);
80           server.start();
81         } else {
2b6134 82           logger.log(Level.INFO, getRs(RB_PARAM_FEHLT), getRs(RB_AP_CTX));
c3b1d1 83         }
2b6134 84         String conf = getInitParameter(getRs(RB_AP_CONF));
043915 85         if(conf != null) {
U 86           File confDir = new File(conf);
87           confDir.mkdirs();
88         } else {
2b6134 89           logger.log(Level.INFO, App.getRs(RB_PARAM_FEHLT), getRs(RB_AP_CONF));
043915 90         }
c3b1d1 91       } catch (IOException ex) {
2b6134 92         logger.log(Level.SEVERE, null, ex);
c3b1d1 93       }
U 94     } else {
2b6134 95       logger.log(Level.INFO, App.getRs(RB_PARAM_FEHLT), getRs(RB_AP_PORT));
c3b1d1 96     }
U 97   }
98
99   /**
100    * Diese Anwendung stoppen
101    */
102   public static void stop() {
103     System.exit(0);
104   }
105
106   /**
107    * Einen Kommandozeilenparameter ermitteln
108    *
109    * @param pname Names des Parameters
110    * @return Inhalt des Parameters oder null, wenn der Parameter nicht gefunden
111    * wurde
112    */
113   public static String getInitParameter(String pname) {
114     String param = null;
115     Object o = initParams.get(pname);
116     if (o != null) {
117       param = o.toString();
118     }
119     return param;
120   }
2b6134 121   
U 122   public static String getRs(String key) {
123     return rb.getString(key);
124   }
c3b1d1 125
U 126 }