Coverage Report - org.kuali.rice.edl.impl.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.edl.impl.xml.export;
 18  
 
 19  
 import org.apache.log4j.Logger;
 20  
 import org.jdom.Element;
 21  
 import org.jdom.Namespace;
 22  
 import org.kuali.rice.core.api.CoreApiServiceLocator;
 23  
 import org.kuali.rice.core.api.impex.ExportDataSet;
 24  
 import org.kuali.rice.core.api.style.Style;
 25  
 import org.kuali.rice.core.api.style.StyleService;
 26  
 import org.kuali.rice.core.api.util.xml.XmlHelper;
 27  
 import org.kuali.rice.core.api.util.xml.XmlRenderer;
 28  
 import org.kuali.rice.core.framework.impex.xml.XmlExporter;
 29  
 import org.kuali.rice.edl.impl.bo.EDocLiteAssociation;
 30  
 import org.kuali.rice.edl.impl.bo.EDocLiteDefinition;
 31  
 import org.kuali.rice.edl.impl.service.EDocLiteService;
 32  
 import org.kuali.rice.edl.impl.service.EdlServiceLocator;
 33  
 
 34  
 import java.io.StringReader;
 35  
 import java.util.Iterator;
 36  
 import java.util.List;
 37  
 
 38  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.*;
 39  
 /**
 40  
  * Exports EDocLite definitions to XML.
 41  
  *
 42  
  * @see EDocLiteDefinition
 43  
  *
 44  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 45  
  */
 46  0
 public class EDocLiteXmlExporter implements XmlExporter {
 47  
 
 48  0
         private static final Logger LOG = Logger.getLogger(EDocLiteXmlExporter.class);
 49  
 
 50  0
         private XmlRenderer renderer = new XmlRenderer(EDL_NAMESPACE);
 51  
 
 52  
         @Override
 53  
         public boolean supportPrettyPrint() {
 54  0
                 return false;
 55  
         }
 56  
         
 57  
         public Element export(ExportDataSet exportDataSet) {
 58  0
                 EdlExportDataSet dataSet = EdlExportDataSet.fromExportDataSet(exportDataSet);
 59  0
                 if (!dataSet.getEdocLites().isEmpty()) {
 60  0
                         Element rootElement = renderer.renderElement(null, EDL_EDOCLITE);
 61  0
                         rootElement.setAttribute(SCHEMA_LOCATION_ATTR, EDL_SCHEMA_LOCATION, SCHEMA_NAMESPACE);
 62  
                         // 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.
 63  0
                         List<EDocLiteAssociation> assocList = dataSet.getEdocLites();
 64  
                         // loop thru same list 3 times.
 65  0
                         for (EDocLiteAssociation e : assocList) {
 66  0
                                 exportEdlDefinitions(rootElement, e);
 67  
                         }
 68  0
                         for (EDocLiteAssociation e : assocList) {
 69  0
                                 exportStyles(rootElement, e);
 70  
                         }
 71  0
                         for (EDocLiteAssociation e : assocList) {
 72  0
                                 exportAssociations(rootElement, e);
 73  
                         }
 74  0
                         return rootElement;
 75  
                 }
 76  0
                 return null;
 77  
         }
 78  
 
 79  
         private void exportEdlDefinitions(Element parentEl, EDocLiteAssociation edl) {
 80  
 
 81  
                 try {
 82  0
                         EDocLiteService edlService = EdlServiceLocator.getEDocLiteService();
 83  0
                         if (edl.getDefinition() != null) {  //this probably shouldn't be supported on the entry side...
 84  0
                                 EDocLiteDefinition def = edlService.getEDocLiteDefinition(edl.getDefinition());
 85  0
                                 if (def == null) {
 86  0
                                         LOG.error("Attempted to export definition " + edl.getDefinition() + " which was not found");
 87  0
                                         return;
 88  
                                 }
 89  0
                                 Element defEl = XmlHelper.buildJDocument(new StringReader(def.getXmlContent())).getRootElement();
 90  0
                                 setNamespace(defEl, EDL_NAMESPACE);
 91  0
                                 parentEl.addContent(defEl.detach());
 92  
                         }
 93  0
                 } catch (Exception e) {
 94  0
                         throw new RuntimeException(e);
 95  0
                 }
 96  0
         }
 97  
         
 98  
         private void exportStyles(Element parentEl, EDocLiteAssociation edl) {
 99  
 
 100  
                 try {
 101  0
                         StyleService styleService = CoreApiServiceLocator.getStyleService();
 102  
 
 103  0
                         if (edl.getStyle() != null) {//this probably shouldn't be supported on the entry side...
 104  0
                                 Element styleWrapperEl = renderer.renderElement(parentEl, EDL_STYLE);
 105  0
                                 renderer.renderAttribute(styleWrapperEl, "name", edl.getStyle());
 106  0
                                 Style style = styleService.getStyle(edl.getStyle());
 107  0
                                 if (style == null) {
 108  0
                                         LOG.error("Attempted to export style " + edl.getStyle() + " which was not found");
 109  0
                                         return;
 110  
                                 }
 111  0
                                 Element styleEl = XmlHelper.buildJDocument(new StringReader(style.getXmlContent())).getRootElement();
 112  0
                                 styleWrapperEl.addContent(styleEl.detach());
 113  
                         }
 114  0
                 } catch (Exception e) {
 115  0
                         throw new RuntimeException(e);
 116  0
                 }
 117  0
         }
 118  
         
 119  
         private void exportAssociations(Element parentEl, EDocLiteAssociation edl) {
 120  
                 try {
 121  0
                         Element associationEl = renderer.renderElement(parentEl, EDL_ASSOCIATION);
 122  0
                         renderer.renderTextElement(associationEl, EDL_DOC_TYPE, edl.getEdlName());
 123  0
                         if (edl.getDefinition() != null) {
 124  0
                                 renderer.renderTextElement(associationEl, EDL_DEFINITION, edl.getDefinition());
 125  
                         }
 126  0
                         if (edl.getStyle() != null) {
 127  0
                                 renderer.renderTextElement(associationEl, EDL_STYLE, edl.getStyle());
 128  
                         }
 129  
 
 130  0
                         renderer.renderTextElement(associationEl, EDL_ACTIVE, edl.getActiveInd().toString());
 131  0
                 } catch (Exception e) {
 132  0
                         throw new RuntimeException(e);
 133  0
                 }
 134  0
         }
 135  
 
 136  
         private void setNamespace(Element element, Namespace namespace) {
 137  0
                 element.setNamespace(namespace);
 138  0
                 for (Iterator iter = element.getChildren().iterator(); iter.hasNext();) {
 139  0
                         setNamespace((Element)iter.next(), namespace);
 140  
                 }
 141  0
         }
 142  
 }