Search in sources :

Example 1 with Chapter

use of us.parr.bookish.model.Chapter in project bookish by parrt.

the class Translator method visitChapter.

@Override
public OutputModelObject visitChapter(BookishParser.ChapterContext ctx) {
    String title = ctx.chap.getText();
    title = title.substring(title.indexOf(' ') + 1).trim();
    Pair<String, String> results = splitSectionTitle(title);
    title = results.a;
    String anchor = results.b;
    EntityDef def = null;
    if (anchor != null) {
        def = document.getEntity(anchor);
        if (def == null) {
            System.err.printf("line %d: Unknown label '%s'\n", ctx.start.getLine(), anchor);
            return null;
        }
    }
    OutputModelObject auth = null;
    if (ctx.author() != null) {
        auth = visit(ctx.author());
    }
    OutputModelObject preabs = null;
    if (ctx.preabstract() != null) {
        preabs = visit(ctx.preabstract());
    }
    OutputModelObject abs = null;
    if (ctx.abstract_() != null) {
        abs = visit(ctx.abstract_());
    }
    List<ContainerWithTitle> sections = new ArrayList<>();
    for (ParseTree el : ctx.children) {
        if (el instanceof BookishParser.SectionContext) {
            OutputModelObject m = visit(el);
            sections.add((Section) m);
        }
    }
    Join sec = (Join) visitSection_content(ctx.section_content());
    Chapter chapter = new Chapter(def, title, null, (Author) auth, (PreAbstract) preabs, (Abstract) abs, sec != null ? sec.elements : null, sections);
    return chapter;
}
Also used : OutputModelObject(us.parr.bookish.model.OutputModelObject) ContainerWithTitle(us.parr.bookish.model.ContainerWithTitle) ArrayList(java.util.ArrayList) Chapter(us.parr.bookish.model.Chapter) Join(us.parr.bookish.model.Join) ParseTree(org.antlr.v4.runtime.tree.ParseTree) EntityDef(us.parr.bookish.model.entity.EntityDef)

Aggregations

ArrayList (java.util.ArrayList)1 ParseTree (org.antlr.v4.runtime.tree.ParseTree)1 Chapter (us.parr.bookish.model.Chapter)1 ContainerWithTitle (us.parr.bookish.model.ContainerWithTitle)1 Join (us.parr.bookish.model.Join)1 OutputModelObject (us.parr.bookish.model.OutputModelObject)1 EntityDef (us.parr.bookish.model.entity.EntityDef)1