Refactoring ODF splitter

This commit is contained in:
Georgy Litvinov 2020-07-24 14:28:50 +02:00
parent 1f69f93a78
commit a56aa1e4bb

View file

@ -48,20 +48,11 @@ public class ODFPageSplitter {
style = ofr.getTableStyle(Misc.getAttribute(child, TABLE_STYLE_NAME)); style = ofr.getTableStyle(Misc.getAttribute(child, TABLE_STYLE_NAME));
} }
} else if (nodeName.equals(TEXT_LIST)) { } else if (nodeName.equals(TEXT_LIST)) {
if (handleList(childFirstPart, child)){ handleList(child);
onode.insertBefore(childFirstPart, child);
}
} else if (nodeName.equals(TEXT_ALPHABETICAL_INDEX)) {
Node indexFirstPart = splitABIndex(child);
if (indexFirstPart != null) {
onode.insertBefore(indexFirstPart, child);
}
} else if (nodeName.equals(TEXT_ILLUSTRATION_INDEX)) { } else if (nodeName.equals(TEXT_ILLUSTRATION_INDEX)) {
Node indexFirstPart = splitTextIllustrationIndex(child); splitTextIllustrationIndex(child);
if (indexFirstPart != null) { } else if (nodeName.equals(TEXT_ALPHABETICAL_INDEX)) {
onode.insertBefore(indexFirstPart, child); splitABIndex(child);
}
} else if (nodeName.equals(TEXT_SECTION)) { } else if (nodeName.equals(TEXT_SECTION)) {
Node sectionFirstPart = handleSection(child); Node sectionFirstPart = handleSection(child);
if (sectionFirstPart != null) { if (sectionFirstPart != null) {
@ -78,7 +69,6 @@ public class ODFPageSplitter {
i++; i++;
continue; continue;
} else { } else {
System.out.println("In ODFPageSplitter unknown node found. Error, exiting.");
Debug.printNode(child); Debug.printNode(child);
System.exit(1); System.exit(1);
@ -107,25 +97,8 @@ public class ODFPageSplitter {
//Debug.printNode(onode); //Debug.printNode(onode);
return onode; return onode;
} }
private static Node splitTextIllustrationIndex(Node illustrationIndex) { private static void splitABIndex(Node abIndex) {
Node illustrationIndexFirstPart = illustrationIndex.cloneNode(false); Node parent = abIndex.getParentNode();
NodeList childs = illustrationIndex.getChildNodes();
int i = 0;
while (childs.getLength() > i) {
Node child = childs.item(i);
String childName = child.getNodeName();
if (childName.equals(TEXT_ILLUSTRATION_INDEX_SOURCE)) {
illustrationIndexFirstPart.appendChild(child.cloneNode(true));
} else
if (childName.equals(TEXT_INDEX_BODY)) {
Node indexBodyFirstPart = splitTextIndexBody(child);
illustrationIndexFirstPart.appendChild(indexBodyFirstPart);
}
i++;
}
return illustrationIndexFirstPart;
}
private static Node splitABIndex(Node abIndex) {
Node abIndexFirstPart = abIndex.cloneNode(false); Node abIndexFirstPart = abIndex.cloneNode(false);
NodeList childs = abIndex.getChildNodes(); NodeList childs = abIndex.getChildNodes();
int i = 0; int i = 0;
@ -141,8 +114,33 @@ public class ODFPageSplitter {
} }
i++; i++;
} }
return abIndexFirstPart; if (abIndexFirstPart != null) {
parent.insertBefore(abIndexFirstPart, abIndex);
} }
}
private static void splitTextIllustrationIndex(Node illustrationIndex) {
Node parent = illustrationIndex.getParentNode();
Node illustrationIndexFirstPart = illustrationIndex.cloneNode(false);
NodeList childs = illustrationIndex.getChildNodes();
int i = 0;
while (childs.getLength() > i) {
Node child = childs.item(i);
String childName = child.getNodeName();
if (childName.equals(TEXT_ILLUSTRATION_INDEX_SOURCE)) {
illustrationIndexFirstPart.appendChild(child.cloneNode(true));
} else
if (childName.equals(TEXT_INDEX_BODY)) {
Node indexBodyFirstPart = splitTextIndexBody(child);
illustrationIndexFirstPart.appendChild(indexBodyFirstPart);
}
i++;
}
if (illustrationIndexFirstPart != null) {
parent.insertBefore(illustrationIndexFirstPart, illustrationIndex);
}
}
private static Node splitTextIndexBody(Node indexBody) { private static Node splitTextIndexBody(Node indexBody) {
Node indexBodyFirstPart = indexBody.cloneNode(false); Node indexBodyFirstPart = indexBody.cloneNode(false);
NodeList childs = indexBody.getChildNodes(); NodeList childs = indexBody.getChildNodes();
@ -168,8 +166,9 @@ public class ODFPageSplitter {
} }
return indexBodyFirstPart; return indexBodyFirstPart;
} }
private static boolean handleList(Node listFirstPart, Node list){ private static boolean handleList(Node list){
Node parent = list.getParentNode();
Node listFirstPart = list.cloneNode(false);
NodeList listNodes = list.getChildNodes(); NodeList listNodes = list.getChildNodes();
int i = 0; int i = 0;
boolean dataMoved = false; boolean dataMoved = false;
@ -225,6 +224,10 @@ public class ODFPageSplitter {
} }
} }
} }
if (dataMoved) {
parent.insertBefore(listFirstPart, list);
}
return dataMoved; return dataMoved;
} }
//If SPB before first item - return false, remove SPB //If SPB before first item - return false, remove SPB
@ -245,8 +248,7 @@ public class ODFPageSplitter {
//Remove SPB.Return result //Remove SPB.Return result
listItem.removeChild(listItemChild); listItem.removeChild(listItemChild);
} else if (nodeName.equals(TEXT_LIST)) { } else if (nodeName.equals(TEXT_LIST)) {
if (handleList(listItemChildFirstPart, listItemChild)){ if (handleList(listItemChild)){
listItemFirstPart.appendChild(listItemChildFirstPart);
dataMoved=true; dataMoved=true;
} }
@ -521,8 +523,7 @@ public class ODFPageSplitter {
} }
} else if (nodeName.equals(TEXT_LIST)) { } else if (nodeName.equals(TEXT_LIST)) {
Node listFirstPart = cellChildNode.cloneNode(false); Node listFirstPart = cellChildNode.cloneNode(false);
if (handleList(listFirstPart, cellChildNode)){ if (handleList(cellChildNode)){
cellFirstPart.appendChild(listFirstPart);
dataMoved=true; dataMoved=true;
} }
} }
@ -583,8 +584,7 @@ public class ODFPageSplitter {
dataMoved=true; dataMoved=true;
} }
} else if (nodeName.equals(TEXT_LIST)) { } else if (nodeName.equals(TEXT_LIST)) {
if (handleList(childFirstPart, child)){ if (handleList(child)){
sectionFirstPart.appendChild(childFirstPart);
dataMoved=true; dataMoved=true;
} }
} }