Coverage Report - org.kuali.rice.kew.xml.export.EDocLiteXmlExporter
 
Classes in this File Line Coverage Branch Coverage Complexity
EDocLiteXmlExporter
0%
0/59
0%
0/22
4.333
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  *
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.xml.export;
 18  
 
 19  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_ACTIVE;
 20  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_ASSOCIATION;
 21  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_DEFINITION;
 22  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_DOC_TYPE;
 23  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_EDOCLITE;
 24  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_NAMESPACE;
 25  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_SCHEMA_LOCATION;
 26  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.EDL_STYLE;
 27  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.SCHEMA_LOCATION_ATTR;
 28  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.SCHEMA_NAMESPACE;
 29  
 
 30  
 import java.io.StringReader;
 31  
 import java.util.Iterator;
 32  
 import java.util.List;
 33  
 
 34  
 import org.apache.log4j.Logger;
 35  
 import org.jdom.Element;
 36  
 import org.jdom.Namespace;
 37  
 import org.kuali.rice.core.api.impex.ExportDataSet;
 38  
 import org.kuali.rice.core.api.services.CoreApiServiceLocator;
 39  
 import org.kuali.rice.core.api.style.Style;
 40  
 import org.kuali.rice.core.api.style.StyleService;
 41  
 import org.kuali.rice.core.framework.impex.xml.XmlExporter;
 42  
 import org.kuali.rice.core.util.XmlHelper;
 43  
 import org.kuali.rice.core.util.XmlRenderer;
 44  
 import org.kuali.rice.edl.impl.bo.EDocLiteAssociation;
 45  
 import org.kuali.rice.edl.impl.bo.EDocLiteDefinition;
 46  
 import org.kuali.rice.edl.impl.service.EDocLiteService;
 47  
 import org.kuali.rice.kew.export.KewExportDataSet;
 48  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 49  
 /**
 50  
  * Exports EDocLite definitions to XML.
 51  
  *
 52  
  * @see EDocLiteDefinition
 53  
  *
 54  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 55  
  */
 56  0
 public class EDocLiteXmlExporter implements XmlExporter {
 57  
 
 58  0
         private static final Logger LOG = Logger.getLogger(EDocLiteXmlExporter.class);
 59  
 
 60  0
         private XmlRenderer renderer = new XmlRenderer(EDL_NAMESPACE);
 61  
 
 62  
         @Override
 63  
         public boolean supportPrettyPrint() {
 64  0
                 return false;
 65  
         }
 66  
         
 67  
         public Element export(ExportDataSet exportDataSet) {
 68  0
                 KewExportDataSet dataSet = KewExportDataSet.fromExportDataSet(exportDataSet);
 69  0
                 if (!dataSet.getEdocLites().isEmpty()) {
 70  0
                         Element rootElement = renderer.renderElement(null, EDL_EDOCLITE);
 71  0
                         rootElement.setAttribute(SCHEMA_LOCATION_ATTR, EDL_SCHEMA_LOCATION, SCHEMA_NAMESPACE);
 72  
                         // create output in order of all edl followed by all stylesheets, followed by all associations, this is so multiple edoclite's can be ingested in a single xml file.
 73  0
                         List<EDocLiteAssociation> assocList = dataSet.getEdocLites();
 74  
                         // loop thru same list 3 times.
 75  0
                         for (EDocLiteAssociation e : assocList) {
 76  0
                                 exportEdlDefinitions(rootElement, e);
 77  
                         }
 78  0
                         for (EDocLiteAssociation e : assocList) {
 79  0
                                 exportStyles(rootElement, e);
 80  
                         }
 81  0
                         for (EDocLiteAssociation e : assocList) {
 82  0
                                 exportAssociations(rootElement, e);
 83  
                         }
 84  0
                         return rootElement;
 85  
                 }
 86  0
                 return null;
 87  
         }
 88  
 
 89  
         private void exportEdlDefinitions(Element parentEl, EDocLiteAssociation edl) {
 90  
 
 91  
                 try {
 92  0
                         EDocLiteService edlService = KEWServiceLocator.getEDocLiteService();
 93  0
                         if (edl.getDefinition() != null) {  //this probably shouldn't be supported on the entry side...
 94  0
                                 EDocLiteDefinition def = edlService.getEDocLiteDefinition(edl.getDefinition());
 95  0
                                 if (def == null) {
 96  0
                                         LOG.error("Attempted to export definition " + edl.getDefinition() + " which was not found");
 97  0
                                         return;
 98  
                                 }
 99  0
                                 Element defEl = XmlHelper.buildJDocument(new StringReader(def.getXmlContent())).getRootElement();
 100  0
                                 setNamespace(defEl, EDL_NAMESPACE);
 101  0
                                 parentEl.addContent(defEl.detach());
 102  
                         }
 103  0
                 } catch (Exception e) {
 104  0
                         throw new RuntimeException(e);
 105  0
                 }
 106  0
         }
 107  
         
 108  
         private void exportStyles(Element parentEl, EDocLiteAssociation edl) {
 109  
 
 110  
                 try {
 111  0
                         StyleService styleService = CoreApiServiceLocator.getStyleService();
 112  
 
 113  0
                         if (edl.getStyle() != null) {//this probably shouldn't be supported on the entry side...
 114  0
                                 Element styleWrapperEl = renderer.renderElement(parentEl, EDL_STYLE);
 115  0
                                 renderer.renderAttribute(styleWrapperEl, "name", edl.getStyle());
 116  0
                                 Style style = styleService.getStyle(edl.getStyle());
 117  0
                                 if (style == null) {
 118  0
                                         LOG.error("Attempted to export style " + edl.getStyle() + " which was not found");
 119  0
                                         return;
 120  
                                 }
 121  0
                                 Element styleEl = XmlHelper.buildJDocument(new StringReader(style.getXmlContent())).getRootElement();
 122  0
                                 styleWrapperEl.addContent(styleEl.detach());
 123  
                         }
 124  0
                 } catch (Exception e) {
 125  0
                         throw new RuntimeException(e);
 126  0
                 }
 127  0
         }
 128  
         
 129  
         private void exportAssociations(Element parentEl, EDocLiteAssociation edl) {
 130  
                 try {
 131  0
                         Element associationEl = renderer.renderElement(parentEl, EDL_ASSOCIATION);
 132  0
                         renderer.renderTextElement(associationEl, EDL_DOC_TYPE, edl.getEdlName());
 133  0
                         if (edl.getDefinition() != null) {
 134  0
                                 renderer.renderTextElement(associationEl, EDL_DEFINITION, edl.getDefinition());
 135  
                         }
 136  0
                         if (edl.getStyle() != null) {
 137  0
                                 renderer.renderTextElement(associationEl, EDL_STYLE, edl.getStyle());
 138  
                         }
 139  
 
 140  0
                         renderer.renderTextElement(associationEl, EDL_ACTIVE, edl.getActiveInd().toString());
 141  0
                 } catch (Exception e) {
 142  0
                         throw new RuntimeException(e);
 143  0
                 }
 144  0
         }
 145  
 
 146  
         private void setNamespace(Element element, Namespace namespace) {
 147  0
                 element.setNamespace(namespace);
 148  0
                 for (Iterator iter = element.getChildren().iterator(); iter.hasNext();) {
 149  0
                         setNamespace((Element)iter.next(), namespace);
 150  
                 }
 151  0
         }
 152  
 }