Persoenliche Mediazentrale
ulrich
2021-04-04 d86ba2949e2d7be238e3a6ea8620872fb526d66a
commit | author | age
c3b1d1 1 /*
043915 2   Mediazentrale - Personal Media Center
c3b1d1 3   Copyright (C) 2021  Ulrich Hilger
U 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/>.
043915 17  */
c3b1d1 18 package de.uhilger.mediaz;
U 19
20 import com.sun.net.httpserver.HttpServer;
d86ba2 21 import de.uhilger.mediaz.api.AblageTestHandler;
2b6134 22 import de.uhilger.mediaz.api.FileHandler;
U 23 import de.uhilger.mediaz.api.StopServerHandler;
d86ba2 24 import de.uhilger.mediaz.api.StoreTestHandler;
c3b1d1 25 import java.io.IOException;
U 26 import java.util.logging.Logger;
27 import java.net.InetSocketAddress;
28 import java.util.concurrent.Executors;
2b6134 29 import java.util.logging.Level;
c3b1d1 30
U 31 /**
32  * Die Klasse Server stellt Methoden zur Ausf&uuml;hrung eines 
33  * HTTP-Servers bereit
34  * 
35  * @author Ulrich Hilger
36  * @version 0.1, 25.03.2021
37  */
38 public class Server {
39   
40   private static final Logger logger = Logger.getLogger(Server.class.getName());
41   
2b6134 42   public static final String RB_SERVER_START_MSG = "msgServerStart";
U 43   public static final String RB_WEBROOT = "webroot";
44   public static final String RB_STOP_SERVER = "stopServer";
d86ba2 45   public static final String RB_ABLAGE_TEST = "testAblage";
U 46   public static final String RB_STORE_TEST = "testStore";
2b6134 47   public static final String RB_SLASH = "slash";
c3b1d1 48   
U 49   private int port;
50   
51   private String ctx;
52   
53   /**
54    * Ein neues Objekt der Kalsse Server erzeugen
55    * @param port  der Port, &uuml;ber den dieser Server erreichbar sein soll
56    */
57   public Server(int port) {
58     this.port = port;
59   }
60   
61   /**
62    * Den Port angeben, unter dem der Server erreichbar sein soll
63    * 
64    * @param port der Port, unter dem der Server erreichbar sein soll
65    */
66   public void setPort(int port) {
67     this.port = port;
68   }
69   
70   /**
71    * Den Namen des Kontexts angeben, &uuml;ber den dieser Server 
72    * erreichbar sein soll
73    * @param ctxName Name des Kontexts, unter dem der Server aufrufbar sein soll
74    */
75   public void setContextName(String ctxName) {
2b6134 76     String slash = App.getRs(RB_SLASH);
U 77     if(!ctxName.startsWith(slash)) {
78       this.ctx = slash + ctxName;
c3b1d1 79     } else {
U 80       this.ctx = ctxName;
81     }
82   }
83   
84   /**
85    * Die Endpunkte ('Context'e) einrichten, unter denen die Dienste 
86    * dieses Servers erreichbar sein sollen und den Server starten
87    * 
88    * @throws IOException wenn etwas schief geht, finden sich Angaben 
89    * in diesem Objekt 
90    */
91   public void start() throws IOException {
2b6134 92     logger.log(Level.INFO, App.getRs(RB_SERVER_START_MSG), Integer.toString(port));
c3b1d1 93
U 94     HttpServer server = HttpServer.create(new InetSocketAddress(port), 0);
2b6134 95     server.createContext(ctx + App.getRs(RB_WEBROOT), new FileHandler(App.getInitParameter(App.getRs(App.RB_AP_WWW_DATA))));
U 96     server.createContext(ctx + App.getRs(RB_STOP_SERVER), new StopServerHandler());
d86ba2 97     server.createContext(ctx + App.getRs(RB_ABLAGE_TEST), new AblageTestHandler());
U 98     server.createContext(ctx + App.getRs(RB_STORE_TEST), new StoreTestHandler());
c3b1d1 99     server.setExecutor(Executors.newFixedThreadPool(20));
U 100     server.start();
101   }
102
103 }