|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.faunos.util.net.HandletServer
com.faunos.util.net.http.HttpServer
com.faunos.util.net.http.Caroon
com.faunos.skwish.ext.http.SkwishHttpServer
public class SkwishHttpServer
An HTTP server with convenience methods for setting up skwish stores and serving entries from them. Before the server can begin serving documents, it needs to know how it should resolve HTTP URIs to skwish SegmentStores.
getSkwishMountPoint(
httpUri, true)
to mount skwish for all HTTP requests whose URIs
are a subpath of httpUri. The returned mount point
(SkwishHttpMountPoint) then allows one or more
stores to mapped below it (next step). Thus each
mount point represents a nexus of SegmentStores exposed over
HTTP. More than one mount point may be defined on a server.
It is permissible to update either the mount points or their mappings while the server is running.
Design note: this subclassing strategy for providing
convenience methods on top of Caroon does not scale (does not
allow mix-ins). Can't decide what refactoring route to take, at the time
of this writing, but working on top of theResponseFactoryConfig
interface seems the right way to go.
--BF
HandletServer.start()
,
newInstance(int)
,
newInstance(InetAddress, int, ExecutorService, Logger)
Field Summary |
---|
Fields inherited from class com.faunos.util.net.http.Caroon |
---|
factorySwitch |
Fields inherited from class com.faunos.util.net.http.HttpServer |
---|
app |
Fields inherited from class com.faunos.util.net.HandletServer |
---|
logger |
Constructor Summary | |
---|---|
SkwishHttpServer(InetAddress host,
int port,
ExecutorService exec)
|
|
SkwishHttpServer(InetAddress host,
int port,
ExecutorService exec,
Logger logger)
|
|
SkwishHttpServer(int port)
|
Method Summary | |
---|---|
SkwishHttpMountPoint |
getSkwishMountPoint(String uri,
boolean create)
Returns the mount point at the given base uri. |
static SkwishHttpServer |
newDebugInstance(InetAddress host,
int port,
ExecutorService exec,
Logger logger)
Returns a new instance for debugging purposes. |
static SkwishHttpServer |
newDebugInstance(int port)
Returns a new instance for debugging purposes. |
static SkwishHttpServer |
newInstance(InetAddress host,
int port,
ExecutorService exec,
Logger logger)
Returns a new instance. |
static SkwishHttpServer |
newInstance(int port)
Returns a new instance with a cached thread pool and logger in this class's hierarchical namespace. |
SkwishHttpMountPoint |
newSkwishMountPoint(String uri)
Creates and returns a new mount point with the given base uri. |
Methods inherited from class com.faunos.util.net.http.Caroon |
---|
addMapping, addMappings, getMapping, getMappings, removeMapping, setMappings |
Methods inherited from class com.faunos.util.net.http.HttpServer |
---|
newHandlet |
Methods inherited from class com.faunos.util.net.HandletServer |
---|
inputChannel, isAlive, outputChannel, setProcessingHintThreshold, start, stop |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SkwishHttpServer(InetAddress host, int port, ExecutorService exec, Logger logger) throws IOException
IOException
public SkwishHttpServer(InetAddress host, int port, ExecutorService exec) throws IOException
IOException
public SkwishHttpServer(int port) throws IOException
IOException
Method Detail |
---|
public SkwishHttpMountPoint newSkwishMountPoint(String uri)
public SkwishHttpMountPoint getSkwishMountPoint(String uri, boolean create)
public static SkwishHttpServer newInstance(int port) throws IOException
port
- the port on which the HTTP server will be listening
IOException
public static SkwishHttpServer newInstance(InetAddress host, int port, ExecutorService exec, Logger logger) throws IOException
IOException
public static SkwishHttpServer newDebugInstance(int port) throws IOException
port
- the port on which the HTTP server will be listening
IOException
public static SkwishHttpServer newDebugInstance(InetAddress host, int port, ExecutorService exec, Logger logger) throws IOException
IOException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |