Persoenliche Mediazentrale
ulrich
2021-04-05 081606e391a352d8117210d731d252dfb43c4b84
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;
081606 24 import de.uhilger.mediaz.api.StorageHandler;
d86ba2 25 import de.uhilger.mediaz.api.StoreTestHandler;
081606 26 import de.uhilger.mediaz.store.FileStorage;
b379f5 27 import de.uhilger.mediaz.entity.Ablageort;
cfa858 28 import java.io.File;
c3b1d1 29 import java.io.IOException;
U 30 import java.util.logging.Logger;
31 import java.net.InetSocketAddress;
32 import java.util.concurrent.Executors;
2b6134 33 import java.util.logging.Level;
081606 34 import de.uhilger.mediaz.entity.Entity;
U 35 import java.util.Iterator;
36 import java.util.List;
c3b1d1 37
U 38 /**
b379f5 39  * Die Klasse Server stellt Methoden zur Ausf&uuml;hrung eines HTTP-Servers
U 40  * bereit
41  *
c3b1d1 42  * @author Ulrich Hilger
U 43  * @version 0.1, 25.03.2021
44  */
45 public class Server {
b379f5 46
c3b1d1 47   private static final Logger logger = Logger.getLogger(Server.class.getName());
b379f5 48
2b6134 49   public static final String RB_SERVER_START_MSG = "msgServerStart";
U 50   public static final String RB_WEBROOT = "webroot";
b379f5 51   public static final String RB_STORE = "store";
14baa3 52   //public static final String RB_UI_ROOT = "uiroot";
2b6134 53   public static final String RB_STOP_SERVER = "stopServer";
d86ba2 54   public static final String RB_ABLAGE_TEST = "testAblage";
U 55   public static final String RB_STORE_TEST = "testStore";
2b6134 56   public static final String RB_SLASH = "slash";
b379f5 57
c3b1d1 58   private int port;
b379f5 59
c3b1d1 60   private String ctx;
b379f5 61
c3b1d1 62   /**
U 63    * Ein neues Objekt der Kalsse Server erzeugen
b379f5 64    *
U 65    * @param port der Port, &uuml;ber den dieser Server erreichbar sein soll
c3b1d1 66    */
U 67   public Server(int port) {
68     this.port = port;
69   }
b379f5 70
c3b1d1 71   /**
U 72    * Den Port angeben, unter dem der Server erreichbar sein soll
b379f5 73    *
c3b1d1 74    * @param port der Port, unter dem der Server erreichbar sein soll
U 75    */
76   public void setPort(int port) {
77     this.port = port;
78   }
b379f5 79
c3b1d1 80   /**
b379f5 81    * Den Namen des Kontexts angeben, &uuml;ber den dieser Server erreichbar sein
U 82    * soll
83    *
c3b1d1 84    * @param ctxName Name des Kontexts, unter dem der Server aufrufbar sein soll
U 85    */
86   public void setContextName(String ctxName) {
2b6134 87     String slash = App.getRs(RB_SLASH);
b379f5 88     if (!ctxName.startsWith(slash)) {
2b6134 89       this.ctx = slash + ctxName;
c3b1d1 90     } else {
U 91       this.ctx = ctxName;
92     }
93   }
b379f5 94
c3b1d1 95   /**
b379f5 96    * Die Endpunkte ('Context'e) einrichten, unter denen die Dienste dieses
U 97    * Servers erreichbar sein sollen und den Server starten
98    *
99    * @throws IOException wenn etwas schief geht, finden sich Angaben in diesem
100    * Objekt
101    * @throws java.lang.ClassNotFoundException
c3b1d1 102    */
b379f5 103   public void start() throws IOException, ClassNotFoundException {
2b6134 104     logger.log(Level.INFO, App.getRs(RB_SERVER_START_MSG), Integer.toString(port));
b379f5 105
14baa3 106     String wwwData = App.getInitParameter(App.getRs(App.RB_AP_WWW_DATA));
U 107     File wwwDir = new File(wwwData);
108     //String ui = App.getInitParameter(App.getRs(App.RB_AP_UI));
109     //File uiDir = new File(ui);
c3b1d1 110
U 111     HttpServer server = HttpServer.create(new InetSocketAddress(port), 0);
b379f5 112     server.createContext(ctx + App.getRs(RB_WEBROOT), 
U 113             new FileHandler(wwwDir.getAbsolutePath()));
114     ablageorteEinklinken(server);
081606 115     server.createContext(ctx + App.getRs(RB_STORE), new StorageHandler());
14baa3 116     //server.createContext(ctx + App.getRs(RB_UI_ROOT), new FileHandler(uiDir.getAbsolutePath()));    
2b6134 117     server.createContext(ctx + App.getRs(RB_STOP_SERVER), new StopServerHandler());
d86ba2 118     server.createContext(ctx + App.getRs(RB_ABLAGE_TEST), new AblageTestHandler());
U 119     server.createContext(ctx + App.getRs(RB_STORE_TEST), new StoreTestHandler());
c3b1d1 120     server.setExecutor(Executors.newFixedThreadPool(20));
U 121     server.start();
122   }
123
b379f5 124   private void ablageorteEinklinken(HttpServer server) throws ClassNotFoundException, IOException {
081606 125     String typ = Ablageort.class.getSimpleName();
U 126     FileStorage store = new FileStorage(App.getInitParameter(App.getRs(App.RB_AP_CONF)));
127     List<String> orte = store.list(typ);
128     Iterator<String> i = orte.iterator();
129     while(i.hasNext()) {
130       String ortName = i.next();
131       Entity e = store.read(typ, ortName);
132       if(e instanceof Ablageort) {
133         Ablageort ort = (Ablageort) e; 
134           Ablageort ablageort = (Ablageort) e;
135           server.createContext(ctx + ablageort.getUrl(), 
136                   new FileHandler(new File(ablageort.getOrt()).getAbsolutePath()));
137       }
138     }
139     
140     /*
b379f5 141     String conf = App.getInitParameter(App.getRs(App.RB_AP_CONF));
U 142     File ablageortDir = new File(conf, Ablageort.class.getSimpleName());
143     File[] orte = ablageortDir.listFiles();
144     if (orte != null) {
145       for (File ort : orte) {
081606 146         Entity elem = store.readFromFile(ort);
b379f5 147         if (elem instanceof Ablageort) {
U 148           Ablageort ablageort = (Ablageort) elem;
149           server.createContext(ctx + ablageort.getUrl(), 
150                   new FileHandler(new File(ablageort.getOrt()).getAbsolutePath()));
151         }
152       }
153     }
081606 154     */
b379f5 155   }
U 156
c3b1d1 157 }