/*
* 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, 2010, Oracle and/or its affiliates. All rights reserved.
*/
package org.opensolaris.opengrok.analysis.plain;
import org.opensolaris.opengrok.analysis.JFlexXref;
import org.opensolaris.opengrok.util.StringUtils;
import java.io.IOException;
import java.io.Writer;
import java.io.Reader;
import org.opensolaris.opengrok.web.Util;
%%
%public
%class XMLXref
%extends JFlexXref
%unicode
%ignorecase
%int
%{
// TODO move this into an include file when bug #16053 is fixed
@Override
protected int getLineNumber() { return yyline; }
@Override
protected void setLineNumber(int x) { yyline = x; }
%}
WhiteSpace = [ \t\f]
EOL = \r|\n|\r\n
URIChar = [\?\+\%\&\:\/\.\@\_\;\=\$\,\-\!\~\*\\]
FNameChar = [a-zA-Z0-9_\-\.]
File = {FNameChar}+ "." ([a-zA-Z]+) {FNameChar}*
Path = "/"? {FNameChar}+ ("/" {FNameChar}+)+[a-zA-Z0-9]
FileChar = [a-zA-Z_0-9_\-\/]
NameChar = {FileChar}|"."
%state TAG STRING COMMENT SSTRING CDATA
%%
<YYINITIAL> {
"<!--" { yybegin(COMMENT); out.write("<span class=\"c\">&lt;!--"); spans.push("c"); }
"<![CDATA[" {
yybegin(CDATA);
out.write("&lt;<span class=\"n\">![CDATA[</span><span class=\"c\">"); spans.push("c");
}
"<" { yybegin(TAG); out.write("&lt;");}
}
<TAG> {
[a-zA-Z_0-9]+{WhiteSpace}*\= { out.write("<b>"); out.write(yytext()); out.write("</b>"); }
[a-zA-Z_0-9]+ { out.write("<span class=\"n\">"); out.write(yytext()); out.write("</span>"); }
\" { yybegin(STRING); out.write("<span class=\"s\">\""); spans.push("s"); }
\' { yybegin(SSTRING); out.write("<span class=\"s\">'"); spans.push("s"); }
">" { yybegin(YYINITIAL); out.write("&gt;"); }
"<" { yybegin(YYINITIAL); out.write("&lt;"); }
}
<STRING> {
\" {WhiteSpace}* \" { out.write(yytext());}
\" { yybegin(TAG); out.write("\"</span>"); spans.pop(); }
}
<STRING, SSTRING, COMMENT, CDATA> {
"<" {out.write( "&lt;");}
">" {out.write( "&gt;");}
}
<SSTRING> {
\' {WhiteSpace}* \' { out.write(yytext());}
\' { yybegin(TAG); out.write("'</span>"); spans.pop(); }
}
<COMMENT> {
"-->" { yybegin(YYINITIAL); out.write("--&gt;</span>"); spans.pop(); }
}
<CDATA> {
"]]>" {
yybegin(YYINITIAL); out.write("<span class=\"n\">]]</span></span>&gt;"); spans.pop();
}
}
<YYINITIAL, COMMENT, CDATA, STRING, SSTRING, TAG> {
{File}|{Path}
{
final String path = yytext();
final char separator = StringUtils.isPossiblyJavaClass(path) ? '.' : '/';
final String hyperlink =
Util.breadcrumbPath(urlPrefix + "path=", path, separator,
getProjectPostfix(), true);
out.append(hyperlink);
}
("http" | "https" | "ftp" ) "://" ({FNameChar}|{URIChar})+[a-zA-Z0-9/]
{String s=yytext();
out.write("<a href=\"");
out.write(Util.uriEncodeURL(s));out.write("\">");
out.write(Util.htmlize(s));out.write("</a>");}
{NameChar}+ "@" {NameChar}+ "." {NameChar}+
{
writeEMailAddress(yytext());
}
"&" {out.write( "&amp;");}
{EOL} {startNewLine(); }
[ !-~\t\f] {out.write(yycharat(0));}
. { writeUnicodeChar(yycharat(0)); }
}