Package com.duncpro.jroute.router
Class TreeRouter<E>
- java.lang.Object
-
- com.duncpro.jroute.router.TreeRouter<E>
-
-
Constructor Summary
Constructors Constructor Description TreeRouter()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Route route, E endpoint)
protected static <E> java.util.Optional<com.duncpro.jroute.router.RouteTreeNode<E>>
findNode(com.duncpro.jroute.router.RouteTreeNode<E> routeTree, Path path)
Finds theRouteTreeNode
which is responsible for handling requests made on the givenPath
.protected static <E> com.duncpro.jroute.router.RouteTreeNode<E>
findOrCreateNode(com.duncpro.jroute.router.RouteTreeNode<E> routeTree, Route route)
A variant offindNode(RouteTreeNode, Path)
which will add new branches to the route tree if necessary so that theRoute
may be resolved to aRouteTreeNode
.java.util.Set<PositionedEndpoint<E>>
getAllEndpoints(Route prefix)
Returns a set ofPositionedEndpoint
s which are accessible via the givenRoute
.java.util.Optional<E>
getEndpoint(Route at)
Returns the endpoint which exists at the givenRoute
(if any).E
getOrAdd(Route route, java.util.function.Supplier<E> endpointFactory)
java.util.Optional<RouteMatch<E>>
route(Path path)
-
-
-
Method Detail
-
route
public java.util.Optional<RouteMatch<E>> route(Path path)
-
add
public void add(Route route, E endpoint) throws RouteConflictException
- Specified by:
add
in interfaceRouter<E>
- Throws:
RouteConflictException
-
getAllEndpoints
public java.util.Set<PositionedEndpoint<E>> getAllEndpoints(Route prefix)
Description copied from interface:Router
Returns a set ofPositionedEndpoint
s which are accessible via the givenRoute
. The returned collection includes the endpoints defined on the givenRoute
as well as all endpoints which exists on routes that descend from the givenRoute
.- Specified by:
getAllEndpoints
in interfaceRouter<E>
-
getEndpoint
public java.util.Optional<E> getEndpoint(Route at)
Description copied from interface:Router
Returns the endpoint which exists at the givenRoute
(if any).- Specified by:
getEndpoint
in interfaceRouter<E>
-
findNode
protected static <E> java.util.Optional<com.duncpro.jroute.router.RouteTreeNode<E>> findNode(com.duncpro.jroute.router.RouteTreeNode<E> routeTree, Path path)
Finds theRouteTreeNode
which is responsible for handling requests made on the givenPath
. If noRouteTreeNode
has been delegated for this path, any empty optional is returned instead.
-
findOrCreateNode
protected static <E> com.duncpro.jroute.router.RouteTreeNode<E> findOrCreateNode(com.duncpro.jroute.router.RouteTreeNode<E> routeTree, Route route)
A variant offindNode(RouteTreeNode, Path)
which will add new branches to the route tree if necessary so that theRoute
may be resolved to aRouteTreeNode
. If no nodes need to be added then this function is analogous to the aforementioned one. Finally this function returns theRouteTreeNode
corresponding to the lastRouteElement
in theRoute
.
-
-