Package org.lightfish.presentation.publication

Source Code of org.lightfish.presentation.publication.BrowserWindow

/*
Copyright 2012 Adam Bien, adam-bien.com

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.lightfish.presentation.publication;

import java.io.IOException;
import java.io.Writer;
import java.util.logging.Logger;
import javax.servlet.AsyncContext;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletResponse;

/**
*
* @author Adam Bien, blog.adam-bien.com
*/
public class BrowserWindow {

    private static final Logger LOG = Logger.getLogger(BrowserWindow.class.getName());
    private AsyncContext asyncContext;
    private final ServletResponse response;
    private String channel;

    public BrowserWindow(AsyncContext asyncContext) {
        this.asyncContext = asyncContext;
        this.response = this.asyncContext.getResponse();
        this.response.setContentType("application/xml");
    }

    public BrowserWindow(AsyncContext asyncContext, String channel) {
        this(asyncContext);
        this.channel = channel;
    }

    public void send() {
        try {
            this.asyncContext.complete();
            LOG.info("Finished completion of " + this.hashCode());
        } catch (Exception e) {
            e.printStackTrace();
            System.err.println("Cannot complete context for " + this.hashCode() + ": " + e);
        }
    }

    public Writer getWriter() {

        try {
            ServletResponse servletResponse = this.asyncContext.getResponse();
            if (servletResponse != null) {
                return servletResponse.getWriter();
            } else {
                return null;
            }
        } catch (IOException ex) {
            throw new IllegalStateException("Cannot return writer: " + ex, ex);
        }
    }

    public void nothingToSay() {
        HttpServletResponse httpServletResponse = (HttpServletResponse) response;
        httpServletResponse.setStatus(204);
        this.asyncContext.complete();
    }

    public String getChannel() {
        return channel;
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        final BrowserWindow other = (BrowserWindow) obj;
        if (this.asyncContext != other.asyncContext && (this.asyncContext == null || !this.asyncContext.equals(other.asyncContext))) {
            return false;
        }
        return true;
    }

    @Override
    public int hashCode() {
        int hash = 3;
        hash = 73 * hash + (this.asyncContext != null ? this.asyncContext.hashCode() : 0);
        return hash;
    }

    @Override
    public String toString() {
        return "BrowserWindow{" + "asyncContext=" + asyncContext + ", response=" + response + ", channel=" + channel + '}';
    }
}
TOP

Related Classes of org.lightfish.presentation.publication.BrowserWindow

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.