Class JspCompilationContext
java.lang.Object
org.apache.sling.scripting.jsp.jasper.JspCompilationContext
A place holder for various things that are used through out the JSP
engine. This is a per-request/per-context data structure. Some of
the instance variables are set at different points.
Most of the path-related stuff is here - mangling names, versions, dirs,
loading resources and dealing with uris.
- Author:
- Anil K. Vijendran, Harish Prabandham, Pierre Delisle, Costin Manolache, Kin-man Chung
-
Constructor Summary
ConstructorsConstructorDescriptionJspCompilationContext
(String jspUri, boolean isErrPage, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt) JspCompilationContext
(String jspUri, boolean isErrPage, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt, String basePckName) JspCompilationContext
(String tagfile, javax.servlet.jsp.tagext.TagInfo tagInfo, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt, URL tagFileJarUrl) -
Method Summary
Modifier and TypeMethodDescriptionvoid
compile()
boolean
Removes a (generated) file.What class loader to use for loading classes while compiling this JSP?Get the content type of this JSP.protected String
getInputStream
(String fileName) Creates an input stream from the given filePath of the Java file relative to the work directory.Path of the JSP URI.Get hold of the Options object for this context.The output directory to generate code into.getOutputStream
(String fileName) Creates an output stream to the given filegetRealPath
(String path) Gets the actual path of a URI relative to the context of the compilation.getResource
(String res) Gets a resource as a stream, relative to the meanings of this context's implementation.getResourcePaths
(String path) Just the class name (does not include package name) of the generated class.javax.servlet.ServletContext
Full path name of the Java file into which the servlet is being generated.Package name for the generated class is make up of the base package name, which is user settable, and the derived package name.Returns the JAR file in which the tag file for which this JspCompilationContext was created is packaged, or null if this JspCompilationContext does not correspond to a tag file, or if the corresponding tag file is not packaged in a JAR.getTagFileJarUrl
(String tagFile) Returns the tag-file-name-to-JAR-file map of this compilation unit, which maps tag file names to the JAR files in which the tag files are packaged.getTagFileUrl
(String tagFile) javax.servlet.jsp.tagext.TagInfo
String[]
getTldLocation
(String uri) Gets the 'location' of the TLD associated with the given taglib 'uri'.Where is the servlet being generated?boolean
Are we processing something that has been declared as an errorpage?boolean
True if we are compiling a tag file in prototype mode.boolean
boolean
Are we keeping generated code around?Class<?>
load()
boolean
Renams then old file to the new fileresolveRelativeUri
(String uri) Get the full value of a URI relative to this compilations context uses current file as the base.void
setContentType
(String contentType) void
setErrorPage
(boolean isErrPage) void
setPrototypeMode
(boolean pm) void
setTagFileJarUrl
(String tagFile, URL tagFileURL) void
setTagFileUrl
(String tagFile, URL tagFileURL) void
void
setTagInfo
(javax.servlet.jsp.tagext.TagInfo tagi) void
setWriter
(ServletWriter writer)
-
Constructor Details
-
JspCompilationContext
public JspCompilationContext(String jspUri, boolean isErrPage, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt) -
JspCompilationContext
public JspCompilationContext(String jspUri, boolean isErrPage, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt, String basePckName) -
JspCompilationContext
public JspCompilationContext(String tagfile, javax.servlet.jsp.tagext.TagInfo tagInfo, Options options, javax.servlet.ServletContext context, JspRuntimeContext rctxt, URL tagFileJarUrl)
-
-
Method Details
-
getClassLoader
What class loader to use for loading classes while compiling this JSP? -
getOutputStream
Creates an output stream to the given file- Parameters:
fileName
- The path to the file to write to- Returns:
- The OutputStream to the file
- Throws:
IOException
- If an error occurrs creating the output stream.
-
getInputStream
Creates an input stream from the given file- Parameters:
fileName
- The path to the file to read from- Returns:
- The InputStream from the file
- Throws:
FileNotFoundException
- If the file cannot be foundIOException
- If an error occurrs creating the intput stream.
-
delete
Removes a (generated) file.- Parameters:
fileName
- The path to the file to remove.- Returns:
true
if the file has been removed.
-
rename
Renams then old file to the new file- Returns:
true
if the file has been renamed
-
getOutputDir
The output directory to generate code into. The output directory is make up of the scratch directory, which is provide in Options, plus the directory derived from the package name. -
getCompiler
-
activateCompiler
-
resolveRelativeUri
Get the full value of a URI relative to this compilations context uses current file as the base. -
getResourceAsStream
Gets a resource as a stream, relative to the meanings of this context's implementation.- Returns:
- a null if the resource cannot be found or represented as an InputStream.
-
getResource
- Throws:
MalformedURLException
-
getResourcePaths
-
getRealPath
Gets the actual path of a URI relative to the context of the compilation. -
getTagFileJarUrl
Returns the tag-file-name-to-JAR-file map of this compilation unit, which maps tag file names to the JAR files in which the tag files are packaged. The map is populated when parsing the tag-file elements of the TLDs of any imported taglibs. -
setTagFileJarUrl
-
getTagFileUrl
-
setTagFileUrl
-
getTagFileJarUrl
Returns the JAR file in which the tag file for which this JspCompilationContext was created is packaged, or null if this JspCompilationContext does not correspond to a tag file, or if the corresponding tag file is not packaged in a JAR. -
setTagFileUrls
-
getServletClassName
Just the class name (does not include package name) of the generated class. -
getJspFile
Path of the JSP URI. Note that this is not a file name. This is the context rooted URI of the JSP file. -
isErrorPage
public boolean isErrorPage()Are we processing something that has been declared as an errorpage? -
setErrorPage
public void setErrorPage(boolean isErrPage) -
isTagFile
public boolean isTagFile() -
getTagInfo
public javax.servlet.jsp.tagext.TagInfo getTagInfo() -
setTagInfo
public void setTagInfo(javax.servlet.jsp.tagext.TagInfo tagi) -
isPrototypeMode
public boolean isPrototypeMode()True if we are compiling a tag file in prototype mode. ie we only generate codes with class for the tag handler with empty method bodies. -
setPrototypeMode
public void setPrototypeMode(boolean pm) -
getServletPackageName
Package name for the generated class is make up of the base package name, which is user settable, and the derived package name. The derived package name directly mirrors the file heirachy of the JSP page. -
getDerivedPackageName
-
getServletJavaFileName
Full path name of the Java file into which the servlet is being generated. -
getOptions
Get hold of the Options object for this context. -
getServletContext
public javax.servlet.ServletContext getServletContext() -
getRuntimeContext
-
getJavaPath
Path of the Java file relative to the work directory. -
getClassFileName
-
getContentType
Get the content type of this JSP. Content type includes content type and encoding. -
setContentType
-
getWriter
Where is the servlet being generated? -
setWriter
-
getTldLocation
Gets the 'location' of the TLD associated with the given taglib 'uri'.- Returns:
- An array of two Strings: The first element denotes the real path to the TLD. If the path to the TLD points to a jar file, then the second element denotes the name of the TLD entry in the jar file. Returns null if the given uri is not associated with any tag library 'exposed' in the web application.
- Throws:
JasperException
-
keepGenerated
public boolean keepGenerated()Are we keeping generated code around? -
compile
-
getClassName
-
load
- Throws:
JasperException
-
checkOutputDir
public void checkOutputDir()
-