Persoenliche Mediazentrale
ulrich
2021-04-03 0439151a901ba6f51b06ab1b797889be9bf36076
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;
23 import java.util.logging.Level;
24 import java.util.logging.Logger;
25
26 /**
27  *
28  * @author ulrich
29  */
30 public class App {
31
32   private static final Logger logger = Logger.getLogger(App.class.getName());
33
34   public static final String IP_PORT = "port";
35   public static final String IP_WWW_DATA = "www-data";
36   public static final String IP_CTX = "ctx";
043915 37   public static final String IP_CONF = "conf";
c3b1d1 38
U 39   private static HashMap initParams;
40
41   /**
42    * <p>Start-Methode dieser Anwendung</p>
43    *
44    * @param args Kommandozeilenparameter
45    */
46   public static void main(String[] args) {
043915 47     
U 48     logger.info(new File(".").getAbsolutePath());
49     
c3b1d1 50     initParams = new HashMap();
U 51     for (String arg : args) {
52       String[] argParts = arg.split("=");
53       initParams.put(argParts[0], argParts[1]);
54     }
55
56     String portStr = getInitParameter(IP_PORT);
57     if (portStr != null) {
58       Server server = new Server(Integer.parseInt(portStr));
59       try {
60         String ctxName = getInitParameter(IP_CTX);
61         if (ctxName != null) {
62           server.setContextName(ctxName);
63           server.start();
64         } else {
65           logger.severe("Der Parameter " + IP_CTX + " muss angegeben werden.");
66         }
043915 67         String conf = getInitParameter(IP_CONF);
U 68         if(conf != null) {
69           File confDir = new File(conf);
70           confDir.mkdirs();
71         } else {
72           
73         }
c3b1d1 74       } catch (IOException ex) {
U 75         Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
76       }
77     } else {
78       logger.severe("Der Parameter " + IP_PORT + " muss angegeben werden.");
79     }
80   }
81
82   /**
83    * Diese Anwendung stoppen
84    */
85   public static void stop() {
86     System.exit(0);
87   }
88
89   /**
90    * Einen Kommandozeilenparameter ermitteln
91    *
92    * @param pname Names des Parameters
93    * @return Inhalt des Parameters oder null, wenn der Parameter nicht gefunden
94    * wurde
95    */
96   public static String getInitParameter(String pname) {
97     String param = null;
98     Object o = initParams.get(pname);
99     if (o != null) {
100       param = o.toString();
101     }
102     return param;
103   }
104
105 }