01: // httpdSwitchboard.java
02: // -------------------------------------
03: // (C) by Michael Peter Christen; mc@anomic.de
04: // first published on http://www.anomic.de
05: // Frankfurt, Germany, 2004
06: // last major change: 15.07.2004
07: //
08: // This program is free software; you can redistribute it and/or modify
09: // it under the terms of the GNU General Public License as published by
10: // the Free Software Foundation; either version 2 of the License, or
11: // (at your option) any later version.
12: //
13: // This program is distributed in the hope that it will be useful,
14: // but WITHOUT ANY WARRANTY; without even the implied warranty of
15: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16: // GNU General Public License for more details.
17: //
18: // You should have received a copy of the GNU General Public License
19: // along with this program; if not, write to the Free Software
20: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21: //
22: // Using this software in any meaning (reading, learning, copying, compiling,
23: // running) means that you agree that the Author(s) is (are) not responsible
24: // for cost, loss of data or any harm that may be caused directly or indirectly
25: // by usage of this softare or this documentation. The usage of this software
26: // is on your own risk. The installation and usage (starting/running) of this
27: // software may allow other people or application to access your computer and
28: // any attached devices and is highly dependent on the configuration of the
29: // software which must be done by the user of the software; the author(s) is
30: // (are) also not responsible for proper configuration and usage of the
31: // software, even if provoked by documentation provided together with
32: // the software.
33: //
34: // Any changes to this file according to the GPL as documented in the file
35: // gpl.txt aside this file in the shipment you received can be done to the
36: // lines that follows this copyright notice here, but changes must not be
37: // done inside the copyright notive above. A re-distribution must contain
38: // the intact and unchanged copyright notice.
39: // Contributions and changes to the program code must be marked as such.
40:
41: package de.anomic.http;
42:
43: import java.io.File;
44: import java.util.LinkedList;
45:
46: import de.anomic.server.serverAbstractSwitch;
47: import de.anomic.server.serverObjects;
48: import de.anomic.server.serverSwitch;
49:
50: public final class httpdSwitchboard extends serverAbstractSwitch
51: implements serverSwitch {
52:
53: private final LinkedList<Object> cacheStack;
54:
55: public httpdSwitchboard(File rootPath, String initPath,
56: String configPath, boolean applyPro) {
57: super (rootPath, initPath, configPath, applyPro);
58: cacheStack = new LinkedList<Object>();
59: }
60:
61: public int queueSize() {
62: return cacheStack.size();
63: }
64:
65: public void enQueue(Object job) {
66: cacheStack.addLast(job);
67: }
68:
69: public boolean deQueue() {
70: if (cacheStack.size() > 0) {
71: System.out.println("Process: "
72: + cacheStack.removeFirst().toString());
73: return true;
74: }
75: System.out.println("Process: queue is empty");
76: return false;
77: }
78:
79: public serverObjects action(String actionName,
80: serverObjects actionInput) {
81: return null;
82: }
83:
84: }
|