Search in sources :

Example 1 with EScopedRouter

use of org.webpieces.router.impl.routers.EScopedRouter in project webpieces by deanhiller.

the class RouteBuilderImpl method buildRouter.

public DScopedRouter buildRouter() {
    if (pageNotFoundInfo == null)
        throw new IllegalStateException("Client did not call setPageNotFoundRoute for router=" + routerInfo + " and that's required to catch stray not founds");
    else if (internalErrorInfo == null)
        throw new IllegalStateException("Client did not call setInternalErrorRoute for router=" + routerInfo + " and that's required to catch stray bugs in your application");
    List<AbstractRouter> routers = super.buildRoutes(routeFilters);
    // static routes get cached in browser typically so add them last so dynamic routes which are not cached are
    // pattern matched first and we don't waste loop matching static routes
    routers.addAll(staticRouters);
    Map<String, EScopedRouter> pathToRouter = buildScopedRouters(routeFilters);
    SvcProxyFixedRoutes svcProxy = new SvcProxyFixedRoutes(holder.getSvcProxyLogic().getServiceInvoker(), futureUtil);
    FilterCreationMeta notFoundChain = new FilterCreationMeta(resettingLogic.getInjector(), notFoundFilters, svcProxy);
    FilterCreationMeta internalErrorChain = new FilterCreationMeta(resettingLogic.getInjector(), internalErrorFilters, svcProxy);
    Service<MethodMeta, Action> svc = holder.getFinder().loadFilters(internalErrorChain);
    String i18nBundleName = internalErrorInfo.getRouteModuleInfo().getI18nBundleName();
    EInternalErrorRouter internalErrorRouter = new EInternalErrorRouter(holder.getRouteInvoker2(), i18nBundleName, internalErrorController, svc);
    Service<MethodMeta, Action> notFoundSvc = holder.getFinder().loadFilters(notFoundChain);
    String notFoundBundleName = pageNotFoundInfo.getRouteModuleInfo().getI18nBundleName();
    ENotFoundRouter notFoundRouter = new ENotFoundRouter(holder.getRouteInvoker2(), notFoundBundleName, notFoundControllerInst, notFoundSvc);
    return new DScopedRouter(routerInfo, pathToRouter, routers, notFoundRouter, internalErrorRouter, routerFutures, futureUtil);
}
Also used : Action(org.webpieces.router.api.controller.actions.Action) ENotFoundRouter(org.webpieces.router.impl.routers.ENotFoundRouter) MethodMeta(org.webpieces.router.api.routes.MethodMeta) EInternalErrorRouter(org.webpieces.router.impl.routers.EInternalErrorRouter) SvcProxyFixedRoutes(org.webpieces.router.impl.services.SvcProxyFixedRoutes) EScopedRouter(org.webpieces.router.impl.routers.EScopedRouter) AbstractRouter(org.webpieces.router.impl.routers.AbstractRouter) DScopedRouter(org.webpieces.router.impl.routers.DScopedRouter)

Example 2 with EScopedRouter

use of org.webpieces.router.impl.routers.EScopedRouter in project webpieces by deanhiller.

the class ScopedRouteBuilderImpl method buildScopedRouters.

protected Map<String, EScopedRouter> buildScopedRouters(List<FilterInfo<?>> routeFilters) {
    Map<String, EScopedRouter> pathToRouter = new HashMap<>();
    for (Entry<String, ScopedRouteBuilderImpl> entry : pathToBuilder.entrySet()) {
        EScopedRouter router2 = entry.getValue().build(routeFilters);
        pathToRouter.put(entry.getKey(), router2);
    }
    return pathToRouter;
}
Also used : HashMap(java.util.HashMap) EScopedRouter(org.webpieces.router.impl.routers.EScopedRouter)

Aggregations

EScopedRouter (org.webpieces.router.impl.routers.EScopedRouter)2 HashMap (java.util.HashMap)1 Action (org.webpieces.router.api.controller.actions.Action)1 MethodMeta (org.webpieces.router.api.routes.MethodMeta)1 AbstractRouter (org.webpieces.router.impl.routers.AbstractRouter)1 DScopedRouter (org.webpieces.router.impl.routers.DScopedRouter)1 EInternalErrorRouter (org.webpieces.router.impl.routers.EInternalErrorRouter)1 ENotFoundRouter (org.webpieces.router.impl.routers.ENotFoundRouter)1 SvcProxyFixedRoutes (org.webpieces.router.impl.services.SvcProxyFixedRoutes)1