source: branches/ant-install-branch/gsdl3/src/java/org/greenstone/gsdl3/service/GS3MGPPRetrieve.java@ 9815

Last change on this file since 9815 was 9815, checked in by kjdon, 19 years ago

some methods from documentretrieve classes now throw GSExceptions. am trying to make it so that no Exceptions get to the user interface. returning a lot more error elements too, in the hope that they may be useful for other people

  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1/*
2 * GS3MGPPRetrieve.java
3 * Copyright (C) 2005 New Zealand Digital Library, http://www.nzdl.org
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19package org.greenstone.gsdl3.service;
20
21// Greenstone classes
22import org.greenstone.mgpp.*;
23import org.greenstone.gsdl3.core.GSException;
24import org.greenstone.gsdl3.util.GSFile;
25import org.greenstone.gsdl3.util.GSXML;
26import org.greenstone.gsdl3.util.GS3OID;
27
28// XML classes
29import org.w3c.dom.Element;
30import org.w3c.dom.Text;
31
32// General Java classes
33import java.io.File;
34
35public class GS3MGPPRetrieve
36 extends AbstractGS3DocumentRetrieve
37{
38 // Elements used in the config file that are specific to this class
39 private static final String DEFAULT_LEVEL_ELEM = "defaultLevel";
40
41 private MGPPWrapper mgpp_src = null;
42
43 private String default_level = null;
44 private String mgpp_textdir = null;
45
46 public GS3MGPPRetrieve() {
47 this.mgpp_src = new MGPPWrapper();
48 }
49
50 /** configure this service */
51 public boolean configure(Element info, Element extra_info)
52 {
53 // Do generic configuration
54 if (!super.configure(info, extra_info)) {
55 return false;
56 }
57
58 // Do specific configuration
59 System.out.println("Configuring GS3MGPPRetrieve...");
60
61 // Get the default level out of <defaultLevel> (buildConfig.xml)
62 Element def = (Element) GSXML.getChildByTagName(info, DEFAULT_LEVEL_ELEM);
63 if (def != null) {
64 this.default_level = def.getAttribute(GSXML.NAME_ATT);
65 }
66 if (this.default_level == null || this.default_level.equals("")) {
67 System.err.println("Error: default level not specified!");
68 return false;
69 }
70 // System.out.println("Default level: " + default_level_);
71
72 // The location of the MGPP text files
73 mgpp_textdir = GSFile.collectionBaseDir(this.site_home, this.cluster_name) +
74 File.separatorChar + GSFile.collectionTextPath(this.index_stem);
75
76 return true;
77 }
78
79 /** returns the content of a node
80 * should return a nodeContent element:
81 * <nodeContent>text content or other elements</nodeContent>
82 */
83 protected Element getNodeContent(String doc_id) throws GSException {
84 if (GS3OID.isDocTop(doc_id) && database.isHierarchicalDocument(doc_id)) {
85 // if we have a whole doc id, and the document is hierarchical,
86 // we want to change the id to be the top id of the section
87 // hierarchy
88 doc_id = GS3OID.createOID(doc_id, "1");
89 }
90
91 String doc_num = this.database.OID2MGNum(doc_id);
92 // doc nums have the index prefixed
93 doc_num = doc_num.substring(doc_num.indexOf(".")+1);
94 int doc_int = Integer.parseInt(doc_num);
95
96 Element content_node = this.doc.createElement(GSXML.NODE_CONTENT_ELEM);
97
98 String doc_content = "";
99 try {
100 doc_content = this.mgpp_src.getDocument(this.mgpp_textdir,
101 this.default_level,
102 doc_int);
103 doc_content = resolveRelativeLinks(doc_content, doc_id);
104 } catch (Exception e) {
105 System.out.println("exception happended with mgpp_src.getDocument()" + e);
106 doc_content = "this is the content for section hash id "+ doc_id+", mgpp doc num "+doc_int+"\n";
107 }
108
109 Text t = this.doc.createTextNode(doc_content);
110 content_node.appendChild(t);
111 return content_node;
112
113 }
114
115
116}
Note: See TracBrowser for help on using the repository browser.