Rumpf-Konstrukt fuer Webapps
ulrich
2021-05-11 00c9b90a741b84760a50792485a871f6ca3bd333
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
  Proto - Ein Rumpf-Konstrukt fuer Webapps 
  Copyright (C) 2021  Ulrich Hilger
 
  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU Affero General Public License as
  published by the Free Software Foundation, either version 3 of the
  License, or (at your option) any later version.
 
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Affero General Public License for more details.
 
  You should have received a copy of the GNU Affero General Public License
  along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
package de.uhilger.proto;
 
import com.sun.net.httpserver.HttpServer;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.util.HashMap;
import java.util.ResourceBundle;
import java.util.concurrent.Executors;
import java.util.logging.Level;
import java.util.logging.Logger;
 
/**
 * Die Hauptklasse der Proto-App
 * 
 * Starten mit
 * java -jar proto.jar ctx=/proto www=./www port=8008 
 *  
 * @author Ulrich Hilger
 * @version 1, 11.5.2021
 */
public class App {
  
  /* Name des ResourceBundles dieser App */
  public static final String RB_NAME = "proto";
  
  public static final String RB_SERVER_START_MSG = "msgServerStart";
 
  public static final String API_SERVER_STOP = "/api/server/stop";
  public static final String STR_SLASH = "/";
  
  public static final String ARG_WWW = "www";
  public static final String ARG_CTX = "ctx";
  public static final String ARG_PORT = "port";
 
  /**
   * Parameter:
   * port=[portnr] (9123)
   * ctx=[context] (/proto)
   * www=[www-dir] ("./www")
   * 
   * @param args the command line arguments
   */
  public static void main(String[] args) {
    
    try {      
      ResourceBundle rb = ResourceBundle.getBundle(RB_NAME);
      HashMap<String,String> initParams = new HashMap();
      for (String arg : args) {
        String[] argParts = arg.split("=");
        initParams.put(argParts[0], argParts[1]);
      }
      Logger.getLogger(App.class.getName()).log(Level.INFO, rb.getString(RB_SERVER_START_MSG), initParams.get(ARG_PORT));
      
      String ctx = initParams.get(ARG_CTX);
      HttpServer server = HttpServer.create(new InetSocketAddress(Integer.parseInt(initParams.get(ARG_PORT))), 0);
      server.createContext(ctx + STR_SLASH, new FileHandler(initParams.get(ARG_WWW)));
      server.createContext(ctx + API_SERVER_STOP, new StopServerHandler());
      server.setExecutor(Executors.newCachedThreadPool());
      server.start();
    } catch (IOException ex) {
      Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
    }
  }
  
}