list.jsp revision 5feb9d4ec8870e9b3bec8aaaa30632851e99463b
7186N/A<%--
7186N/ACDDL HEADER START
7186N/A
7186N/AThe contents of this file are subject to the terms of the
7186N/ACommon Development and Distribution License (the "License").
7186N/AYou may not use this file except in compliance with the License.
7186N/A
7186N/ASee LICENSE.txt included in this distribution for the specific
7186N/Alanguage governing permissions and limitations under the License.
7186N/A
7186N/AWhen distributing Covered Code, include this CDDL HEADER in each
7186N/Afile and include the License file at LICENSE.txt.
7186N/AIf applicable, add the following below this CDDL HEADER, with the
7186N/Afields enclosed by brackets "[]" replaced with your own identifying
7186N/Ainformation: Portions Copyright [yyyy] [name of copyright owner]
7186N/A
7186N/ACDDL HEADER END
7186N/A
7186N/ACopyright 2005 Sun Microsystems, Inc. All rights reserved.
7186N/AUse is subject to license terms.
7186N/A
7186N/Aident "%Z%%M% %I% %E% SMI"
7186N/A
7186N/A--%><%@ page import = "javax.servlet.*,
7186N/Ajava.lang.*,
7186N/Ajavax.servlet.http.*,
7186N/Ajava.util.*,
7186N/Ajava.io.*,
7186N/Ajava.text.*,
7186N/Aorg.opensolaris.opengrok.analysis.*,
7186N/Aorg.opensolaris.opengrok.index.*,
7186N/Aorg.opensolaris.opengrok.analysis.FileAnalyzer.Genre,
7186N/Aorg.opensolaris.opengrok.web.*,
7186N/Aorg.opensolaris.opengrok.history.*
7186N/A"
7186N/A%><%@include file="mast.jsp"%><%
7186N/AString rev = null;
7186N/Aif(!isDir && ef != null) {
7186N/A try {
7186N/A ef.close();
7186N/A } catch (IOException e) {
7186N/A }
7186N/A ef = null;
7186N/A}
7186N/A
7186N/Aif (valid) {
7186N/A if (isDir) {
7186N/A// If requesting a Directory listing -------------
7186N/A DirectoryListing dl = new DirectoryListing(IgnoredNames.ignore, ef);
7186N/A String[] files = resourceFile.list();
7186N/A if (files != null) {
7186N/A Arrays.sort(files, String.CASE_INSENSITIVE_ORDER);
7186N/A ArrayList readMes = dl.listTo(resourceFile, out, path, files);
if(readMes != null && readMes.size() > 0) {
File xdir = new File(getServletContext().getInitParameter("DATA_ROOT") + "/xref" + path);
if(xdir.exists() && xdir.isDirectory()) {
char[] buf = new char[8192];
for(int i = 0; i< readMes.size(); i++) {
try {
BufferedReader br = new BufferedReader(new FileReader(new File(xdir, (String)readMes.get(i))));
int len = 0;
%><h3><%=(String)readMes.get(i)%></h3><div id="src"><pre><%
while((len = br.read(buf)) > 0) {
out.write(buf, 0, len);
}
%></pre></div><%
br.close();
} catch(IOException e) {
}
}
}
}
}
} else if ((rev = request.getParameter("r")) != null && !rev.equals("")) {
// Else if requesting a previous revision -------------
if(noHistory) {
response.sendError(404, "Revision not found");
} else if (rev.matches("^[0-9]+(\\.[0-9]+)*$")) {
Class a = AnalyzerGuru.find(basename);
Genre g = AnalyzerGuru.getGenre(a);
if (g == Genre.PLAIN|| g == Genre.HTML || g == null) {
InputStream in = null;
try{
in = HistoryGuru.getInstance().getRevision(resourceFile.getParent(), basename, rev);
} catch (Exception e) {
response.sendError(404, "Revision not found");
return;
}
if(in != null) {
try {
if (g == null) {
a = AnalyzerGuru.find(in);
g = AnalyzerGuru.getGenre(a);
}
if (g == Genre.DATA || g == Genre.XREFABLE || g == null) {
%> <div id="src">Binary file [Click <a href="<%=context%>/raw<%=path%>?r=<%=rev%>">here</a> to download] </div><%
} else {
%><div id="src"><span class="pagetitle"><%=basename%> revision <%=rev%> </span><pre>
<%
if (g == Genre.PLAIN) {
System.setProperty("urlPrefix", context+"/s?");
AnalyzerGuru.writeXref(a, in, out);
} else if (g == Genre.IMAGE) {
%><img src="<%=context%>/raw<%=path%>?r=<%=rev%>"/><%
} else if (g == Genre.HTML) {
char[] buf = new char[8192];
Reader br = new InputStreamReader(in);
int len = 0;
while((len = br.read(buf)) > 0) {
out.write(buf, 0, len);
}
} else {
%> Click <a href="<%=context%>/raw<%=path%>?r=<%=rev%>">download <%=basename%></a><%
}
}
} catch (IOException e) {
%> <h3 class="error">IO Error</h3> <p> <%=e.getMessage() %> </p> <%
}
%></pre></div><%
in.close();
} else {
%> <h3 class="error">Error reading file</h3> <%
}
} else if(g == Genre.IMAGE) {
%><div id="src"><img src="<%=context%>/raw<%=path%>?r=<%=rev%>"/></div><%
} else {
%><div id="src"> Binary file [Click <a href="<%=context%>/raw<%=path%>?r=<%=rev%>">here</a> to download] </div><%
}
} else {
%><h3 class="error">Error: Invalid Revision Number!</h3><%
}
} else {
// requesting cross referenced file -------------
String xrefSource = getServletContext().getInitParameter("DATA_ROOT") + "/xref";
String resourceXFile = xrefSource + path;
File xrefFile = new File(resourceXFile);
if(xrefFile.exists()) {
char[] buf = new char[8192];
BufferedReader br = new BufferedReader(new FileReader(resourceXFile));
int len = 0;
%><div id="src"><pre><%
while((len = br.read(buf)) > 0) {
out.write(buf, 0, len);
}
%></pre></div><%
br.close();
} else {
BufferedInputStream bin = new BufferedInputStream(new FileInputStream(resourceFile));
Class a = AnalyzerGuru.find(basename);
Genre g = AnalyzerGuru.getGenre(a);
if(g == null) {
a = AnalyzerGuru.find(bin);
g = AnalyzerGuru.getGenre(a);
}
if (g == Genre.IMAGE) {
%><div id="src"><img src="<%=context%>/raw<%=path%>"/></div><%
} else if( g == Genre.HTML) {
char[] buf = new char[8192];
Reader br = new InputStreamReader(bin);
int len = 0;
while((len = br.read(buf)) > 0) {
out.write(buf, 0, len);
}
} else if(g == Genre.PLAIN) {
%><div id="src"><pre><%
System.setProperty("urlPrefix", context+"/s?");
AnalyzerGuru.writeXref(a, bin, out);
%></pre></div><%
} else {
%> Click <a href="<%=context%>/raw<%=path%>">download <%=basename%></a><%
}
}
}
%><%@include file="foot.jsp"%><%
}
if(ef != null) {
try {
ef.close();
} catch (IOException e) {
}
}
%>