Package jodd.madvoc.result

Source Code of jodd.madvoc.result.AbstractTemplateViewResult

// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.madvoc.result;

import jodd.log.Logger;
import jodd.log.LoggerFactory;
import jodd.madvoc.ActionRequest;
import jodd.madvoc.MadvocUtil;
import jodd.madvoc.ResultPath;
import jodd.madvoc.ScopeType;
import jodd.madvoc.component.ResultMapper;
import jodd.madvoc.meta.In;
import jodd.util.StringPool;

import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.HashMap;

import static javax.servlet.http.HttpServletResponse.SC_NOT_FOUND;

/**
* Base class for dispatching results. May be used as base class for any template-based views.
*/
public abstract class AbstractTemplateViewResult extends BaseActionResult<String> {

  private static final Logger log = LoggerFactory.getLogger(AbstractTemplateViewResult.class);

  protected HashMap<String, String> targetCache;

  public AbstractTemplateViewResult(String name) {
    super(name);
    targetCache = new HashMap<String, String>(256);
  }

  @In(scope = ScopeType.CONTEXT)
  protected ResultMapper resultMapper;

  /**
   * Dispatches to the JSP location created from result value and JSP extension.
   * Does its forward via a <code>RequestDispatcher</code>. If the dispatch fails, a 404 error
   * will be sent back in the http response.
   */
  public void render(ActionRequest actionRequest, String resultValue) throws Exception {
    String actionAndResultPath = actionRequest.getActionPath() + (resultValue != null ? ':' + resultValue : StringPool.EMPTY);

    String target = targetCache.get(actionAndResultPath);

    if (target == null) {
      if (log.isDebugEnabled()) {
        log.debug("new target: " + actionAndResultPath);
      }

      target = resolveTarget(actionRequest, resultValue);

      if (target == null) {
        targetNotFound(actionRequest, actionAndResultPath);
        return;
      }

      if (log.isDebugEnabled()) {
        log.debug("target found: " + target);
      }

      // store target in cache
      targetCache.put(actionAndResultPath, target);
    }

    // the target exists, continue
    renderView(actionRequest, target);
  }

  /**
   * Locates the target file from action path and the result value.
   */
  protected String resolveTarget(ActionRequest actionRequest, String resultValue) {
    ResultPath resultPath = resultMapper.resolveResultPath(actionRequest.getActionPath(), resultValue);

    String actionPath = resultPath.getPath();
    String path = actionPath;
    String value = resultPath.getValue();

    String target;

    while (true) {

      // variant #1: with value
      if (value != null) {
        if (path == null) {
          // only value remains
          int lastSlashNdx = actionPath.lastIndexOf('/');
          if (lastSlashNdx != -1) {
            target = actionPath.substring(0, lastSlashNdx + 1) + value;
          } else {
            target = '/' + value;
          }
        } else {
          target = path + '.' + value;
        }

        target = locateTarget(actionRequest, target);

        if (target != null) {
            break;
        }
      }

      if (path != null) {
        // variant #2: without value

        target = locateTarget(actionRequest, path);

        if (target != null) {
          break;
        }
      }

      // continue

      if (path == null) {
        // path not found
        return null;
      }

      int dotNdx = MadvocUtil.lastIndexOfDotAfterSlash(path);
      if (dotNdx == -1) {
        path = null;
      } else {
        path = path.substring(0, dotNdx);
      }
    }
    return target;
  }

  /**
   * Locates target from given path. Returns founded target or <code>null</code> if target is not found.
   * Path may be modified in different ways to form the target. For example, various extensions
   * may be appended to the path and so on.
   */
  protected abstract String locateTarget(ActionRequest actionRequest, String path);

  /**
   * Renders the view by processing founded target.
   */
  protected abstract void renderView(ActionRequest actionRequest, String target) throws Exception;

  /**
   * Called when target not found. By default sends 404 to the response.
   */
  protected void targetNotFound(ActionRequest actionRequest, String actionAndResultPath) throws IOException {
    HttpServletResponse response = actionRequest.getHttpServletResponse();
    response.sendError(SC_NOT_FOUND, "Result not found: " + actionAndResultPath);
  }

}
TOP

Related Classes of jodd.madvoc.result.AbstractTemplateViewResult

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.