01: /**
02: * LibreSource
03: * Copyright (C) 2004-2008 Artenum SARL / INRIA
04: * http://www.libresource.org - contact@artenum.com
05: *
06: * This file is part of the LibreSource software,
07: * which can be used and distributed under license conditions.
08: * The license conditions are provided in the LICENSE.TXT file
09: * at the root path of the packaging that enclose this file.
10: * More information can be found at
11: * - http://dev.libresource.org/home/license
12: *
13: * Initial authors :
14: *
15: * Guillaume Bort / INRIA
16: * Francois Charoy / Universite Nancy 2
17: * Julien Forest / Artenum
18: * Claude Godart / Universite Henry Poincare
19: * Florent Jouille / INRIA
20: * Sebastien Jourdain / INRIA / Artenum
21: * Yves Lerumeur / Artenum
22: * Pascal Molli / Universite Henry Poincare
23: * Gerald Oster / INRIA
24: * Mariarosa Penzi / Artenum
25: * Gerard Sookahet / Artenum
26: * Raphael Tani / INRIA
27: *
28: * Contributors :
29: *
30: * Stephane Bagnier / Artenum
31: * Amadou Dia / Artenum-IUP Blois
32: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
33: */package org.libresource.core;
34:
35: import org.libresource.Libresource;
36:
37: import org.libresource.core.ejb.model.TemplateResourceValue;
38: import org.libresource.core.interfaces.LibresourceCoreService;
39:
40: import org.libresource.xml.ImportExportLogger;
41: import org.libresource.xml.LibresourceExportHandler;
42: import org.libresource.xml.XmlDumpHelper;
43:
44: import org.xml.sax.ContentHandler;
45:
46: import java.net.URI;
47:
48: import java.text.SimpleDateFormat;
49:
50: /**
51: * LibreSource
52: * @author <a href="mailto:bort@loria.fr">Guillaume Bort</a> - <a href="http://www.inria.fr">INRIA Lorraine</a>
53: */
54: public class TemplateExportHandler extends LibresourceExportHandler {
55: private URI uri;
56:
57: public TemplateExportHandler(URI uri) {
58: this .uri = uri;
59: }
60:
61: public void export(ContentHandler handler, ImportExportLogger logger)
62: throws Exception {
63: LibresourceCoreService coreService = (LibresourceCoreService) Libresource
64: .getService("LibresourceCore");
65: TemplateResourceValue templateResourceValue = coreService
66: .getTemplate(uri);
67:
68: XmlDumpHelper.beginElement("libresource", "template",
69: XmlDumpHelper.getEmptyAttributesSet(), handler);
70:
71: XmlDumpHelper.outputElementWithContent("template", "name",
72: templateResourceValue.getName(), XmlDumpHelper
73: .getEmptyAttributesSet(), handler);
74: XmlDumpHelper.outputElementWithContent("template",
75: "description", templateResourceValue.getDescription(),
76: XmlDumpHelper.getEmptyAttributesSet(), handler);
77:
78: FileData content = coreService.getTemplateContent(uri);
79: XmlDumpHelper.outputElementWithContent("template", "content",
80: content.getInputStream(), XmlDumpHelper
81: .getEmptyAttributesSet(), handler);
82:
83: XmlDumpHelper.endElement("libresource", "template", handler);
84: }
85: }
|