Package com.rim.samples.device.browser.browserfielddemo

Source Code of com.rim.samples.device.browser.browserfielddemo.PrimaryResourceFetchThread

/*
* BrowserFieldDemo.java
*
* Copyright � 1998-2011 Research In Motion Limited
*
* 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.
*
* Note: For the sake of simplicity, this sample application may not leverage
* resource bundles and resource strings.  However, it is STRONGLY recommended
* that application developers make use of the localization features available
* within the BlackBerry development platform to ensure a seamless application
* experience across a variety of languages and geographies.  For more information
* on localizing your application, please refer to the BlackBerry Java Development
* Environment Development Guide associated with this release.
*/

package com.rim.samples.device.browser.browserfielddemo;

import java.io.IOException;

import javax.microedition.io.HttpConnection;

import net.rim.device.api.browser.field.BrowserContent;
import net.rim.device.api.browser.field.BrowserContentChangedEvent;
import net.rim.device.api.browser.field.Event;
import net.rim.device.api.browser.field.RedirectEvent;
import net.rim.device.api.browser.field.RenderingApplication;
import net.rim.device.api.browser.field.RenderingException;
import net.rim.device.api.browser.field.RenderingSession;
import net.rim.device.api.browser.field.RequestedResource;
import net.rim.device.api.browser.field.UrlRequestedEvent;
import net.rim.device.api.io.http.HttpHeaders;
import net.rim.device.api.system.Application;
import net.rim.device.api.system.Display;
import net.rim.device.api.ui.Field;
import net.rim.device.api.ui.Manager;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.Status;
import net.rim.device.api.ui.container.MainScreen;

import com.rim.samples.device.browser.SecondaryResourceFetchThread;
import com.rim.samples.device.browser.Utilities;

/**
* This sample application demonstrates how to create a web browser using the
* net.rim.device.api.browser.field package.
*/
public final class BrowserFieldDemo extends UiApplication implements
        RenderingApplication {

    private static final String REFERER = "referer";

    private final RenderingSession _renderingSession;
    private HttpConnection _currentConnection;
    private final MainScreen _mainScreen;

    /**
     * Entry point for application
     *
     * @param args
     *            Command line arguments (not used)
     */
    public static void main(final String[] args) {
        final BrowserFieldDemo app = new BrowserFieldDemo();

        // Make the currently running thread the application's event
        // dispatch thread and begin processing events.
        app.enterEventDispatcher();
    }

    /**
     * Creates a new BrowserFieldDemo object
     */
    public BrowserFieldDemo() {
        _mainScreen = new MainScreen(Manager.HORIZONTAL_SCROLL);
        pushScreen(_mainScreen);
        _renderingSession = RenderingSession.getNewInstance();

        // Enable javascript
        // _renderingSession.getRenderingOptions().setProperty(RenderingOptions.CORE_OPTIONS_GUID,
        // RenderingOptions.JAVASCRIPT_ENABLED, true);

        final PrimaryResourceFetchThread thread =
                new PrimaryResourceFetchThread(
                        "http://www.mobile.blackberry.com", null, null, null,
                        this);
        thread.start();
    }

    /**
     * Processes an http connection
     *
     * @param connection
     *            The connection to the web content
     * @param e
     *            The event triggering the connection
     */
    void processConnection(final HttpConnection connection, final Event e) {
        // Cancel previous request
        if (_currentConnection != null) {
            try {
                _currentConnection.close();
            } catch (final IOException e1) {
            }
        }

        _currentConnection = connection;

        BrowserContent browserContent = null;

        try {
            browserContent =
                    _renderingSession.getBrowserContent(connection, this, e);

            if (browserContent != null) {
                final Field field = browserContent.getDisplayableContent();

                if (field != null) {
                    synchronized (Application.getEventLock()) {
                        _mainScreen.deleteAll();
                        _mainScreen.add(field);
                    }
                }

                browserContent.finishLoading();
            }

        } catch (final RenderingException re) {
            Utilities.errorDialog("RenderingSession#getBrowserContent() threw "
                    + re.toString());
        } finally {
            SecondaryResourceFetchThread.doneAddingImages();
        }

    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#eventOccurred(Event)
     */
    public Object eventOccurred(final Event event) {
        final int eventId = event.getUID();

        switch (eventId) {
        case Event.EVENT_URL_REQUESTED: {
            final UrlRequestedEvent urlRequestedEvent =
                    (UrlRequestedEvent) event;

            final PrimaryResourceFetchThread thread =
                    new PrimaryResourceFetchThread(urlRequestedEvent.getURL(),
                            urlRequestedEvent.getHeaders(), urlRequestedEvent
                                    .getPostData(), event, this);
            thread.start();

            break;

        }
        case Event.EVENT_BROWSER_CONTENT_CHANGED: {
            // Browser field title might have changed update title.
            final BrowserContentChangedEvent browserContentChangedEvent =
                    (BrowserContentChangedEvent) event;

            if (browserContentChangedEvent.getSource() instanceof BrowserContent) {
                final BrowserContent browserField =
                        (BrowserContent) browserContentChangedEvent.getSource();
                final String newTitle = browserField.getTitle();
                if (newTitle != null) {
                    synchronized (getAppEventLock()) {
                        _mainScreen.setTitle(newTitle);
                    }
                }
            }

            break;

        }
        case Event.EVENT_REDIRECT: {
            final RedirectEvent e = (RedirectEvent) event;
            String referrer = e.getSourceURL();

            switch (e.getType()) {
            case RedirectEvent.TYPE_SINGLE_FRAME_REDIRECT:
                // Show redirect message.
                Application.getApplication().invokeAndWait(new Runnable() {
                    public void run() {
                        Status.show("You are being redirected to a different page...");
                    }
                });

                break;

            case RedirectEvent.TYPE_JAVASCRIPT:
                break;

            case RedirectEvent.TYPE_META:
                // MSIE and Mozilla don't send a Referer for META Refresh.
                referrer = null;
                break;

            case RedirectEvent.TYPE_300_REDIRECT:
                // MSIE, Mozilla, and Opera all send the original
                // request's Referer as the Referer for the new
                // request.
                final Object eventSource = e.getSource();
                if (eventSource instanceof HttpConnection) {
                    referrer =
                            ((HttpConnection) eventSource)
                                    .getRequestProperty(REFERER);
                }

                break;
            }

            final HttpHeaders requestHeaders = new HttpHeaders();
            requestHeaders.setProperty(REFERER, referrer);
            final PrimaryResourceFetchThread thread =
                    new PrimaryResourceFetchThread(e.getLocation(),
                            requestHeaders, null, event, this);
            thread.start();
            break;

        }
        case Event.EVENT_CLOSE:
            // TODO: close the appication
            break;

        case Event.EVENT_SET_HEADER: // No cache support.
        case Event.EVENT_SET_HTTP_COOKIE: // No cookie support.
        case Event.EVENT_HISTORY: // No history support.
        case Event.EVENT_EXECUTING_SCRIPT: // No progress bar is supported.
        case Event.EVENT_FULL_WINDOW: // No full window support.
        case Event.EVENT_STOP: // No stop loading support.
        default:
        }

        return null;
    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#getAvailableHeight(BrowserContent)
     */
    public int getAvailableHeight(final BrowserContent browserField) {
        // Field has full screen.
        return Display.getHeight();
    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#getAvailableWidth(BrowserContent)
     */
    public int getAvailableWidth(final BrowserContent browserField) {
        // Field has full screen.
        return Display.getWidth();
    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#getHistoryPosition(BrowserContent)
     */
    public int getHistoryPosition(final BrowserContent browserField) {
        // No history support.
        return 0;
    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#getHTTPCookie(String)
     */
    public String getHTTPCookie(final String url) {
        // No cookie support.
        return null;
    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#getResource(RequestedResource,
     *      BrowserContent)
     */
    public HttpConnection getResource(final RequestedResource resource,
            final BrowserContent referrer) {
        if (resource == null) {
            return null;
        }

        // Check if this is cache-only request.
        if (resource.isCacheOnly()) {
            // No cache support.
            return null;
        }

        final String url = resource.getUrl();

        if (url == null) {
            return null;
        }

        // If referrer is null we must return the connection.
        if (referrer == null) {
            final HttpConnection connection =
                    Utilities.makeConnection(resource.getUrl(), resource
                            .getRequestHeaders(), null);

            return connection;

        } else {
            // If referrer is provided we can set up the connection on a
            // separate thread.
            SecondaryResourceFetchThread.enqueue(resource, referrer);
        }

        return null;
    }

    /**
     * @see net.rim.device.api.browser.field.RenderingApplication#invokeRunnable(Runnable)
     */
    public void invokeRunnable(final Runnable runnable) {
        new Thread(runnable).start();
    }
}

/**
* A Thread class to fetch content using an http connection
*/
final class PrimaryResourceFetchThread extends Thread {
    private final BrowserFieldDemo _application;
    private final Event _event;
    private final byte[] _postData;
    private final HttpHeaders _requestHeaders;
    private final String _url;

    /**
     * Constructor to create a PrimaryResourceFetchThread which fetches the web
     * resource from the specified url.
     *
     * @param url
     *            The url to fetch the content from
     * @param requestHeaders
     *            The http request headers used to fetch the content
     * @param postData
     *            Data which is to be posted to the url
     * @param event
     *            The event triggering the connection
     * @param application
     *            The application requesting the connection
     */
    PrimaryResourceFetchThread(final String url,
            final HttpHeaders requestHeaders, final byte[] postData,
            final Event event, final BrowserFieldDemo application) {
        _url = url;
        _requestHeaders = requestHeaders;
        _postData = postData;
        _application = application;
        _event = event;
    }

    /**
     * Connects to the url associated with this object
     *
     * @see java.lang.Thread#run()
     */
    public void run() {
        final HttpConnection connection =
                Utilities.makeConnection(_url, _requestHeaders, _postData);
        _application.processConnection(connection, _event);
    }
}
TOP

Related Classes of com.rim.samples.device.browser.browserfielddemo.PrimaryResourceFetchThread

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.