📄 resource.java
字号:
package org.apache.velocity.runtime.resource;
/*
* Copyright 2001,2004 The Apache Software Foundation.
*
* 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.
*/
import org.apache.velocity.runtime.RuntimeServices;
import org.apache.velocity.runtime.RuntimeConstants;
import org.apache.velocity.runtime.resource.loader.ResourceLoader;
import org.apache.velocity.exception.ResourceNotFoundException;
import org.apache.velocity.exception.ParseErrorException;
/**
* This class represent a general text resource that
* may have been retrieved from any number of possible
* sources.
*
* @author <a href="mailto:jvanzyl@apache.org">Jason van Zyl</a>
* @author <a href="mailto:geirm@optonline.net">Geir Magnusson Jr.</a>
* @version $Id: Resource.java,v 1.12.4.1 2004/03/03 23:23:01 geirm Exp $
*/
public abstract class Resource
{
protected RuntimeServices rsvc = null;
/**
* The template loader that initially loaded the input
* stream for this template, and knows how to check the
* source of the input stream for modification.
*/
protected ResourceLoader resourceLoader;
/**
* The number of milliseconds in a minute, used to calculate the
* check interval.
*/
protected static final long MILLIS_PER_SECOND = 1000;
/**
* How often the file modification time is checked (in seconds).
*/
protected long modificationCheckInterval = 0;
/**
* The file modification time (in milliseconds) for the cached template.
*/
protected long lastModified = 0;
/**
* The next time the file modification time will be checked (in
* milliseconds).
*/
protected long nextCheck = 0;
/**
* Name of the resource
*/
protected String name;
/**
* Character encoding of this resource
*/
protected String encoding = RuntimeConstants.ENCODING_DEFAULT;
/**
* Resource might require ancillary storage of some kind
*/
protected Object data = null;
/**
* Default constructor
*/
public Resource()
{
}
public void setRuntimeServices( RuntimeServices rs )
{
rsvc = rs;
}
/**
* Perform any subsequent processing that might need
* to be done by a resource. In the case of a template
* the actual parsing of the input stream needs to be
* performed.
*
* @return Whether the resource could be processed successfully.
* For a {@link org.apache.velocity.Template} or {@link
* org.apache.velocity.runtime.resource.ContentResource}, this
* indicates whether the resource could be read.
* @exception ResourceNotFoundException Similar in semantics as
* returning <code>false</code>.
*/
public abstract boolean process()
throws ResourceNotFoundException, ParseErrorException, Exception;
public boolean isSourceModified()
{
return resourceLoader.isSourceModified(this);
}
/**
* Set the modification check interval.
* @param interval The interval (in seconds).
*/
public void setModificationCheckInterval(long modificationCheckInterval)
{
this.modificationCheckInterval = modificationCheckInterval;
}
/**
* Is it time to check to see if the resource
* source has been updated?
*/
public boolean requiresChecking()
{
/*
* short circuit this if modificationCheckInterval == 0
* as this means "don't check"
*/
if (modificationCheckInterval <= 0 )
{
return false;
}
/*
* see if we need to check now
*/
return ( System.currentTimeMillis() >= nextCheck );
}
/**
* 'Touch' this template and thereby resetting
* the nextCheck field.
*/
public void touch()
{
nextCheck = System.currentTimeMillis() + ( MILLIS_PER_SECOND * modificationCheckInterval);
}
/**
* Set the name of this resource, for example
* test.vm.
*/
public void setName(String name)
{
this.name = name;
}
/**
* Get the name of this template.
*/
public String getName()
{
return name;
}
/**
* set the encoding of this resource
* for example, "ISO-8859-1"
*/
public void setEncoding( String encoding )
{
this.encoding = encoding;
}
/**
* get the encoding of this resource
* for example, "ISO-8859-1"
*/
public String getEncoding()
{
return encoding;
}
/**
* Return the lastModifed time of this
* template.
*/
public long getLastModified()
{
return lastModified;
}
/**
* Set the last modified time for this
* template.
*/
public void setLastModified(long lastModified)
{
this.lastModified = lastModified;
}
/**
* Return the template loader that pulled
* in the template stream
*/
public ResourceLoader getResourceLoader()
{
return resourceLoader;
}
/**
* Set the template loader for this template. Set
* when the Runtime determines where this template
* came from the list of possible sources.
*/
public void setResourceLoader(ResourceLoader resourceLoader)
{
this.resourceLoader = resourceLoader;
}
/**
* Set arbitrary data object that might be used
* by the resource.
*/
public void setData(Object data)
{
this.data = data;
}
/**
* Get arbitrary data object that might be used
* by the resource.
*/
public Object getData()
{
return data;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -