001: /*
002: * Server.java
003: *
004: *
005: * Copyright (c) 2003 Rimfaxe ApS (www.rimfaxe.com).
006: * All rights reserved.
007: *
008: * This package is written by Lars Andersen <lars@rimfaxe.com>
009: * and licensed by Rimfaxe ApS.
010: *
011: * Redistribution and use in source and binary forms, with or without
012: * modification, are permitted provided that the following conditions
013: * are met:
014: *
015: * 1. Redistributions of source code must retain the above copyright
016: * notice, this list of conditions and the following disclaimer.
017: *
018: * 2. Redistributions in binary form must reproduce the above copyright
019: * notice, this list of conditions and the following disclaimer in
020: * the documentation and/or other materials provided with the
021: * distribution.
022: *
023: * 3. The end-user documentation included with the redistribution, if
024: * any, must include the following acknowlegement:
025: * "This product includes software developed by Rimfaxe ApS
026: (www.rimfaxe.com)"
027: * Alternately, this acknowlegement may appear in the software itself,
028: * if and wherever such third-party acknowlegements normally appear.
029: *
030: * 4. The names "Rimfaxe", "Rimfaxe Software", "Lars Andersen" and
031: * "Rimfaxe WebServer" must not be used to endorse or promote products
032: * derived from this software without prior written permission. For written
033: * permission, please contact info@rimfaxe.com
034: *
035: * 5. Products derived from this software may not be called "Rimfaxe"
036: * nor may "Rimfaxe" appear in their names without prior written
037: * permission of the Rimfaxe ApS.
038: *
039: * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
040: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
041: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
042: * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
043: * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
044: * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
045: * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
046: * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
047: * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
048: * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
049: * SUCH DAMAGE.
050: *
051: */
052:
053: package com.rimfaxe.webserver.seda;
054:
055: /**
056: *
057: * @author Lars Andersen
058: */
059: public class Server {
060: private String identifier = "";
061:
062: seda.sandStorm.main.SandstormConfig sandstorm_config = null;
063: seda.sandStorm.internal.sandStormMgr sandStormMgr = null;
064:
065: com.rimfaxe.webserver.ServerPort serverport = null;
066:
067: /** Creates a new instance of Server */
068: public Server() {
069: }
070:
071: public void emitTraces() {
072: System.out.println("Server listening on port "
073: + serverport.getPort() + " using "
074: + serverport.getProtocol() + " protocol");
075: }
076:
077: public void initialize(ServerHandlerManager shm, String identifier,
078: com.rimfaxe.webserver.ServerPort serverport,
079: com.rimfaxe.webserver.Configuration conf) {
080: try {
081: this .identifier = identifier;
082: this .serverport = serverport;
083: sandstorm_config = new seda.sandStorm.main.SandstormConfig();
084: } catch (Exception e) {
085: System.out.println("com.rimfaxe.webserver.seda.Server : "
086: + e);
087: }
088:
089: try {
090: String[] httprecv_initargs = { "specialURL=/RWS/STATS",
091: "ServerPort=" + serverport.getPort(),
092: "httpPort=" + serverport.getPort() };
093: sandstorm_config
094: .addStage("HttpRecv",
095: "seda.apps.Haboob.http.HttpRecv",
096: httprecv_initargs);
097:
098: String[] httpsend_initargs = { "ServerPort="
099: + serverport.getPort() };
100: sandstorm_config
101: .addStage("HttpSend",
102: "seda.apps.Haboob.http.HttpSend",
103: httpsend_initargs);
104:
105: String[] cachestage_initargs = { "defaultURL=index.html",
106: "rootDir=/", "specialURL=/RWS/STATS",
107: "maxCacheSize=" + conf.getCacheSize() };
108: sandstorm_config.addStage("CacheStage",
109: "com.rimfaxe.webserver.seda.PageCacheSized",
110: cachestage_initargs);
111:
112: String[] dynamichttp_initargs = {};
113: sandstorm_config.addStage("DynamicHttp",
114: "com.rimfaxe.webserver.seda.DynamicHttp",
115: dynamichttp_initargs);
116:
117: sandStormMgr = new seda.sandStorm.internal.sandStormMgr(
118: sandstorm_config);
119: } catch (Exception e) {
120: System.out.println("com.rimfaxe.webserver.seda.Server : "
121: + e);
122:
123: }
124: }
125:
126: public String getIdentifier() {
127: return identifier;
128: }
129:
130: public synchronized void shutdown() {
131: try {
132: sandStormMgr.stop();
133: } catch (Exception e) {
134: System.out.println("com.rimfaxe.webserver.seda.Server : "
135: + e);
136:
137: }
138: }
139:
140: /**
141: * start the server
142: * it will than startup, and finally run in its own thread.
143: */
144: public void startup() {
145: try {
146: sandStormMgr.start();
147: } catch (Exception e) {
148: System.out.println("com.rimfaxe.webserver.seda.Server : "
149: + e);
150: }
151: }
152:
153: }
|