Package org.jdesktop.wonderland.client.protocols.wla

Source Code of org.jdesktop.wonderland.client.protocols.wla.WlaURLConnection

/**
* Open Wonderland
*
* Copyright (c) 2010, Open Wonderland Foundation, All Rights Reserved
*
* Redistributions in source code form must reproduce the above
* copyright and this condition.
*
* The contents of this file are subject to the GNU General Public
* License, Version 2 (the "License"); you may not use this file
* except in compliance with the License. A copy of the License is
* available at http://www.opensource.org/licenses/gpl-license.php.
*
* The Open Wonderland Foundation designates this particular file as
* subject to the "Classpath" exception as provided by the Open Wonderland
* Foundation in the License file that accompanied this code.
*/

/**
* Project Wonderland
*
* Copyright (c) 2004-2009, Sun Microsystems, Inc., All Rights Reserved
*
* Redistributions in source code form must reproduce the above
* copyright and this condition.
*
* The contents of this file are subject to the GNU General Public
* License, Version 2 (the "License"); you may not use this file
* except in compliance with the License. A copy of the License is
* available at http://www.opensource.org/licenses/gpl-license.php.
*
* Sun designates this particular file as subject to the "Classpath"
* exception as provided by Sun in the License file that accompanied
* this code.
*/
package org.jdesktop.wonderland.client.protocols.wla;

import java.io.IOException;
import java.io.InputStream;
import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLConnection;
import org.jdesktop.wonderland.client.assetmgr.Asset;
import org.jdesktop.wonderland.client.assetmgr.AssetInputStream;
import org.jdesktop.wonderland.client.assetmgr.AssetManager;
import org.jdesktop.wonderland.common.ArtURI;
import org.jdesktop.wonderland.common.ModuleURI;

/**
* The WlaURLConnection class is the URL connection to URLs that have the 'wla'
* protocol. This is used for Wonderland assets and interfaces with the asset
* manager to properly load resources.
* <p>
* The format of the URL is:
* <p>
* wla://<module name>/<asset path>
* <p>
* where <module name> is the name of the module that contains the asset, and
* <asset path> is the relative asset within the module
*
* @author paulby
*/
public class WlaURLConnection extends URLConnection {

    /**
     * Constructor, takes the 'wla' protocol URL as an argument
     *
     * @param url A URL with a 'wla' protocol
     */
    public WlaURLConnection(URL url) {
        super(url);
    }
   
    @Override
    public void connect() throws IOException {
    }
   
    @Override
    public InputStream getInputStream() throws IOException {
        try {
            // Since we know this asset belongs to a module, first create a
            // factory to handle its loading.
            ModuleURI uri = new ArtURI(this.url.toExternalForm());

            // Next, we ask the asset manager for the asset and wait for it to
            // be loaded
            Asset asset = AssetManager.getAssetManager().getAsset(uri);
            if (asset == null || AssetManager.getAssetManager().waitForAsset(asset) == false) {
                throw new IOException("No such asset "+url);
            }
            return new AssetInputStream(asset);
        } catch (URISyntaxException excp) {
            IOException ioe = new IOException("Error in URI syntax");
            ioe.initCause(excp);
            throw ioe;
        }       
    }
}
TOP

Related Classes of org.jdesktop.wonderland.client.protocols.wla.WlaURLConnection

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.