<%-- $Id$ CDDL HEADER START The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. See LICENSE.txt included in this distribution for the specific language governing permissions and limitations under the License. When distributing Covered Code, include this CDDL HEADER in each file and include the License file at LICENSE.txt. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] CDDL HEADER END Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. Portions Copyright 2011 Jens Elkner. --%> <%@page import=" java.io.BufferedInputStream, java.io.BufferedReader, java.io.FileInputStream, java.io.FileReader, java.io.InputStream, java.io.InputStreamReader, java.io.Reader, java.net.URLEncoder, java.util.ArrayList, java.util.Arrays, java.util.List, java.util.Set, java.util.logging.Level, java.util.zip.GZIPInputStream, org.opensolaris.opengrok.analysis.AnalyzerGuru, org.opensolaris.opengrok.analysis.Definitions, org.opensolaris.opengrok.analysis.FileAnalyzer.Genre, org.opensolaris.opengrok.analysis.FileAnalyzerFactory, org.opensolaris.opengrok.history.Annotation, org.opensolaris.opengrok.index.IndexDatabase, org.opensolaris.opengrok.web.DirectoryListing" %><% { // need to set it here since requesting parameters if (request.getCharacterEncoding() == null) { request.setCharacterEncoding("UTF-8"); } cfg = PageConfig.get(request); Annotation annotation = cfg.getAnnotation(); if (annotation != null) { int r = annotation.getWidestRevision(); int a = annotation.getWidestAuthor(); cfg.addHeaderData(""); } } %><%@include file="mast.jsp" %> <% /* ---------------------- list.jsp start --------------------- */ { cfg = PageConfig.get(request); String rev = cfg.getRequestedRevision(); File resourceFile = cfg.getResourceFile(); String path = cfg.getPath(); String basename = resourceFile.getName(); String rawPath = request.getContextPath() + Prefix.DOWNLOAD_P + path; Reader r = null; if (cfg.isDir()) { // valid resource is requested // mast.jsp assures, that resourceFile is valid and not / // see cfg.resourceNotAvailable() Project activeProject = Project.getProject(resourceFile); String cookieValue = cfg.getRequestedProjectsAsString(); if (activeProject != null) { Set projects = cfg.getRequestedProjects(); if (!projects.contains(activeProject.getDescription())) { projects.add(activeProject.getDescription()); // update cookie cookieValue = cookieValue.length() == 0 ? activeProject.getDescription() : activeProject.getDescription() + ',' + cookieValue; Cookie cookie = new Cookie(PageConfig.OPEN_GROK_PROJECT, URLEncoder.encode(cookieValue, "utf-8")); // TODO hmmm, projects.jspf doesn't set a path cookie.setPath(request.getContextPath() + '/'); response.addCookie(cookie); } } // requesting a directory listing DirectoryListing dl = new DirectoryListing(cfg.getEftarReader()); List files = cfg.getResourceFileList(); if (!files.isEmpty()) { List readMes = dl.listTo( Util.URIEncodePath(request.getContextPath()), resourceFile, out, path, files); File[] catfiles = cfg.findDataFiles(readMes); for (int i=0; i < catfiles.length; i++) { if (catfiles[i] == null) { continue; } %> <% if (readMes.get(i).toLowerCase().endsWith(".md")) { %>

<%= readMes.get(i) %>

<%
            Util.dump(out, catfiles[i], catfiles[i].getName().endsWith(".gz"));
        %>
<% } else { %>

<%= readMes.get(i) %>

<%
            Util.dump(out, catfiles[i], catfiles[i].getName().endsWith(".gz"));
        %>
<% } } } } else if (rev.length() != 0) { // requesting a previous revision FileAnalyzerFactory a = AnalyzerGuru.find(basename); Genre g = AnalyzerGuru.getGenre(a); String error = null; if (g == Genre.PLAIN|| g == Genre.HTML || g == null) { InputStream in = null; try { in = HistoryGuru.getInstance() .getRevision(resourceFile.getParent(), basename, rev); } catch (Exception e) { // fall through to error message error = e.getMessage(); } if (in != null) { try { if (g == null) { a = AnalyzerGuru.find(in); g = AnalyzerGuru.getGenre(a); } if (g == Genre.DATA || g == Genre.XREFABLE || g == null) { %>
Binary file [Click here to download]
<% } else { %>
<%= basename %> revision <%= Util.htmlize(rev) %>
<%
                        if (g == Genre.PLAIN) {
                            // We don't have any way to get definitions
                            // for old revisions currently.
                            Definitions defs = null;
                            Annotation annotation = cfg.getAnnotation();
                            //not needed yet
                            //annotation.writeTooltipMap(out);
                            r = new InputStreamReader(in);
                            AnalyzerGuru.writeXref(a, r, out, defs,
                                annotation, Project.getProject(resourceFile));
                        } else if (g == Genre.IMAGE) {
    %>
<%
                        } else if (g == Genre.HTML) {
                            r = new InputStreamReader(in);
                            Util.dump(out, r);
                        } else {
    %> Click download <%= basename %><%
                        }
                    }
                } catch (IOException e) {
                    error = e.getMessage();
                } finally {
                    if (r != null) {
                        try { r.close(); in = null;}
                        catch (Exception e) { /* ignore */ }
                    }
                    if (in != null) {
                        try { in.close(); }
                        catch (Exception e) { /* ignore */ }
                    }
                }
    %>
<% } else { %>

Error reading file

<% if (error != null) { %>

<%= error %>

<% } } } else if (g == Genre.IMAGE) { %>
<% } else { %>
Binary file [Click here to download]
<% } } else { // requesting cross referenced file File xrefFile = null; if (!cfg.annotate()) { xrefFile = cfg.findDataFile(); } if (xrefFile != null) { %>
<%
            Util.dump(out, xrefFile, xrefFile.getName().endsWith(".gz"));
    %>
<% } else { // annotate BufferedInputStream bin = new BufferedInputStream(new FileInputStream(resourceFile)); try { FileAnalyzerFactory a = AnalyzerGuru.find(basename); Genre g = AnalyzerGuru.getGenre(a); if (g == null) { a = AnalyzerGuru.find(bin); g = AnalyzerGuru.getGenre(a); } if (g == Genre.IMAGE) { %>
<% } else if ( g == Genre.HTML) { r = new InputStreamReader(bin); Util.dump(out, r); } else if (g == Genre.PLAIN) { %>
<%
                    // We're generating xref for the latest revision, so we can
                    // find the definitions in the index.
                    Definitions defs = IndexDatabase.getDefinitions(resourceFile);
                    Annotation annotation = cfg.getAnnotation();
                    r = new InputStreamReader(bin);
                    AnalyzerGuru.writeXref(a, r, out, defs, annotation,
                        Project.getProject(resourceFile));
    %>
<% } else { %> Click download <%= basename %><% } } finally { if (r != null) { try { r.close(); bin = null; } catch (Exception e) { /* ignore */ } } if (bin != null) { try { bin.close(); } catch (Exception e) { /* ignore */ } } } } } } /* ---------------------- list.jsp end --------------------- */ %><%@ include file="foot.jspf" %>