View Javadoc
1   package org.kuali.ole.docstore.common.document;
2   
3   import org.apache.log4j.Logger;
4   import org.kuali.ole.docstore.common.document.content.bib.marc.BibMarcRecords;
5   import org.kuali.ole.docstore.common.document.content.bib.marc.xstream.BibMarcRecordProcessor;
6   import org.kuali.ole.docstore.common.document.content.enums.DocCategory;
7   import org.kuali.ole.docstore.common.document.content.enums.DocFormat;
8   import org.kuali.ole.docstore.common.document.content.enums.DocType;
9   
10  import javax.xml.bind.JAXBContext;
11  import javax.xml.bind.JAXBElement;
12  import javax.xml.bind.Marshaller;
13  import javax.xml.bind.Unmarshaller;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.transform.stream.StreamSource;
16  import java.io.ByteArrayInputStream;
17  import java.io.StringWriter;
18  
19  /**
20   * Created with IntelliJ IDEA.
21   * User: sambasivam
22   * Date: 12/13/13
23   * Time: 3:31 PM
24   * To change this template use File | Settings | File Templates.
25   */
26  
27  @XmlRootElement(name = "bibDoc")
28  public class BibMarc extends Bib {
29  
30      private static final Logger LOG = Logger.getLogger(BibMarc.class);
31  
32      public BibMarc() {
33          category=DocCategory.WORK.getCode();
34          type=DocType.BIB.getCode();
35          format=DocFormat.MARC.getCode();
36      }
37  
38      @Override
39      public String serialize(Object object) {
40          String result = null;
41          StringWriter sw = new StringWriter();
42          BibMarc bib = (BibMarc) object;
43          try {
44              JAXBContext jaxbContext = JAXBContext.newInstance(BibMarc.class);
45              Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
46              jaxbMarshaller.setProperty(Marshaller.JAXB_FRAGMENT, Boolean.TRUE);
47              jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
48              jaxbMarshaller.setProperty(Marshaller.JAXB_ENCODING, "UTF-8");
49              jaxbMarshaller.marshal(bib, sw);
50              result = sw.toString();
51          } catch (Exception e) {
52              LOG.error("Exception :", e);
53          }
54          return result;
55      }
56  
57      @Override
58      public Object deserialize(String content) {
59  
60          JAXBElement<BibMarc> bibElement = null;
61          try {
62              JAXBContext jaxbContext = JAXBContext.newInstance(BibMarc.class);
63              Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();
64              ByteArrayInputStream input = new ByteArrayInputStream(content.getBytes("UTF-8"));
65              bibElement = jaxbUnmarshaller.unmarshal(new StreamSource(input), BibMarc.class);
66          } catch (Exception e) {
67              LOG.error("Exception :", e);
68          }
69          return bibElement.getValue();
70      }
71  
72      @Override
73      public Object deserializeContent(Object object) {
74          Bib bib = (Bib) object;
75          BibMarcMapping bibMarcMapping = new BibMarcMapping();
76          return bibMarcMapping.getDocument(bib);
77      }
78  
79      @Override
80      public Object deserializeContent(String content) {
81          BibMarcRecordProcessor recordProcessor = new BibMarcRecordProcessor();
82          BibMarcRecords bibMarcRecords = recordProcessor.fromXML(content);
83          return bibMarcRecords;
84      }
85  
86      @Override
87      public String serializeContent(Object object) {
88          BibMarcRecordProcessor recordProcessor = new BibMarcRecordProcessor();
89          BibMarcRecords bibMarc = (BibMarcRecords) object;
90          String content = recordProcessor.toXml(bibMarc);
91          return content;
92      }
93  
94  }