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

397 lines
10 KiB
Java
Raw Normal View History

package writer2latex.xhtml.content;
2016-07-10 16:03:41 +03:00
2020-02-19 09:03:36 +01:00
import java.util.Iterator;
2016-07-10 16:03:41 +03:00
import java.util.LinkedList;
import org.w3c.dom.Document;
2016-09-21 17:22:55 +03:00
import org.w3c.dom.Element;
2016-07-10 16:03:41 +03:00
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import pro.litvinovg.xml.Debug;
2016-07-10 16:03:41 +03:00
import writer2latex.office.XMLString;
import writer2latex.xhtml.Converter;
import writer2latex.xhtml.XhtmlConfig;
2019-04-21 16:03:07 +03:00
import static writer2latex.util.Misc.*;
2016-07-10 16:03:41 +03:00
//LinkedList<String> stringList = new LinkedList<String>();
2020-01-29 11:40:29 +01:00
public class Separator {
2016-07-10 16:03:41 +03:00
2016-09-21 17:22:55 +03:00
private static final String NONE = "none";
private static final String SECTIONS = "sections";
private static final String DIV = "div";
2019-04-21 20:02:37 +03:00
private int splitLevel = 0;
private boolean alignSplitToPages;
2019-04-22 16:04:39 +03:00
private int lastSplitPageNum = 1;
2020-01-25 20:38:53 +01:00
private Integer pageNumber = null;
2020-01-27 11:45:31 +01:00
private String breakStyle = null;
2020-02-19 09:03:36 +01:00
private static LinkedList<Integer> greenstoneStack = new LinkedList<Integer>();
private int[] headingPath;
private static boolean pageOpened = false;
// headings none
2020-02-17 12:47:25 +01:00
private static boolean greenstoneSeparation;
2020-02-19 09:03:36 +01:00
private static boolean rdfSeparation = false;
// sections div none
private static boolean pagination;
2020-01-22 13:08:43 +01:00
private static Converter converter = null;
private Node prevPageContainer = null;
private PageContainer pageContainer = null;
2019-04-21 20:02:37 +03:00
2020-02-19 09:03:36 +01:00
public Separator(XhtmlConfig config, Converter converter) {
2019-04-21 20:02:37 +03:00
this.converter = converter;
2020-02-17 12:47:25 +01:00
greenstoneSeparation = config.getGreenstoneSeparation();
pagination = config.pagination();
2019-04-21 20:02:37 +03:00
splitLevel = config.getXhtmlSplitLevel();
alignSplitToPages = config.getAlignSplitsToPages();
2020-01-27 11:45:31 +01:00
breakStyle = config.getPageBreakStyle();
pageContainer = converter.pageContainer;
2020-02-19 18:31:44 +01:00
rdfSeparation = converter.isRDF;
2020-02-19 09:03:36 +01:00
headingPath = new int[10];
2019-04-21 20:02:37 +03:00
}
2016-07-10 16:03:41 +03:00
2020-02-19 09:03:36 +01:00
public Node processOutlineLevel(Node currentNode, Node hnode, int pageNum) {
// Get outline level
2019-04-21 16:03:07 +03:00
String sLevel = getAttribute(currentNode, XMLString.TEXT_OUTLINE_LEVEL);
2020-02-19 09:03:36 +01:00
// System.out.println(sLevel);
2016-09-25 16:30:52 +03:00
if (sLevel == null || sLevel.isEmpty()) {
2016-09-21 15:03:49 +03:00
return hnode;
2016-08-11 18:38:59 +03:00
}
2020-02-19 18:31:44 +01:00
String title = getTitle(currentNode).trim();
2018-07-31 13:23:38 +03:00
if (title == null || title.isEmpty()) {
return hnode;
}
2020-02-19 09:03:36 +01:00
// System.out.println(sLevel + "after title");
2019-04-21 20:02:37 +03:00
int curLevel = Integer.parseInt(sLevel);
2020-02-17 12:47:25 +01:00
2020-02-19 09:03:36 +01:00
if (noSplitNeeded(pageNum, curLevel)) {
System.out.println(sLevel + "no split needed");
2020-02-17 12:47:25 +01:00
return hnode;
}
2020-02-19 09:03:36 +01:00
if (isSplitTime(curLevel, pageNum)) {
prevPageContainer = hnode;
2019-04-22 16:04:39 +03:00
}
2020-02-19 09:03:36 +01:00
2016-09-25 16:30:52 +03:00
if (pageOpened) {
hnode = closePage(hnode);
}
2019-04-22 16:04:39 +03:00
2020-02-17 12:47:25 +01:00
if (greenstoneSeparation) {
2019-04-21 20:02:37 +03:00
closeCommentHeadings(hnode, curLevel);
2019-04-22 12:12:42 +03:00
}
2019-04-22 16:04:39 +03:00
2020-02-19 09:03:36 +01:00
updateHeadingPath(curLevel);
if (isSplitTime(curLevel, pageNum)) {
2019-04-22 16:04:39 +03:00
hnode = splitFiles(hnode);
lastSplitPageNum = pageNum;
}
2020-02-17 12:47:25 +01:00
if (greenstoneSeparation) {
2019-04-21 18:12:09 +03:00
openCommentHeading(hnode, title);
2020-02-19 09:03:36 +01:00
addToCommentStack(sLevel);
2016-09-25 16:30:52 +03:00
}
2020-02-19 09:03:36 +01:00
2020-02-10 18:57:44 +01:00
if (pagination) {
2019-04-22 16:04:39 +03:00
hnode = openPage(hnode, pageNum);
2016-09-25 16:30:52 +03:00
}
2019-04-22 16:04:39 +03:00
return hnode;
}
2020-02-19 09:03:36 +01:00
private boolean noSplitNeeded(int pageNum, int curLevel) {
return !greenstoneSeparation && !isSplitTime(curLevel,pageNum);
}
private void addToCommentStack(String sLevel) {
greenstoneStack.offerFirst(Integer.parseInt(sLevel));
}
private void updateHeadingPath(int level) {
if (level == 0) {
return;
}
for (int i = 9; i > level - 1; i--) {
headingPath[i] = 0;
}
headingPath[level - 1]++;
}
2019-04-22 16:04:39 +03:00
private Node splitFiles(Node hnode) {
2020-02-19 09:03:36 +01:00
String path = "";
for (int i = 0; i < 10; i++) {
path = path + " " + headingPath[i];
}
2019-04-22 16:04:39 +03:00
hnode = converter.nextOutFile();
2020-02-19 09:03:36 +01:00
((Element) hnode).setAttribute("path", path.trim());
2016-09-21 15:03:49 +03:00
return hnode;
2016-07-10 16:03:41 +03:00
}
2019-04-22 16:04:39 +03:00
2020-02-19 09:03:36 +01:00
private boolean isSplitTime(int curLevel, int pageNum) {
if ((rdfSeparation || splitLevel >= curLevel ) && converter.outFileHasContent()) {
if (alignSplitToPages) {
if (lastSplitPageNum != pageNum) {
return true;
}
} else {
return true;
2019-04-22 16:04:39 +03:00
}
}
return false;
}
2020-02-19 09:03:36 +01:00
public Node processPageBreak(Node currentNode, Node hnode, Integer pageNum) {
if (!pagination) {
2016-09-21 15:03:49 +03:00
return hnode;
2016-08-11 18:38:59 +03:00
}
2016-09-25 16:30:52 +03:00
if (pageOpened) {
hnode = closePage(hnode);
}
hnode = openPage(hnode, pageNum);
2016-09-21 15:03:49 +03:00
return hnode;
2016-07-10 16:03:41 +03:00
}
2020-02-19 09:03:36 +01:00
2020-01-28 12:01:55 +01:00
public boolean isPageOpened() {
return pageOpened;
}
2020-02-19 09:03:36 +01:00
2016-09-25 16:30:52 +03:00
/**
* Opens main document section heading tag
*/
2020-02-19 09:03:36 +01:00
public Node startDocument(Node hnode, String title, int pageNum) {
if (!greenstoneSeparation && !pagination) {
2016-09-21 15:03:49 +03:00
return hnode;
2016-08-11 18:38:59 +03:00
}
2020-02-19 09:03:36 +01:00
if (greenstoneSeparation) {
// Create global section
2019-04-21 18:12:09 +03:00
openCommentHeading(hnode, title);
}
2016-09-21 17:22:55 +03:00
hnode = openPage(hnode, pageNum);
2020-02-19 09:03:36 +01:00
2016-09-21 15:03:49 +03:00
return hnode;
2016-07-10 16:03:41 +03:00
}
2020-02-19 09:03:36 +01:00
// Method to close open tags at the end of the document
public Node endDocument(Node hnode) {
if (!greenstoneSeparation && !pagination) {
2016-09-21 15:03:49 +03:00
return hnode;
2016-08-11 18:38:59 +03:00
}
2020-02-19 09:03:36 +01:00
if (pageOpened) {
2016-09-21 17:22:55 +03:00
hnode = closePage(hnode);
2016-07-10 16:03:41 +03:00
}
2020-02-19 09:03:36 +01:00
if (greenstoneSeparation) {
2019-04-21 18:12:09 +03:00
closeCommentHeadings(hnode, 0);
2020-02-19 09:03:36 +01:00
// Close global section
2019-04-21 16:03:07 +03:00
addCloseComment(hnode);
2020-02-19 09:03:36 +01:00
}
2016-09-21 17:22:55 +03:00
return hnode;
}
2020-02-19 09:03:36 +01:00
private Node openPageDiv(Node node, int curPageNum) {
if (node == null) {
2019-04-21 18:12:09 +03:00
System.out.println("Error: node is null on openPageDiv");
2019-04-21 16:03:07 +03:00
return node;
2016-10-17 17:33:55 +03:00
}
2020-02-10 15:41:03 +01:00
if (prevPageContainer != null && alignSplitToPages) {
2020-02-19 09:03:36 +01:00
alignFilesByHeadings(node, curPageNum);
2019-04-22 16:04:39 +03:00
}
2020-02-19 09:03:36 +01:00
breakPage(node, curPageNum);
2019-04-21 16:03:07 +03:00
Document doc = node.getOwnerDocument();
2019-04-21 18:12:09 +03:00
Element openBlock = (Element) doc.createElement(DIV);
2016-09-21 17:22:55 +03:00
openBlock.setAttribute("class", "pageNum");
2020-01-25 20:38:53 +01:00
openBlock.setAttribute("page", Integer.toString(curPageNum));
2016-09-21 17:22:55 +03:00
// insert open section comment before header node
2020-02-19 09:03:36 +01:00
node.appendChild((Node) openBlock);
2019-04-21 16:03:07 +03:00
node = openBlock;
2016-09-21 17:22:55 +03:00
return openBlock;
}
2020-02-19 09:03:36 +01:00
2020-01-25 20:38:53 +01:00
private void breakPage(Node node, int curPageNum) {
if (pageNumber != null && pageNumber != curPageNum) {
Document doc = node.getOwnerDocument();
Element pageBreak = (Element) doc.createElement(DIV);
pageBreak.setAttribute("class", "pageBreak");
2020-01-27 11:45:31 +01:00
if (breakStyleIsSet()) {
applyBreakStyle(pageBreak);
}
2020-01-25 20:38:53 +01:00
node.appendChild(pageBreak);
}
pageNumber = curPageNum;
}
2020-01-27 11:45:31 +01:00
private void applyBreakStyle(Element pageBreak) {
pageBreak.setAttribute("style", breakStyle);
}
2020-02-19 09:03:36 +01:00
2020-01-27 11:45:31 +01:00
public boolean breakStyleIsSet() {
if (breakStyle == null || breakStyle.isEmpty()) {
return false;
} else {
return true;
}
}
2020-02-19 09:03:36 +01:00
private void alignFilesByHeadings(Node node, int pageNum) {
2019-04-22 16:04:39 +03:00
Document newdoc = node.getOwnerDocument();
Node prevPage = prevPageContainer.getParentNode();
String prevPageNum = getAttribute(prevPage, "page");
2019-04-22 16:04:39 +03:00
if (prevPageNum != null && prevPageNum.equals(Integer.toString(pageNum))) {
if (isElement(prevPage, DIV)) {
Node importedNode = newdoc.importNode(prevPage, true);
2019-04-22 16:04:39 +03:00
node.appendChild(importedNode);
Node prevDoc = prevPage.getParentNode();
if (prevDoc != null) {
2020-02-19 09:03:36 +01:00
prevDoc.removeChild(prevPage);
}
2019-04-22 16:04:39 +03:00
}
}
2020-02-19 09:03:36 +01:00
// no more arrange needed till next file separation
prevPageContainer = null;
2020-02-19 09:03:36 +01:00
2019-04-22 16:04:39 +03:00
}
2020-02-19 09:03:36 +01:00
private static Node exitPageDiv(Node node) {
while (!isRoot(node) && !isElement(node, DIV)) {
2019-04-21 16:03:07 +03:00
node = node.getParentNode();
}
Node result = node.getParentNode();
2020-02-19 09:03:36 +01:00
if (node.getChildNodes().getLength() == 1) {
2020-01-30 19:27:57 +01:00
if (node.getFirstChild().getChildNodes().getLength() == 0) {
2020-02-19 09:03:36 +01:00
result.removeChild(node);
2020-01-30 19:27:57 +01:00
}
2016-09-25 18:43:29 +03:00
}
2020-02-19 09:03:36 +01:00
2016-09-25 18:43:29 +03:00
return result;
2016-07-10 16:03:41 +03:00
}
2020-02-19 09:03:36 +01:00
2019-04-22 16:04:39 +03:00
public static String getTitle(Node currentNode) {
2016-08-11 17:09:29 +03:00
Node content = currentNode.cloneNode(true);
String title = null;
2020-02-19 18:31:44 +01:00
NodeList lineBreaks = ((Element) content).getElementsByTagName(XMLString.TEXT_LINE_BREAK);
NodeList textTabs = ((Element) content).getElementsByTagName(XMLString.TEXT_TAB);
2016-08-11 17:09:29 +03:00
2020-02-19 18:31:44 +01:00
replaceWithSpaces(lineBreaks);
replaceWithSpaces(textTabs);
deleteNotesIn(content);
title = content.getTextContent();
return title;
}
private static void deleteNotesIn(Node content) {
NodeList notes = ((Element) content).getElementsByTagName(XMLString.TEXT_NOTE);
int j = 0;
2020-02-19 09:03:36 +01:00
while (j < notes.getLength()) {
Node note = notes.item(j);
note.getParentNode().removeChild(note);
}
2020-02-19 18:31:44 +01:00
}
private static void replaceWithSpaces(NodeList contentNodes) {
int i = 0;
while (i < contentNodes.getLength()) {
Node node = contentNodes.item(i);
Document doc = node.getOwnerDocument();
Node testSpace = doc.createTextNode(" ");
node.getParentNode().insertBefore(testSpace, node);
node.getParentNode().removeChild(node);
i++;
}
2016-08-11 17:09:29 +03:00
}
2020-02-19 09:03:36 +01:00
private static void openCommentHeading(Node hnode, String title) {
2016-07-10 16:03:41 +03:00
Document doc = hnode.getOwnerDocument();
2019-04-21 16:03:07 +03:00
Node openSection = doc.createComment(openHeadingCommentText(title));
2016-07-10 16:03:41 +03:00
// insert open section comment before header node
hnode.appendChild(openSection);
}
2020-02-19 09:03:36 +01:00
private static void addCloseComment(Node node) {
2019-04-21 16:03:07 +03:00
Document doc = node.getOwnerDocument();
Node closeSection = doc.createComment("</Section>");
2020-02-19 09:03:36 +01:00
// insert open section comment before header node
2019-04-21 16:03:07 +03:00
node.appendChild(closeSection);
2016-07-10 16:03:41 +03:00
}
2020-02-19 09:03:36 +01:00
private static void closeCommentHeadings(Node hnode, int nLevel) {
if (greenstoneStack.isEmpty()) {
return;
}
2020-02-19 09:03:36 +01:00
// Close all sections with level less than current
while (nLevel <= greenstoneStack.peek()) {
2019-04-21 16:03:07 +03:00
addCloseComment(hnode);
2020-02-19 09:03:36 +01:00
greenstoneStack.poll();
if (greenstoneStack.isEmpty()) {
break;
}
}
}
2020-02-19 09:03:36 +01:00
public Node closePage(Node hnode) {
2020-01-22 21:39:16 +01:00
if (pageOpened == false) {
return hnode;
}
2020-01-22 13:08:43 +01:00
hnode = exitPageContainer(hnode);
2020-02-19 09:03:36 +01:00
if (pagination) {
2016-09-21 17:22:55 +03:00
hnode = exitPageDiv(hnode);
}
pageOpened = false;
return hnode;
}
2020-02-19 09:03:36 +01:00
public Node openPage(Node hnode, Integer pageNum) {
2020-02-10 18:57:44 +01:00
if (pageOpened == true || !pagination) {
2020-01-22 21:39:16 +01:00
return hnode;
}
2020-02-10 18:57:44 +01:00
hnode = openPageDiv(hnode, pageNum);
pageOpened = true;
2020-01-22 13:08:43 +01:00
hnode = enterPageContainer(hnode);
2016-09-21 17:22:55 +03:00
return hnode;
}
2020-02-19 09:03:36 +01:00
2020-01-22 13:08:43 +01:00
private Node exitPageContainer(Node hnode) {
String className = ((Element) hnode).getAttribute("class");
if (!className.equals("pageContainer")) {
System.out.println("Can't exit not my container!");
Debug.printNode(hnode);
Debug.printStackTrace();
2020-01-22 13:08:43 +01:00
System.exit(1);
}
Element parentNode = (Element) hnode.getParentNode();
return parentNode;
}
2020-02-19 09:03:36 +01:00
2020-01-22 13:08:43 +01:00
private Node enterPageContainer(Node hnode) {
if (hnode == null) {
System.out.println("Enter page container error. hnode is null");
Debug.printStackTrace();
2020-01-22 13:08:43 +01:00
System.exit(1);
}
Element container = converter.createElement("div");
container.setAttribute("class", "pageContainer");
if (!pageContainer.getCurrentStyle().isEmpty()) {
container.setAttribute("style", pageContainer.getCurrentStyle());
2020-01-22 13:08:43 +01:00
}
hnode.appendChild(container);
return container;
}
2020-02-19 09:03:36 +01:00
2019-04-21 16:03:07 +03:00
private static String openHeadingCommentText(String title) {
2020-02-19 09:03:36 +01:00
String comment = "<Section>\n<Description>\n<Metadata name=\"Title\">" + title + "</Metadata>\n</Description>";
2019-04-21 16:03:07 +03:00
return comment;
}
2020-02-19 09:03:36 +01:00
2019-04-21 16:03:07 +03:00
private static String openPageCommentText(Integer pageNum) {
2020-02-19 09:03:36 +01:00
String comment = "<Section>\n<Description>\n<Metadata name=\"Title\">" + pageNum + "</Metadata>\n<Metadata name=\"Page\">" + pageNum + "</Metadata>\n</Description>";
2019-04-21 16:03:07 +03:00
return comment;
}
2016-07-10 16:03:41 +03:00
}