w2phtml/src/main/java/writer2latex/xhtml/content/NoteParser.java

217 lines
7.5 KiB
Java
Raw Normal View History

/************************************************************************
*
* NoteConverter.java
*
* Copyright: 2002-2015 by Henrik Just
*
* This file is part of Writer2LaTeX.
*
* Writer2LaTeX is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Writer2LaTeX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Writer2LaTeX. If not, see <http://www.gnu.org/licenses/>.
*
* Version 1.6 (2015-06-14)
*
*/
2020-01-29 11:40:29 +01:00
package writer2latex.xhtml.content;
import java.util.ArrayList;
2020-01-21 18:16:03 +01:00
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
2020-01-21 18:16:03 +01:00
import java.util.Map.Entry;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import writer2latex.office.OfficeReader;
import writer2latex.office.PropertySet;
import writer2latex.office.XMLString;
import writer2latex.util.Misc;
2020-01-29 11:40:29 +01:00
import writer2latex.xhtml.Converter;
import writer2latex.xhtml.Parser;
import writer2latex.xhtml.StyleInfo;
import writer2latex.xhtml.XhtmlConfig;
/** This is a base class handles the conversion of footnotes and endnotes
*/
2020-01-29 11:09:59 +01:00
class NoteParser extends Parser {
// The notes configuration
private PropertySet noteConfig;
// The collection of notes
2020-01-21 18:16:03 +01:00
//private List<Node> notes = new ArrayList<Node>();
private HashMap<String, List<Node>> notes = new HashMap<String, List<Node>>();
/** Construct a new note converter
*
* @param ofr the office reader used to read the source document
* @param config the configuration
* @param converter the converter
* @param noteConfig the configuration of the notes
*/
2020-01-29 11:09:59 +01:00
NoteParser(OfficeReader ofr, XhtmlConfig config, Converter converter, PropertySet noteConfig) {
super(ofr,config,converter);
this.noteConfig = noteConfig;
}
/** Handle a footnote or endnote. This method inserts the citation and stores the actual note for later processing
*
* @param onode a text:note element
* @param hnode the inline HTML element to contain the citation
*/
2020-01-21 18:16:03 +01:00
void handleNote(Node onode, Node hnode, String section) {
// Create a style span for the citation
String sCitBodyStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_BODY_STYLE_NAME);
2020-03-09 11:39:28 +01:00
Element span = getTextParser().createInline((Element) hnode,sCitBodyStyle);
// Add target and back-link to the span
String sId = Misc.getAttribute(onode,XMLString.TEXT_ID);
Element link = converter.createLink(sId);
converter.addTarget(link,"body"+sId);
converter.addEpubType(link, "noteref");
span.appendChild(link);
// Get the citation
Element citation = Misc.getChildByTagName(onode,XMLString.TEXT_NOTE_CITATION);
if (citation==null) { // try old format
citation = Misc.getChildByTagName(onode,XMLString.TEXT_FOOTNOTE_CITATION);
if (citation==null) {
citation = Misc.getChildByTagName(onode,XMLString.TEXT_ENDNOTE_CITATION);
}
}
// Insert the citation
if (citation!=null) {
2020-03-09 11:39:28 +01:00
getTextParser().traversePCDATA(citation,link);
}
// Remember the actual note
2020-01-21 18:16:03 +01:00
List<Node> noteList = notes.get(section);
if (noteList == null) {
noteList = new ArrayList<Node>();
notes.put(section, noteList);
}
2020-01-22 16:42:14 +01:00
noteList.add(onode);
}
boolean hasNotes() {
return notes.size()>0;
}
Element createNoteSection(Node hnode, String sEpubType) {
Element section = converter.createElement(converter.isHTML5() ? "section" : "div");
hnode.appendChild(section);
converter.addEpubType(section, sEpubType);
return section;
}
void insertNoteHeading(Node hnode, String sHeading, String sTarget) {
if (sHeading.length()>0) {
// Create heading
Element heading = converter.createElement("h1");
hnode.appendChild(heading);
heading.appendChild(converter.createTextNode(sHeading));
// Add to external content.
if (config.getXhtmlSplitLevel()>0) {
converter.addContentEntry(sHeading, 1, null);
}
else {
//For single output file we need a target
converter.addTarget(heading,sTarget);
converter.addContentEntry(sHeading, 1, sTarget);
}
}
}
2020-01-21 18:16:03 +01:00
public void flushAllNotes(Node hnode, String sEpubType) {
for (Entry<String, List<Node>> entry : notes.entrySet()) {
flushNotes(hnode, sEpubType, entry.getKey());
}
}
2020-01-21 18:16:03 +01:00
public void flushNotes(Node hnode, String sEpubType, String section) {
List<Node> noteList = notes.get(section);
2020-01-22 16:42:14 +01:00
if (noteList == null) {
//System.out.println("noteList is null");
//System.out.println("notes " + notes.size());
/*for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
System.out.println(ste);
}*/
return;
}
2020-01-21 18:16:03 +01:00
int nSize = noteList.size();
for (int i=0; i<nSize; i++) {
2020-01-21 18:16:03 +01:00
Node note = noteList.get(i);
// Create container
Element aside = converter.createElement(converter.isHTML5() ? "aside" : "div");
hnode.appendChild(aside);
converter.addEpubType(aside, sEpubType);
// Get the citation
Node citation = Misc.getChildByTagName(note,XMLString.TEXT_NOTE_CITATION);
if (citation==null) { // try old format
citation = Misc.getChildByTagName(note,XMLString.TEXT_FOOTNOTE_CITATION);
if (citation==null) {
citation = Misc.getChildByTagName(note,XMLString.TEXT_ENDNOTE_CITATION);
}
}
// Get the body
Node body = Misc.getChildByTagName(note,XMLString.TEXT_NOTE_BODY);
if (body==null) { // try old format
body = Misc.getChildByTagName(note,XMLString.TEXT_FOOTNOTE_BODY);
if (body==null) {
body = Misc.getChildByTagName(note,XMLString.TEXT_ENDNOTE_BODY);
}
}
// Export the note
String sId = Misc.getAttribute(note,XMLString.TEXT_ID);
converter.addTarget(aside,sId);
createAnchor(sId,citation);
2020-03-09 11:39:28 +01:00
getTextParser().traverseBlockText(body,aside);
}
2020-01-21 18:16:03 +01:00
//noteList.clear();
notes.remove(section);
}
private void createAnchor(String sId, Node citation) {
// Create target and link
Element link = converter.createLink("body"+sId);
// Style it
String sCitStyle = noteConfig.getProperty(XMLString.TEXT_CITATION_STYLE_NAME);
StyleInfo linkInfo = new StyleInfo();
getTextSP().readStyle(sCitStyle,linkInfo);
2020-02-03 10:51:42 +01:00
writeStyle(linkInfo,link);
// Add prefix
String sPrefix = noteConfig.getProperty(XMLString.STYLE_NUM_PREFIX);
if (sPrefix!=null) {
link.appendChild(converter.createTextNode(sPrefix));
}
// Add citation
2020-03-09 11:39:28 +01:00
getTextParser().traversePCDATA(citation,link);
// Add suffix
String sSuffix = noteConfig.getProperty(XMLString.STYLE_NUM_SUFFIX);
if (sSuffix!=null) {
link.appendChild(converter.createTextNode(sSuffix));
}
// Add space
Element span = converter.createElement("span");
span.appendChild(link);
span.appendChild(converter.createTextNode(" "));
// Save it for later insertion
2020-03-09 11:39:28 +01:00
getTextParser().setAsapNode(span);
}
}