X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Ftib%2FTibDoc.java;h=273c639875b414cd9d0ce61f0d15d2e22c0e434f;hp=a26219122996c19191bfd8f8998f4d3fb1afc707;hb=ffd80456c6b2979ea5fa2a672c0bdd43a700c055;hpb=8a9fc9f2357e54052374cf2ef003630a486a6c0a diff --git a/src/edu/berkeley/sbp/tib/TibDoc.java b/src/edu/berkeley/sbp/tib/TibDoc.java index a262191..273c639 100644 --- a/src/edu/berkeley/sbp/tib/TibDoc.java +++ b/src/edu/berkeley/sbp/tib/TibDoc.java @@ -1,101 +1,182 @@ -// Copyright 2005 the Contributors, as shown in the revision logs. -// Licensed under the Apache Public Source License 2.0 ("the License"). -// You may not use this file except in compliance with the License. +// Copyright 2006 all rights reserved; see LICENSE file for BSD-style license package edu.berkeley.sbp.tib; -//import org.ibex.util.*; -//import org.ibex.io.*; import edu.berkeley.sbp.*; import edu.berkeley.sbp.misc.*; +import edu.berkeley.sbp.meta.*; +import edu.berkeley.sbp.util.*; +import edu.berkeley.sbp.chr.*; +import edu.berkeley.sbp.bind.*; import java.util.*; import java.io.*; +import static edu.berkeley.sbp.meta.MetaGrammar.*; public class TibDoc { - - public static void main(String[] s) throws Exception { - System.out.println("parsing " + s[0]); - Tree res = new CharToken.CharToStringParser(MetaGrammar.make()).parse(new CharToken.Stream(new FileInputStream(s[0]))).expand1(); - MetaGrammar gram = (MetaGrammar)new Tib.Grammar().walk(res); - //System.out.println(gram); - Union mg = gram.done(); - - System.out.println("\nparsing " + s[1]); - Forest f = new CharToken.CharToStringParser(mg).parse(new Tib(new FileInputStream(s[1]))); - System.out.println(f); - System.out.println(((Tree)walk(f.expand1())).toString(0, 0, 120)); - } + /* + public static Text lf() { Chars ret = new Chars(); ret.text = "\n"; return ret; } + public static Text cr() { Chars ret = new Chars(); ret.text = "\r"; return ret; } + public static Text emdash() { return new Entity("mdash"); } + public static char urlescape(int a, int b) { return (char)(10*a+b); } + - public static Tree walk(Tree tree) { - String head = tree.head(); - if ("stringify".equals(head)) { - String ret = ""; - for(Tree t : tree.child(0)) ret += t; - return new Tree(null, ret); + // Template Classes ////////////////////////////////////////////////////////////////////////////// + + public static abstract class Text implements ToHTML { + public static final Class[] subclasses = new Class[] { Chars.class, URL.class, Email.class }; + public void toHTML(ToHTML.HTML sb) { } + public static class TextString extends Text { + public String text; + public String tag() { return null; } + public void toHTML(ToHTML.HTML sb) { sb.tag(tag(), text); } + } + public static class TextArray extends Text { + public Text[] t; + public String tag() { return null; } + public void toHTML(ToHTML.HTML sb) { sb.tag(tag(), t); } } - Tree[] children = new Tree[tree.numChildren()]; - for(int i=0; i(null, head, children); } - /* - public static enum Style { H, UL, TT, SO, IT, Q, B, PRE, LIST, EMDASH; } - - public static AST h(AST a) { return new Gather(a, Style.H); } - public static AST ul(AST a) { return new Gather(a, Style.UL); } - public static AST tt(AST a) { return new Gather(a, Style.TT); } - public static AST so(AST a) { return new Gather(a, Style.SO); } - public static AST it(AST a) { return new Gather(a, Style.IT); } - public static AST q(AST a) { return new Gather(a, Style.Q); } - public static AST b(AST a) { return new Gather(a, Style.B); } - public static AST pre(AST a) { return new Gather(a, Style.PRE); } - public static AST list(AST a) { return new Gather(a, Style.LIST); } - public static AST emdash() { return new Gather(Style.EMDASH); } - - public static AST seq(AST a) { return new Gather(a); } - - public static class Latex { - public static void emit(PrintWriter p, AST a) { - prefix(p); - emit(p, a, ""); - suffix(p); - } - public static void emit2(PrintWriter p, AST ast, String head) { - for(AST a = ast.getFirstChild(); a != null; a = a.getNextSibling()) emit(p, a, head); - } - public static void emit(PrintWriter p, AST ast, String head) { - if (!(ast instanceof Gather)) { - if (ast.getNumberOfChildren()==0) { - p.print(ast.getText()); - } else { - emit2(p, ast, head); + // Structural ////////////////////////////////////////////////////////////////////////////// + + public static class Doc implements ToHTML { + public Header head; + public Body body; + public void toHTML(ToHTML.HTML sb) { sb.tag("html", body); } + public static class Header extends HashMap { + public static class KeyVal { public String key; public Text[] val; } + public void attrs(KeyVal[] KeyVals) { for(int i=0; i\n"); } } + public static class P extends Text.TextArray implements Paragraph { public String tag() { return "p"; } } + public static class Blockquote extends Text.TextArray implements Paragraph { public String tag() { return "blockquote"; } } + } + + public static abstract class List extends Text { + public Text[][] points; + public abstract String tag(); + public void toHTML(ToHTML.HTML sb) { + sb.append("<"+tag()+">\n"); + for(Text[] t : points) sb.tag("li", t); + sb.append("\n"); + } + } + public static class OL extends List { public String tag() { return "ol"; } } + public static class UL extends List { public String tag() { return "ul"; } } + + + + // Tags ////////////////////////////////////////////////////////////////////////////// + + public static class Chars extends Text.TextString { } + public static class Symbol extends Text.TextString { } + public static class Keyword extends Text.TextString { public String tag() { return "tt"; } } + public static class Subscript extends Text.TextString { public String tag() { return "sub"; } } + public static class Superscript extends Text.TextString { public String tag() { return "super"; } } + public static class Bold extends Text.TextArray { public String tag() { return "b"; } } + public static class Smallcap extends Text.TextArray { public String tag() { return "sc"; } } + public static class Strikethrough extends Text.TextArray { public String tag() { return "strike"; } } + public static class TT extends Text.TextArray { public String tag() { return "tt"; } } + public static class Underline extends Text.TextArray { public String tag() { return "u"; } } + public static class Italic extends Text.TextArray { public String tag() { return "i"; } } + public static class Citation extends Text.TextArray { } // FIXME + public static class Footnote extends Text.TextArray { } // FIXME + public static class LineBreak extends Text { public void toHTML(ToHTML.HTML sb) { sb.tag("br"); } } + public static class Today extends Text { } + public static class Euro extends Text { public void toHTML(ToHTML.HTML sb) { sb.entity(8364); } } + public static class Link extends Text { + public Text[] text; + public URI href; + public void toHTML(ToHTML.HTML sb) { sb.tag("a", new Object[] { "href", href }, text); } + } + public static class Entity extends Text { + public final String entity; + public Entity(String entity) { this.entity = entity; } + public void toHTML(ToHTML.HTML sb) { sb.entity(entity); } + } + + + // Network ////////////////////////////////////////////////////////////////////////////// + + public static interface Host extends ToHTML { + public static class DNS implements Host { + public String[] part; + public void toHTML(ToHTML.HTML sb) { + for(int i=0; i", 0x2192), + new Entity("leftDoubleArrow", "<==", 0x21D0), + new Entity("rightDoubleArrow", "==>", 0x21D2), + new Entity("doubleLeftRightArrow", "<==>", 0x21D4), + new Entity("upArrow", 0x2191), + new Entity("downArrow", 0x2193), + new Entity("upDoubleArrow", 0x21D1), + new Entity("downDoubleArrow", 0x21D3), + new Entity("forall", 0x2200), + new Entity("exists", 0x2203), + new Entity("emptySet", 0x2205), + new Entity("in", 0x2208), + new Entity("cent", 0xA2), + new Entity("pi", 0x220F), + new Entity("sigma", 0x2211), + new Entity("infinity", 0x221E), + new Entity("proportional", 0x221D), + new Entity("check", 0x221A), + new Entity("asterisk", 0x2217), + new Entity("minus", 0x2212), + new Entity("angle", 0x2220), + new Entity("and", 0x2227), + new Entity("or", 0x2228), + new Entity("intersection", 0x2229), + new Entity("union", 0x222A), + new Entity("integral", 0x222B), + new Entity("therefore", 0x2234), + new Entity("congruent", 0x2245), + new Entity("similarTo", 0x2248), + new Entity("identical", 0x2261), + new Entity("neq", 0x2260), + new Entity("subset", 0x2282), + new Entity("superset", 0x2283), + new Entity("notSubset", 0x2284), + new Entity("subsetEq", 0x2286), + new Entity("supersetEq", 0x2287), + new Entity("circlePlus", 0x2295), + new Entity("circleTimes", 0x2297), + new Entity("bottom", 0x22A5), + new Entity("cdot", 0x22C5), + new Entity("openDiamonds", 0x25CA), + new Entity("spade", 0x2660), + new Entity("clubs", 0x2663), + new Entity("hearts", 0x2665), + new Entity("diamonds", 0x2666), + new Entity("prime", 0x2032), + new Entity("reals", 0x211C), + new Entity("powerSet", 0x2118), + new Entity("overScore", 0x203E), + new Entity("yen", 0xA5), + new Entity("plusminus", 0xB1), + new Entity("micro", 0xB5), + new Entity("superScriptOne", 0xB9), + new Entity("superScriptTwo", 0xB2), + new Entity("superScriptThree", 0xB3), + new Entity("oneQuarter", 0xBC), + new Entity("oneHalf", 0xBD), + new Entity("threeQuarters", 0xBE), + new Entity("paragraphSymbol", 0xB6), + new Entity("times", 0xD7), + new Entity("daggar", 0x86), + new Entity("sectionSymbol", 0xA7), + new Entity("not", 0xAC), + new Entity("cr", 0x2193), + new Entity("dot", 0xB7), + }; + + public static @bind Object command(String s) { + if (s.equals("br")) return new LineBreak(); + if (s.equals("today")) return new Today(); + for(Entity e : entities) + if (e.name.equals(s)) + return e; + return null; + } + + public static @bind class Quotes extends Text { + public Text[] text; + public void toHTML(HTML h) { + h.append("\""); + h.append(text); + h.append("\""); + } + } + + public static class Link extends Text { + public Text[] t; + public Url u; + public @bind.as("link") Link(@bind.arg Text[] t, @bind.arg Url u) { this.t = t; this.u = u; } + public Link(String s, Url u) { this(new Text[] { new Chars(s) }, u); } + public void toHTML(HTML h) { + h.tag("a", + new Object[] { "href", u==null ? "" : u.toString() }, + new P(t)); + } + } + + public static class Host { + public String name; + public String toString() { return name; } + public @bind.as("DNS") Host(String[][] parts) { + name = ""; + for(String[] s : parts) { + for(String ss : s) + name += ss; + name += "."; + } + } + public @bind.as("IP") Host(int a, int b, int c, int d) { name = a+"."+b+"."+c+"."+d; } + public Host(String hostname) { + this.name = hostname; + } + + } + + public static class Url extends Text { + public String method; + public Host host; + public String user; + public String pass; + public String port; + public String path; + public String ref; + public @bind.as("URL") Url(String method, String[] login, Host host, String port, String path, String ref) { + this.method = method; + this.user = login==null ? null : login.length >= 1 ? login[0] : null; + this.pass = login==null ? null : login.length >= 2 ? login[1] : null; + this.host = host; + this.port = port; + this.path = path; + this.ref = ref; + } + public void toHTML(HTML h) { new Link(toString(), this).toHTML(h); } + public String toString() { + return method + "://" + host + "/" + path + (ref==null ? "" : ("#"+ref)); + } + } + public static class Email extends Url { + public @bind.as("Mailto") Email(String email) { + super("mailto", + null, + new Host(email.substring(email.indexOf('@'))), + "25", + email.substring(email.indexOf('@')), + null + ); + } + public @bind.as("email") Email(String user, Host host) { + super("mailto", null, host, "25", user, null); + } + public void toHTML(HTML h) { + h.tag("a", + new Object[] { "href", "mailto:"+path+"@"+host }, + new P(toString())); + } + public String toString() { return path+"@"+host; } + } + + public static @bind.as("lf") String lf() { return "\r"; } + public static @bind.as("cr") String cr() { return "\n"; } + public static @bind.as("\"\"") String empty() { return ""; } + public static @bind.as("urlescape") char urlescape(char a, char b) { return ((char)((a-'0') * 16 + (b-'0'))); } + public static @bind String urlpath(String[] s) { + StringBuffer sb = new StringBuffer(); + for(String st : s) sb.append(st); + return sb.toString(); + } + } + + public static void main(String[] s) throws Exception { + + try { + Tree res = new CharParser(MetaGrammar.newInstance()).parse(new FileInputStream(s[0])).expand1(); + + AnnotationGrammarBindings resolver = new AnnotationGrammarBindings(TD.class); + resolver.add(MetaGrammarBindings.class, "meta"); + Union tibgram = Grammar.create(res, "s", resolver); + + System.err.println("parsing " + s[1]); + Tree t = new CharParser(tibgram).parse(new Tib(new FileInputStream(s[1]))).expand1(); + System.out.println("tree:\n" + t.toPrettyString()); + + Object result = ((Functor)t.head()).invoke(t); + TD.Doc doc = (TD.Doc)result; + System.out.println(doc); + + StringBuffer sb = new StringBuffer(); + ToHTML.HTML html = new ToHTML.HTML(sb); + doc.toHTML(html); + FileOutputStream fos = new FileOutputStream("out.html"); + PrintWriter p = new PrintWriter(new OutputStreamWriter(fos)); + p.println(sb); + p.flush(); + p.close(); + } catch (Ambiguous a) { + FileOutputStream fos = new FileOutputStream("/Users/megacz/Desktop/out.dot"); + PrintWriter p = new PrintWriter(new OutputStreamWriter(fos)); + GraphViz gv = new GraphViz(); + a.getAmbiguity().toGraphViz(gv); + gv.dump(p); + p.flush(); + p.close(); + a.printStackTrace(); + + } catch (Exception e) { + e.printStackTrace(); + } + + } + + + private static final String[] stylesheet = new String[] { + "H1 {", + " margin-left: -20px;", + " margin-top: 30px;", + " font-family: helvetica, verdana, arial, sans-serif;", + " font-size: 14pt;", + " font-weight: bold;", + " text-align: left;", + " width : 100%;", + " border-top-width: 2pt;", + " border-top-style: solid;", + "} ", + "", + "H2 {", + " font-family: helvetica, verdana, arial, sans-serif;", + " font-size: 12pt;", + " font-weight: bold;", + "} ", + "", + "H3 {", + " margin-left: -10px;", + " font-family: helvetica, verdana, arial, sans-serif;", + " font-size: 12pt;", + " font-weight: bold;", + "} ", + "", + "TH, TD, P, LI {", + " font-family: helvetica, verdana, arial, sans-serif;", + " font-size: 13px; ", + " text-decoration:none; ", + "}", + "", + "LI { margin-top: 5px; }", + "div.terminal {", + " text-align: left;", + " font-family: monospace;", + " border-style: solid;", + " border-width: 2px 2px 2px 2px;", + " white-space: pre;", + " border-color: #6666aa;", + " color: #FFFFFF;", + " background-color: #000000;", + " margin-bottom: 25px;", + " margin-right: 25px;", + " margin-left: 25px;", + " padding: 10px;", + "}" + }; +}