![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.axiom.om.impl.mixin.AxiomTextMixin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of om-mixins Show documentation
Show all versions of om-mixins Show documentation
Contains mixins and implementation classes shared by LLOM and DOOM.
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.axiom.om.impl.mixin;
import javax.xml.namespace.QName;
import org.apache.axiom.blob.Blob;
import org.apache.axiom.core.CoreModelException;
import org.apache.axiom.mime.PartBlob;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMException;
import org.apache.axiom.om.OMNamespace;
import org.apache.axiom.om.impl.common.AxiomExceptionTranslator;
import org.apache.axiom.om.impl.common.AxiomSemantics;
import org.apache.axiom.om.impl.common.OMNamespaceImpl;
import org.apache.axiom.om.impl.intf.AxiomText;
import org.apache.axiom.om.impl.intf.TextContent;
import org.apache.axiom.weaver.annotation.Mixin;
@Mixin
public abstract class AxiomTextMixin implements AxiomText {
private TextContent getTextContent(boolean force) {
try {
Object content = coreGetCharacterData();
if (content instanceof TextContent) {
return (TextContent) content;
} else if (force) {
TextContent textContent = new TextContent((String) content);
coreSetCharacterData(textContent, AxiomSemantics.INSTANCE);
return textContent;
} else {
return null;
}
} catch (CoreModelException ex) {
throw AxiomExceptionTranslator.translate(ex);
}
}
@Override
public final boolean isBinary() {
TextContent textContent = getTextContent(false);
return textContent != null && textContent.isBinary();
}
@Override
public final void setBinary(boolean binary) {
TextContent textContent = getTextContent(binary);
if (textContent != null) {
textContent.setBinary(binary);
}
}
@Override
public final boolean isOptimized() {
TextContent textContent = getTextContent(false);
return textContent != null && textContent.isOptimize();
}
@Override
public final void setOptimize(boolean optimize) {
TextContent textContent = getTextContent(optimize);
if (textContent != null) {
textContent.setOptimize(optimize);
}
}
@Override
public final String getText() throws OMException {
try {
return coreGetCharacterData().toString();
} catch (CoreModelException ex) {
throw AxiomExceptionTranslator.translate(ex);
}
}
@Override
public final char[] getTextCharacters() {
try {
Object content = coreGetCharacterData();
if (content instanceof TextContent) {
return ((TextContent) content).toCharArray();
} else {
return ((String) content).toCharArray();
}
} catch (CoreModelException ex) {
throw AxiomExceptionTranslator.translate(ex);
}
}
@Override
public final boolean isCharacters() {
return false;
}
@Override
public final QName getTextAsQName() throws OMException {
return ((OMElement) getParent()).resolveQName(getText());
}
@Override
public final OMNamespace getNamespace() {
// Note: efficiency is not important here; the method is deprecated anyway
QName qname = getTextAsQName();
if (qname == null) {
return null;
} else {
String namespaceURI = qname.getNamespaceURI();
return namespaceURI.length() == 0
? null
: new OMNamespaceImpl(namespaceURI, qname.getPrefix());
}
}
@Override
public final Blob getBlob() {
try {
Object content = coreGetCharacterData();
if (content instanceof TextContent) {
return ((TextContent) content).getBlob();
} else {
throw new OMException("No DataHandler available");
}
} catch (CoreModelException ex) {
throw AxiomExceptionTranslator.translate(ex);
}
}
@Override
public final String getContentID() {
return getTextContent(true).getContentID();
}
@Override
public final void buildWithAttachments() {
if (isOptimized()) {
Blob blob = getBlob();
if (blob instanceof PartBlob) {
((PartBlob) blob).getPart().fetch();
}
}
}
@Override
public final void setContentID(String cid) {
getTextContent(true).setContentID(cid);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy