Package ariba.ui.aribaweb.util

Source Code of ariba.ui.aribaweb.util.AWFileResource

/*
    Copyright 1996-2008 Ariba, Inc.

    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.

    $Id: //ariba/platform/ui/aribaweb/ariba/ui/aribaweb/util/AWFileResource.java#13 $
*/

package ariba.ui.aribaweb.util;

import ariba.util.core.Constants;
import ariba.util.core.Assert;
import ariba.util.core.Constants;
import ariba.util.core.StringUtil;
import ariba.util.core.URLUtil;
import ariba.util.core.GrowOnlyHashtable;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
import java.io.IOException;
import java.net.URL;

public final class AWFileResource extends AWResource
{
    private AWFileResourceDirectory _directory;
    private File _file;
    private String _url;
    private String _fullUrl;

    /**
        this is only used in AWMultiLocaleResourceManager to
        create not found marker
    */
    protected AWFileResource ()
    {
        super("scratch", "scratch");
    }
   
    protected AWFileResource (String resourceName,
                              String relativePath,
                              AWFileResourceDirectory directory)
    {
        super(resourceName, relativePath);
        _directory = directory;
        String fullPath = _fullPath();
        _file = new File(fullPath);
        Assert.that(_file.exists(), "Specified file does not exist: \"" + fullPath + "\" resource: " + toString());
        _url = directory.formatCacheableUrlForResource(this);
        try {
            String canonicalPath = _file.getCanonicalPath();
            Assert.that(canonicalPath.endsWith(_file.getName()), "Case mismatch in file name: \"" + relativePath + "\" Note: was able to locate file with similar name: " + canonicalPath);
        }
        catch (IOException ioexception) {
            throw new AWGenericException(ioexception);
        }
    }
   
    public String _fullPath ()
    {
        // this will probably not be called too often, so do not cache the results.
        return StringUtil.strcat(_directory.directoryPath(), "/", _relativePath);
    }

    public String url ()
    {
        return _url != null ? _url : _directory.formatUrlForResource(this);
    }

    public String fullUrl ()
    {
        if (_fullUrl == null) {
            URL urlObject = URLUtil.urlAbsolute(_file);
            _fullUrl = urlObject.toExternalForm();
        }
        return _fullUrl;
    }
   
    public long lastModified ()
    {
        return fileLastModified(_file);
    }
   
    public InputStream inputStream ()
    {
        try {
            InputStream inputStream = new FileInputStream(_file);
            return inputStream;
        }
        catch (FileNotFoundException fileNotFoundException) {
            throw new AWGenericException(fileNotFoundException);
        }
    }

    public AWResource relativeResource (String relativePath, AWResourceManager resourceManager)
    {
        File file = new File(_file.getParentFile(), relativePath);
        if (!file.exists()) return null;

        String filePath = null;
        String resourceRootPrefix = null;
        try {
            filePath = file.getCanonicalPath();
            resourceRootPrefix = (new File(_directory.directoryPath())).getCanonicalPath();
        } catch (IOException e) {
            return null;
        }
        if (!filePath.startsWith(resourceRootPrefix)) return null;

        String rootRelativePath = filePath.substring(resourceRootPrefix.length());
        return new AWFileResource(file.getName(), rootRelativePath, _directory);
    }

    public String toString ()
    {
        String string = super.toString();
        if (_file != null) {
            string += " absolutePath: " + _file.getAbsolutePath();
        }
        return string;
    }

    private static GrowOnlyHashtable _FileStatCache = null;
    private static long _StatsLastInvalidatedTime = 0;

    /**
     * Called when new request comes in.  If we haven't invalidated our cache lately, then this is the trigger.
     */
    public static void notifyNewRequest ()
    {
        // invalidate if we haven't done so in 5 seconds
        long currentTime = System.currentTimeMillis();
        if (currentTime -_StatsLastInvalidatedTime > 5000) {
            _FileStatCache = null;
            _StatsLastInvalidatedTime = currentTime;
        }
    }

    /**
     * Lookup cached stat times
     *
     * We expect that this would only be called in RapidTurnaround mode (not in production).
     *
     * @param f the file
     * @return timestamp (possibly slightly out of date)
     */
    public static long fileLastModified (File f)
    {
        GrowOnlyHashtable table = _FileStatCache;
        if (table == null) {
            table = new GrowOnlyHashtable.IdentityMap();
            _FileStatCache = table;
        }

        Long ts = (Long)table.get(f);
        if (ts == null) {
            ts = Constants.getLong(f.lastModified());
            table.put(f, ts);
        }
        return ts.longValue();
    }
}
TOP

Related Classes of ariba.ui.aribaweb.util.AWFileResource

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.