|
|
|
@ -36,7 +36,6 @@ import me.ag2s.epublib.util.StringUtil; |
|
|
|
|
* Reads the opf package document as defined by namespace http://www.idpf.org/2007/opf
|
|
|
|
|
* |
|
|
|
|
* @author paul |
|
|
|
|
* |
|
|
|
|
*/ |
|
|
|
|
public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
|
|
|
|
@ -201,7 +200,7 @@ public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Strips off the package prefixes up to the href of the packageHref. |
|
|
|
|
* |
|
|
|
|
* <p> |
|
|
|
|
* Example: |
|
|
|
|
* If the packageHref is "OEBPS/content.opf" then a resource href like "OEBPS/foo/bar.html" will be turned into "foo/bar.html" |
|
|
|
|
* |
|
|
|
@ -246,18 +245,18 @@ public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
return generateSpineFromResources(resources); |
|
|
|
|
} |
|
|
|
|
Spine result = new Spine(); |
|
|
|
|
String tocResourceId = DOMUtil |
|
|
|
|
.getAttribute(spineElement, NAMESPACE_OPF, OPFAttributes.toc); |
|
|
|
|
result |
|
|
|
|
.setTocResource(findTableOfContentsResource(tocResourceId, resources)); |
|
|
|
|
NodeList spineNodes = packageDocument |
|
|
|
|
.getElementsByTagNameNS(NAMESPACE_OPF, OPFTags.itemref); |
|
|
|
|
List<SpineReference> spineReferences = new ArrayList<>( |
|
|
|
|
spineNodes.getLength()); |
|
|
|
|
String tocResourceId = DOMUtil.getAttribute(spineElement, NAMESPACE_OPF, OPFAttributes.toc); |
|
|
|
|
Log.v(TAG,tocResourceId); |
|
|
|
|
result.setTocResource(findTableOfContentsResource(tocResourceId, resources)); |
|
|
|
|
NodeList spineNodes = DOMUtil.getElementsByTagNameNS(packageDocument, NAMESPACE_OPF, OPFTags.itemref); |
|
|
|
|
if(spineNodes==null){ |
|
|
|
|
Log.e(TAG,"spineNodes is null"); |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
List<SpineReference> spineReferences = new ArrayList<>(spineNodes.getLength()); |
|
|
|
|
for (int i = 0; i < spineNodes.getLength(); i++) { |
|
|
|
|
Element spineItem = (Element) spineNodes.item(i); |
|
|
|
|
String itemref = DOMUtil |
|
|
|
|
.getAttribute(spineItem, NAMESPACE_OPF, OPFAttributes.idref); |
|
|
|
|
String itemref = DOMUtil.getAttribute(spineItem, NAMESPACE_OPF, OPFAttributes.idref); |
|
|
|
|
if (StringUtil.isBlank(itemref)) { |
|
|
|
|
Log.e(TAG, "itemref with missing or empty idref"); // XXX
|
|
|
|
|
continue; |
|
|
|
@ -266,6 +265,7 @@ public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
if (id == null) { |
|
|
|
|
id = itemref; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Resource resource = resources.getByIdOrHref(id); |
|
|
|
|
if (resource == null) { |
|
|
|
|
Log.e(TAG, "resource with id '" + id + "' not found"); |
|
|
|
@ -308,7 +308,7 @@ public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* The spine tag should contain a 'toc' attribute with as value the resource id of the table of contents resource. |
|
|
|
|
* |
|
|
|
|
* <p> |
|
|
|
|
* Here we try several ways of finding this table of contents resource. |
|
|
|
|
* We try the given attribute value, some often-used ones and finally look through all resources for the first resource with the table of contents mimetype. |
|
|
|
|
* |
|
|
|
@ -318,7 +318,13 @@ public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
*/ |
|
|
|
|
static Resource findTableOfContentsResource(String tocResourceId, |
|
|
|
|
Resources resources) { |
|
|
|
|
Resource tocResource = null; |
|
|
|
|
Resource tocResource; |
|
|
|
|
//一些epub3的文件为了兼容epub2,保留的epub2的目录文件,这里优先选择epub3的xml目录
|
|
|
|
|
tocResource = resources.getByProperties("nav"); |
|
|
|
|
if (tocResource != null) { |
|
|
|
|
return tocResource; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (StringUtil.isNotBlank(tocResourceId)) { |
|
|
|
|
tocResource = resources.getByIdOrHref(tocResourceId); |
|
|
|
|
} |
|
|
|
@ -343,10 +349,7 @@ public class PackageDocumentReader extends PackageDocumentBase { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//For EPUB3
|
|
|
|
|
if (tocResource==null){ |
|
|
|
|
tocResource=resources.getByProperties("nav"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (tocResource == null) { |
|
|
|
|
Log.e(TAG, |
|
|
|
|