Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *    Purpose: A class that gets Accession Number, check for uniqueness
4
 *             and register it into db
5
 *  Copyright: 2000 Regents of the University of California and the
6
 *             National Center for Ecological Analysis and Synthesis
7
 *    Authors: Jivka Bojilova, Matt Jones
8
 *
9
 *   '$Author: leinfelder $'
10
 *     '$Date: 2011-11-02 20:40:12 -0700 (Wed, 02 Nov 2011) $'
11
 * '$Revision: 6595 $'
12
 *
13
 * This program is free software; you can redistribute it and/or modify
14
 * it under the terms of the GNU General Public License as published by
15
 * the Free Software Foundation; either version 2 of the License, or
16
 * (at your option) any later version.
17
 *
18
 * This program is distributed in the hope that it will be useful,
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 * GNU General Public License for more details.
22
 *
23
 * You should have received a copy of the GNU General Public License
24
 * along with this program; if not, write to the Free Software
25
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
 */
27
package edu.ucsb.nceas.metacat.index;
28

    
29
import java.io.IOException;
30
import java.io.InputStream;
31
import java.util.ArrayList;
32
import java.util.HashMap;
33
import java.util.Iterator;
34
import java.util.List;
35
import java.util.Map;
36
import java.util.Set;
37

    
38
import javax.xml.parsers.DocumentBuilder;
39
import javax.xml.parsers.DocumentBuilderFactory;
40
import javax.xml.parsers.ParserConfigurationException;
41
import javax.xml.xpath.XPath;
42
import javax.xml.xpath.XPathExpressionException;
43
import javax.xml.xpath.XPathFactory;
44

    
45
import org.apache.commons.codec.EncoderException;
46
import org.apache.commons.io.output.ByteArrayOutputStream;
47
import org.apache.commons.logging.Log;
48
import org.apache.commons.logging.LogFactory;
49
import org.apache.solr.client.solrj.SolrServer;
50
import org.apache.solr.client.solrj.SolrServerException;
51
import org.apache.solr.common.SolrInputDocument;
52
import org.dataone.cn.indexer.XMLNamespaceConfig;
53
import org.dataone.cn.indexer.XPathDocumentParser;
54
import org.dataone.cn.indexer.parser.IDocumentSubprocessor;
55
import org.dataone.cn.indexer.parser.SolrField;
56
import org.dataone.cn.indexer.solrhttp.SolrDoc;
57
import org.dataone.cn.indexer.solrhttp.SolrElementAdd;
58
import org.dataone.cn.indexer.solrhttp.SolrElementField;
59
import org.w3c.dom.Document;
60
import org.xml.sax.SAXException;
61

    
62
/**
63
 * A class does insert, update and remove indexes to a SOLR server
64
 * @author tao
65
 *
66
 */
67
public class SolrIndex {
68
    
69
    //private static final String INPUT_ENCODING = "UTF-8";
70
    
71
    private List<IDocumentSubprocessor> subprocessors = null;
72
    private SolrServer solrServer = null;
73
    private XMLNamespaceConfig xmlNamespaceConfig = null;
74
    private List<SolrField> sysmetaSolrFields = null;
75

    
76
    private static DocumentBuilderFactory documentBuilderFactory = null;
77
    private static DocumentBuilder builder = null;
78

    
79
    private static XPathFactory xpathFactory = null;
80
    private static XPath xpath = null;
81
    Log log = LogFactory.getLog(SolrIndex.class);
82
    
83
    static {
84
        documentBuilderFactory = DocumentBuilderFactory.newInstance();
85
        documentBuilderFactory.setNamespaceAware(true);
86
        try {
87
            builder = documentBuilderFactory.newDocumentBuilder();
88
        } catch (ParserConfigurationException e) {
89
            e.printStackTrace();
90
        }
91
        xpathFactory = XPathFactory.newInstance();
92
        xpath = xpathFactory.newXPath();
93
    }
94
    
95
    /**
96
     * Constructor
97
     */
98
    public SolrIndex(XMLNamespaceConfig xmlNamespaceConfig, List<SolrField> sysmetaSolrFields)
99
                    throws XPathExpressionException, ParserConfigurationException {
100
                this.xmlNamespaceConfig = xmlNamespaceConfig;
101
                this.sysmetaSolrFields = sysmetaSolrFields;
102
                init();
103
    }
104
    
105
    private void init() throws ParserConfigurationException, XPathExpressionException {
106
        xpath.setNamespaceContext(xmlNamespaceConfig);
107
        initExpressions();
108
    }
109

    
110
    private void initExpressions() throws XPathExpressionException {
111
        for (SolrField field : sysmetaSolrFields) {
112
            field.initExpression(xpath);
113
        }
114

    
115
    }
116
    
117
    
118
    /**
119
     * Get the list of the Subprocessors in this index.
120
     * @return the list of the Subprocessors.
121
     */
122
    public List<IDocumentSubprocessor> getSubprocessors() {
123
        return subprocessors;
124
    }
125

    
126
    /**
127
     * Set the list of Subprocessors.
128
     * @param subprocessorList  the list will be set.
129
     */
130
    public void setSubprocessors(List<IDocumentSubprocessor> subprocessorList) {
131
        for (IDocumentSubprocessor subprocessor : subprocessorList) {
132
            subprocessor.initExpression(xpath);
133
        }
134
        this.subprocessors = subprocessorList;
135
    }
136
    
137
    /**
138
     * Generate the index for the given information
139
     * @param id
140
     * @param systemMetaDataStream
141
     * @param dataStream
142
     * @return
143
     * @throws IOException
144
     * @throws SAXException
145
     * @throws ParserConfigurationException
146
     * @throws XPathExpressionException
147
     * @throws EncoderException
148
     */
149
    private Map<String, SolrDoc> process(String id, InputStream systemMetaDataStream, InputStream dataStream)
150
                    throws IOException, SAXException, ParserConfigurationException,
151
                    XPathExpressionException{
152

    
153
        // Load the System Metadata document
154
        Document sysMetaDoc = generateXmlDocument(systemMetaDataStream);
155
        if (sysMetaDoc == null) {
156
            log.error("Could not load System metadata for ID: " + id);
157
            return null;
158
        }
159

    
160
        // Extract the field values from the System Metadata
161
        List<SolrElementField> sysSolrFields = processSysmetaFields(sysMetaDoc, id);
162
        SolrDoc indexDocument = new SolrDoc(sysSolrFields);
163
        Map<String, SolrDoc> docs = new HashMap<String, SolrDoc>();
164
        docs.put(id, indexDocument);
165

    
166
        // Determine if subprocessors are available for this ID
167
        if (subprocessors != null) {
168
                    // for each subprocessor loaded from the spring config
169
                    for (IDocumentSubprocessor subprocessor : subprocessors) {
170
                        // Does this subprocessor apply?
171
                        if (subprocessor.canProcess(sysMetaDoc)) {
172
                            // if so, then extract the additional information from the
173
                            // document.
174
                            try {
175
                                // docObject = the resource map document or science
176
                                // metadata document.
177
                                // note that resource map processing touches all objects
178
                                // referenced by the resource map.
179
                                Document docObject = generateXmlDocument(dataStream);
180
                                if (docObject == null) {
181
                                    log.error("Could not load OBJECT for ID " + id );
182
                                } else {
183
                                    docs = subprocessor.processDocument(id, docs, docObject);
184
                                }
185
                            } catch (Exception e) {
186
                                log.error(e.getStackTrace().toString());
187
                            }
188
                        }
189
                    }
190
       }
191

    
192
       // TODO: in the XPathDocumentParser class in d1_cn_index_process module,
193
       // merge is only for resource map. We need more work here.
194
       for (SolrDoc mergeDoc : docs.values()) {
195
           if (!mergeDoc.isMerged()) {
196
                 //mergeWithIndexedDocument(mergeDoc);
197
           }
198
       }
199

    
200
       //SolrElementAdd addCommand = getAddCommand(new ArrayList<SolrDoc>(docs.values()));
201
               
202
       return docs;
203
    }
204
    
205
    /*
206
     * Generate a Document from the InputStream
207
     */
208
    private Document generateXmlDocument(InputStream smdStream) throws SAXException {
209
        Document doc = null;
210

    
211
        try {
212
            doc = builder.parse(smdStream);
213
        } catch (IOException e) {
214
            log.error(e.getMessage(), e);
215
        }
216

    
217
        return doc;
218
    }
219
    
220
    /*
221
     * Index the fields of the system metadata
222
     */
223
    private List<SolrElementField> processSysmetaFields(Document doc, String identifier) {
224

    
225
        List<SolrElementField> fieldList = new ArrayList<SolrElementField>();
226
        // solrFields is the list of fields defined in the application context
227
       
228
        for (SolrField field : sysmetaSolrFields) {
229
            try {
230
                // the field.getFields method can return a single value or
231
                // multiple values for multi-valued fields
232
                // or can return multiple SOLR document fields.
233
                fieldList.addAll(field.getFields(doc, identifier));
234
            } catch (Exception e) {
235
                e.printStackTrace();
236
            }
237
        }
238
        return fieldList;
239

    
240
    }
241
    
242
    /**
243
     * Generate indexes for a newly inserted document.
244
     * @param pid  the id of this document
245
     * @param systemMetadata  the system metadata associated with the data object
246
     * @param data  the data object itself
247
     * @throws SolrServerException 
248
     */
249
    public void insert(String pid, InputStream systemMetadata, InputStream data) 
250
                    throws IOException, SAXException, ParserConfigurationException,
251
                    XPathExpressionException, SolrServerException {
252
        Map<String, SolrDoc> docs = process(pid, systemMetadata, data);
253
        
254
        //transform the Map to the SolrInputDocument which can be used by the solr server
255
        if(docs != null) {
256
            Set<String> ids = docs.keySet();
257
            for(String id : ids) {
258
                SolrInputDocument solrDoc = new SolrInputDocument();
259
                if(id != null) {
260
                    SolrDoc doc = docs.get(id);
261
                    if(doc != null) {
262
                        List<SolrElementField> list = doc.getFieldList();
263
                        if(list != null) {
264
                            Iterator<SolrElementField> iterator = list.iterator();
265
                            while (iterator.hasNext()) {
266
                                SolrElementField field = iterator.next();
267
                                if(field != null) {
268
                                    String value = field.getValue();
269
                                    String name = field.getName();
270
                                    solrDoc.addField(name, value);
271
                                }
272
                            }
273
                        }
274
                    }
275
                }
276
                if(!solrDoc.isEmpty()) {
277
                    solrServer.add(solrDoc);
278
                }
279
            }
280
        }
281
    }
282
}
(2-2/3)