/* * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.jcr.impl.xml.exporting; import org.exoplatform.services.jcr.dataflow.ItemDataConsumer; import org.exoplatform.services.jcr.datamodel.InternalQName; import org.exoplatform.services.jcr.datamodel.NodeData; import org.exoplatform.services.jcr.datamodel.PropertyData; import org.exoplatform.services.jcr.datamodel.ValueData; import org.exoplatform.services.jcr.impl.Constants; import org.exoplatform.services.jcr.impl.core.value.ValueFactoryImpl; import org.exoplatform.services.jcr.impl.dataflow.ValueDataUtil; import org.exoplatform.services.jcr.impl.util.ISO9075; import org.exoplatform.services.jcr.impl.util.StringConverter; import org.xml.sax.ContentHandler; import org.xml.sax.SAXException; import org.xml.sax.helpers.AttributesImpl; import java.io.IOException; import java.util.List; import javax.jcr.NamespaceException; import javax.jcr.NamespaceRegistry; import javax.jcr.PropertyType; import javax.jcr.RepositoryException; /** * @author <a href="mailto:Sergey.Kabashnyuk@gmail.com">Sergey Kabashnyuk</a> * @version */ public class DocumentViewContentExporter extends HandlingContentExporter { /** * */ private AttributesImpl currentAttr = null; /** * */ protected String encoding;; /** * @param handler * @param dataManager * @param namespaceRegistry * @param systemValueFactory * @param skipBinary * @param noRecurse * @throws NamespaceException * @throws RepositoryException */ public DocumentViewContentExporter(ContentHandler handler, ItemDataConsumer dataManager, NamespaceRegistry namespaceRegistry, ValueFactoryImpl systemValueFactory, boolean skipBinary, boolean noRecurse) throws NamespaceException, RepositoryException { super(handler, dataManager, namespaceRegistry, systemValueFactory, skipBinary, noRecurse); } /* * (non-Javadoc) * @see * org.exoplatform.services.jcr.dataflow.ItemDataTraversingVisitor#entering(org.exoplatform.services * .jcr.datamodel.NodeData, int) */ protected void entering(NodeData node, int level) throws RepositoryException { try { if (node.getQPath().getName().equals(Constants.JCR_XMLTEXT)) { // jcr:xmlcharacters List<PropertyData> nodeData = dataManager.getChildPropertiesData(node); String strValue = ""; for (PropertyData propertyData : nodeData) { if (propertyData.getQPath().getName().equals(Constants.JCR_XMLCHARACTERS)) { strValue = ValueDataUtil.getString(propertyData.getValues().get(0)); } } contentHandler.characters(strValue.toCharArray(), 0, strValue.length()); } else { List<PropertyData> nodeData = dataManager.getChildPropertiesData(node); currentAttr = new AttributesImpl(); for (PropertyData property : nodeData) { String strValue = ""; for (ValueData valueData : property.getValues()) { String strVal = getValueAsStringForExport(valueData, property.getType()); if (strVal.equals("")) { continue; } strValue += //NOSONAR MULTI_VALUE_DELIMITER + (property.getType() == PropertyType.BINARY ? strVal : StringConverter.normalizeString(strVal, true)); } // encode node name InternalQName internalPropName = ISO9075.encode(property.getQPath().getName()); currentAttr.addAttribute(internalPropName.getNamespace(), internalPropName.getName(), getExportName( property, true), "CDATA", !strValue.equals("") ? strValue.substring(1) : strValue); } if (Constants.ROOT_PATH.equals(node.getQPath())) contentHandler.startElement(Constants.NS_JCR_URI, Constants.NS_JCR_PREFIX, JCR_ROOT, currentAttr); else contentHandler.startElement(node.getQPath().getName().getNamespace(), node.getQPath().getName() .getName(), getExportName(node, true), currentAttr); } } catch (SAXException e) { throw new RepositoryException(e); } catch (IllegalStateException e) { throw new RepositoryException(e); } catch (IOException e) { throw new RepositoryException(e); } } /* * (non-Javadoc) * @see * org.exoplatform.services.jcr.dataflow.ItemDataTraversingVisitor#entering(org.exoplatform.services * .jcr.datamodel.PropertyData, int) */ protected void entering(PropertyData property, int level) throws RepositoryException { } /* * (non-Javadoc) * @see * org.exoplatform.services.jcr.dataflow.ItemDataTraversingVisitor#leaving(org.exoplatform.services * .jcr.datamodel.NodeData, int) */ protected void leaving(NodeData node, int level) throws RepositoryException { try { if (!node.getQPath().getName().equals(Constants.JCR_XMLTEXT)) { if (Constants.ROOT_PATH.equals(node.getQPath())) contentHandler.endElement(Constants.NS_JCR_URI, Constants.NS_JCR_PREFIX, JCR_ROOT); else contentHandler.endElement(node.getQPath().getName().getNamespace(), node.getQPath().getName().getName(), getExportName(node, true)); } } catch (SAXException e) { throw new RepositoryException(e); } } /* * (non-Javadoc) * @see * org.exoplatform.services.jcr.dataflow.ItemDataTraversingVisitor#leaving(org.exoplatform.services * .jcr.datamodel.PropertyData, int) */ protected void leaving(PropertyData property, int level) throws RepositoryException { } }