Examples of BufferedWebResponse


Examples of org.apache.wicket.protocol.http.BufferedWebResponse

    // keep the original response
    final WebResponse originalResponse = (WebResponse)requestCycle.getResponse();

    // buffered web response for page
    BufferedWebResponse response = new BufferedWebResponse(originalResponse);

    // keep the original base URL
    Url originalBaseUrl = requestCycle.getUrlRenderer().setBaseUrl(targetUrl);

    try
    {
      requestCycle.setResponse(response);
      requestablePage.renderPage();

      if (scheduled == null && requestCycle.getRequestHandlerScheduledAfterCurrent() != null)
      {
        // This is a special case.
        // During page render another request handler got scheduled and will want to
        // overwrite the response, so we need to let it.
        // Just preserve the meta data headers. Clear the initial actions because they are
        // already copied into the new response's actions
        originalResponse.reset();
        response.writeMetaData(originalResponse);
        return null;
      }
      else
      {
        return response;
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

    // the code below is little hairy but we have to handle 3 redirect policies,
    // 3 rendering strategies and two kind of requests (ajax and normal)
    //

    // try to get an already rendered buffered response for current URL
    BufferedWebResponse bufferedResponse = getAndRemoveBufferedResponse(currentUrl);

    boolean isAjax = isAjax(requestCycle);

    boolean shouldPreserveClientUrl = ((WebRequest)requestCycle.getRequest()).shouldPreserveClientUrl();

    if (bufferedResponse != null)
    {
      logger.warn("The Buffered response should be handled by BufferedResponseRequestHandler");
      // if there is saved response for this URL render it
      bufferedResponse.writeTo((WebResponse)requestCycle.getResponse());
    }
    else if (getRedirectPolicy() == RedirectPolicy.NEVER_REDIRECT ||
      (isOnePassRender() && isAjax == false && getRedirectPolicy() != RedirectPolicy.ALWAYS_REDIRECT) //
      ||
      (!isAjax //
        &&
        (targetUrl.equals(currentUrl) && !getPageProvider().isNewPageInstance() && !getPage().isPageStateless()) //
      || (targetUrl.equals(currentUrl) && isRedirectToRender()) //
      ) //
      || shouldPreserveClientUrl) //
    {
      // if the policy is never to redirect
      // or one pass render mode is on
      // or the targetUrl matches current url and the page is not stateless
      // or the targetUrl matches current url, page is stateless but it's redirect-to-render
      // or the request determines that the current url should be preserved
      // just render the page
      BufferedWebResponse response = renderPage(currentUrl, requestCycle);
      if (response != null)
      {
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
    }
    else if (getRedirectPolicy() == RedirectPolicy.ALWAYS_REDIRECT //
      ||
      isRedirectToRender() //
      || (isAjax && targetUrl.equals(currentUrl)))
    {
      // if target URL is different
      // and render policy is always-redirect or it's redirect-to-render
      redirectTo(targetUrl, requestCycle);
    }
    else if (!targetUrl.equals(currentUrl) //
      &&
      (getPageProvider().isNewPageInstance() || (isSessionTemporary() && getPage().isPageStateless())))
    {
      // if target URL is different and session is temporary and page is stateless
      // this is special case when page is stateless but there is no session so we can't
      // render it to buffer

      // alternatively if URLs are different and we have a page class and not an instance we
      // can redirect to the url which will instantiate the instance of us

      // note: if we had session here we would render the page to buffer and then redirect to
      // URL generated *after* page has been rendered (the statelessness may change during
      // render). this would save one redirect because now we have to render to URL generated
      // *before* page is rendered, render the page, get URL after render and if the URL is
      // different (meaning page is not stateless), save the buffer and redirect again (which
      // is pretty much what the next step does)
      redirectTo(targetUrl, requestCycle);
    }
    else
    {
      if (isRedirectToBuffer() == false && logger.isDebugEnabled())
      {
        String details = String.format(
          "redirect strategy: '%s', isAjax: '%s', redirect policy: '%s', "
            + "current url: '%s', target url: '%s', is new: '%s', is stateless: '%s', is temporary: '%s'",
          Application.get().getRequestCycleSettings().getRenderStrategy(), isAjax,
          getRedirectPolicy(), currentUrl, targetUrl,
          getPageProvider().isNewPageInstance(), getPage().isPageStateless(),
          isSessionTemporary());
        logger.debug("Falling back to Redirect_To_Buffer render strategy because none of the conditions " +
          "matched. Details: " + details);
      }

      // force creation of possible stateful page to get the final target url
      getPage();

      Url beforeRenderUrl = requestCycle.mapUrlFor(getRenderPageRequestHandler());

      // redirect to buffer
      BufferedWebResponse response = renderPage(beforeRenderUrl, requestCycle);

      if (response == null)
      {
        return;
      }

      // the url might have changed after page has been rendered (e.g. the
      // stateless flag might have changed because stateful components
      // were added)
      final Url afterRenderUrl = requestCycle.mapUrlFor(getRenderPageRequestHandler());

      if (beforeRenderUrl.getSegments().equals(afterRenderUrl.getSegments()) == false)
      {
        // the amount of segments is different - generated relative URLs
        // will not work, we need to rerender the page. This can happen
        // with IRequestHandlers that produce different URLs with
        // different amount of segments for stateless and stateful pages
        response = renderPage(afterRenderUrl, requestCycle);
      }

      if (currentUrl.equals(afterRenderUrl))
      {
        // no need to redirect when both urls are exactly the same
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
      // if page is still stateless after render
      else if (getPage().isPageStateless() && !enableRedirectForStatelessPage())
      {
        // we don't want the redirect to happen for stateless page
        // example:
        // when a normal mounted stateful page is hit at /mount/point
        // wicket renders the page to buffer and redirects to /mount/point?12
        // but for stateless page the redirect is not necessary
        // also for listener interface on stateful page we want to redirect
        // after the listener is invoked, but on stateless page the user
        // must ask for redirect explicitly
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
      else
      {
        storeBufferedResponse(afterRenderUrl, response);

View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

    // keep the original response
    final WebResponse originalResponse = (WebResponse)requestCycle.getResponse();

    // buffered web response for page
    BufferedWebResponse response = new BufferedWebResponse(originalResponse);

    // keep the original base URL
    Url originalBaseUrl = requestCycle.getUrlRenderer().setBaseUrl(targetUrl);

    try
    {
      requestCycle.setResponse(response);
      requestablePage.renderPage();

      if (scheduled == null && requestCycle.getRequestHandlerScheduledAfterCurrent() != null)
      {
        // This is a special case.
        // During page render another request handler got scheduled and will want to
        // overwrite the response, so we need to let it.
        // Just preserve the meta data headers. Clear the initial actions because they are
        // already copied into the new response's actions
        originalResponse.reset();
        response.writeMetaData(originalResponse);
        return null;
      }
      else
      {
        return response;
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

    // the code below is little hairy but we have to handle 3 redirect policies,
    // 3 rendering strategies and two kind of requests (ajax and normal)
    //

    // try to get an already rendered buffered response for current URL
    BufferedWebResponse bufferedResponse = getAndRemoveBufferedResponse(currentUrl);

    if (bufferedResponse != null)
    {
      logger
        .warn("The Buffered response should be handled by BufferedResponseRequestHandler");
      // if there is saved response for this URL render it
      bufferedResponse.writeTo((WebResponse)requestCycle.getResponse());
    }
    else if (shouldRenderPageAndWriteResponse(requestCycle, currentUrl, targetUrl))
    {
      BufferedWebResponse response = renderPage(currentUrl, requestCycle);
      if (response != null)
      {
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
    }
    else if (shouldRedirectToTargetUrl(requestCycle, currentUrl, targetUrl))
    {
     
      redirectTo(targetUrl, requestCycle);

      // note: if we had session here we would render the page to buffer and then
      // redirect to URL generated *after* page has been rendered (the statelessness
      // may change during render). this would save one redirect because now we have
      // to render to URL generated *before* page is rendered, render the page, get
      // URL after render and if the URL is different (meaning page is not stateless),
      // save the buffer and redirect again (which is pretty much what the next step
      // does)
    }
    else
    {
      if (isRedirectToBuffer() == false && logger.isDebugEnabled())
      {
        String details = String
          .format(
            "redirect strategy: '%s', isAjax: '%s', redirect policy: '%s', "
              + "current url: '%s', target url: '%s', is new: '%s', is stateless: '%s', is temporary: '%s'",
            Application.get().getRequestCycleSettings().getRenderStrategy(),
            isAjax(requestCycle), getRedirectPolicy(), currentUrl, targetUrl,
            isNewPageInstance(), isPageStateless(), isSessionTemporary());
        logger
          .debug("Falling back to Redirect_To_Buffer render strategy because none of the conditions "
            + "matched. Details: " + details);
      }

      // force creation of possible stateful page to get the final target url
      getPage();

      Url beforeRenderUrl = requestCycle.mapUrlFor(getRenderPageRequestHandler());

      // redirect to buffer
      BufferedWebResponse response = renderPage(beforeRenderUrl, requestCycle);

      if (response == null)
      {
        return;
      }

      // the url might have changed after page has been rendered (e.g. the
      // stateless flag might have changed because stateful components
      // were added)
      final Url afterRenderUrl = requestCycle
        .mapUrlFor(getRenderPageRequestHandler());

      if (beforeRenderUrl.getSegments().equals(afterRenderUrl.getSegments()) == false)
      {
        // the amount of segments is different - generated relative URLs
        // will not work, we need to rerender the page. This can happen
        // with IRequestHandlers that produce different URLs with
        // different amount of segments for stateless and stateful pages
        response = renderPage(afterRenderUrl, requestCycle);
      }

      if (currentUrl.equals(afterRenderUrl))
      {
        // no need to redirect when both urls are exactly the same
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
      // if page is still stateless after render
      else if (isPageStateless() && !enableRedirectForStatelessPage())
      {
        // we don't want the redirect to happen for stateless page
        // example:
        // when a normal mounted stateful page is hit at /mount/point
        // wicket renders the page to buffer and redirects to /mount/point?12
        // but for stateless page the redirect is not necessary
        // also for listener interface on stateful page we want to redirect
        // after the listener is invoked, but on stateless page the user
        // must ask for redirect explicitly
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
      else
      {
        storeBufferedResponse(afterRenderUrl, response);

View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

   * checking the rendering strategies or redirect policies
   */
  @Test
  public void testGetAndRemoveBufferedResponse()
  {
    final BufferedWebResponse bufferedResponse = mock(BufferedWebResponse.class);

    PageRenderer renderer = new TestPageRenderer(handler)
    {
      @Override
      protected BufferedWebResponse getAndRemoveBufferedResponse(Url url)
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

  {
    Application application = Application.get();

    RequestCycle originalRequestCycle = RequestCycle.get();

    BufferedWebResponse tempResponse = new BufferedWebResponse(null);

    RequestCycle tempRequestCycle = application.createRequestCycle(originalRequestCycle.getRequest(), tempResponse);

    try
    {
      ThreadContext.setRequestCycle(tempRequestCycle);
      pageProvider.getPageInstance().renderPage();
    }
    finally
    {
      ThreadContext.setRequestCycle(originalRequestCycle);
    }

    return tempResponse.getText();
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

  public static CharSequence renderComponent(final Component component)
  {
    RequestCycle requestCycle = RequestCycle.get();

    final Response originalResponse = requestCycle.getResponse();
    BufferedWebResponse tempResponse = new BufferedWebResponse(null);

    MarkupContainer oldParent = component.getParent();

    try
    {
      requestCycle.setResponse(tempResponse);

      // add the component to a dummy page just for the rendering
      RenderPage page = new RenderPage(component);
      page.internalInitialize();

      component.render();
    }
    finally
    {
      if (oldParent != null)
      {
        oldParent.add(component); // re-add the child to its old parent
      }

      requestCycle.setResponse(originalResponse);
    }

    return tempResponse.getText();
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

  }

  @Override
  protected BufferedWebResponse renderPage(Url targetUrl, RequestCycle requestCycle)
  {
    BufferedWebResponse webResponse = super.renderPage(targetUrl, requestCycle);
    webResponse.write("some response".getBytes());
    return webResponse;
  }
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

    // keep the original response
    final Response originalResponse = requestCycle.getResponse();

    // buffered web response for page
    BufferedWebResponse response = new BufferedWebResponse((WebResponse)originalResponse);

    // keep the original base URL
    Url originalBaseUrl = requestCycle.getUrlRenderer().setBaseUrl(targetUrl);

    try
View Full Code Here

Examples of org.apache.wicket.protocol.http.BufferedWebResponse

    // the code below is little hairy but we have to handle 3 redirect policies,
    // 3 rendering strategies and two kind of requests (ajax and normal)
    //

    // try to get an already rendered buffered response for current URL
    BufferedWebResponse bufferedResponse = getAndRemoveBufferedResponse(currentUrl);

    boolean isAjax = isAjax(requestCycle);

    boolean shouldPreserveClientUrl = ((WebRequest)requestCycle.getRequest()).shouldPreserveClientUrl();

    if (bufferedResponse != null)
    {
      logger.warn("The Buffered response should be handled by BufferedResponseRequestHandler");
      // if there is saved response for this URL render it
      bufferedResponse.writeTo((WebResponse)requestCycle.getResponse());
    }
    else if (getRedirectPolicy() == RedirectPolicy.NEVER_REDIRECT ||
      (isOnePassRender() && isAjax == false && getRedirectPolicy() != RedirectPolicy.ALWAYS_REDIRECT) //
      ||
      (!isAjax //
        &&
        (targetUrl.equals(currentUrl) && !getPageProvider().isNewPageInstance() && !getPage().isPageStateless()) //
      || (targetUrl.equals(currentUrl) && isRedirectToRender()) //
      ) //
      || shouldPreserveClientUrl) //
    {
      // if the policy is never to redirect
      // or one pass render mode is on
      // or the targetUrl matches current url and the page is not stateless
      // or the targetUrl matches current url, page is stateless but it's redirect-to-render
      // or the request determines that the current url should be preserved
      // just render the page
      BufferedWebResponse response = renderPage(currentUrl, requestCycle);
      if (response != null)
      {
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
    }
    else if (getRedirectPolicy() == RedirectPolicy.ALWAYS_REDIRECT //
      ||
      isRedirectToRender() //
      || (isAjax && targetUrl.equals(currentUrl)))
    {
      // if target URL is different
      // and render policy is always-redirect or it's redirect-to-render
      redirectTo(targetUrl, requestCycle);
    }
    else if (!targetUrl.equals(currentUrl) //
      &&
      (getPageProvider().isNewPageInstance() || (isSessionTemporary() && getPage().isPageStateless())))
    {
      // if target URL is different and session is temporary and page is stateless
      // this is special case when page is stateless but there is no session so we can't
      // render it to buffer

      // alternatively if URLs are different and we have a page class and not an instance we
      // can redirect to the url which will instantiate the instance of us

      // note: if we had session here we would render the page to buffer and then redirect to
      // URL generated *after* page has been rendered (the statelessness may change during
      // render). this would save one redirect because now we have to render to URL generated
      // *before* page is rendered, render the page, get URL after render and if the URL is
      // different (meaning page is not stateless), save the buffer and redirect again (which
      // is pretty much what the next step does)
      redirectTo(targetUrl, requestCycle);
    }
    else
    {
      if (isRedirectToBuffer() == false && logger.isWarnEnabled())
      {
        logger.warn("Falling back to Redirect_To_Buffer render strategy because none of the conditions matched.");
      }

      // redirect to buffer
      BufferedWebResponse response = renderPage(targetUrl, requestCycle);

      if (response == null)
      {
        return;
      }

      // check if the url hasn't changed after page has been rendered
      // (i.e. the stateless flag might have changed which could result in different page url)
      Url targetUrl2 = requestCycle.mapUrlFor(getRenderPageRequestHandler());

      if (targetUrl.getSegments().equals(targetUrl2.getSegments()) == false)
      {
        // the amount of segments is different - generated relative URLs will not work, we
        // need to rerender the page. This shouldn't happen, but in theory it can - with
        // RequestHandlerEncoders that produce different URLs with different amount of
        // segments for stateless and stateful pages
        response = renderPage(targetUrl2, requestCycle);
      }

      if (currentUrl.equals(targetUrl2))
      {
        // no need to redirect when both urls are exactly the same
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
      // if page is still stateless after render
      else if (getPage().isPageStateless() && !enableRedirectForStatelessPage())
      {
        // we don't want the redirect to happen for stateless page
        // example:
        // when a normal mounted stateful page is hit at /mount/point
        // wicket renders the page to buffer and redirects to /mount/point?12
        // but for stateless page the redirect is not necessary
        // also for listener interface on stateful page we want to redirect
        // after the listener is invoked, but on stateless page the user
        // must ask for redirect explicitly
        response.writeTo((WebResponse)requestCycle.getResponse());
      }
      else
      {
        storeBufferedResponse(targetUrl2, response);

View Full Code Here
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.