All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.solr.handler.dataimport.LineEntityProcessor Maven / Gradle / Ivy

/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.solr.handler.dataimport;

import java.io.*;
import java.util.*;
import java.util.regex.Pattern;

import org.apache.commons.io.IOUtils;


/**
 * 

* An EntityProcessor instance which can stream lines of text read from a * datasource. Options allow lines to be explicitly skipped or included in the index. *

*

*

* Attribute summary *

    *
  • url is the required location of the input file. If this value is * relative, it assumed to be relative to baseLoc.
  • *
  • acceptLineRegex is an optional attribute that if present discards any * line which does not match the regExp.
  • *
  • skipLineRegex is an optional attribute that is applied after any * acceptLineRegex and discards any line which matches this regExp.
  • *
*

* Although envisioned for reading lines from a file or url, LineEntityProcessor may also be useful * for dealing with change lists, where each line contains filenames which can be used by subsequent entities * to parse content from those files. *

*

* Refer to http://wiki.apache.org/solr/DataImportHandler * for more details. *

*

* This API is experimental and may change in the future. * * @version $Id: LineEntityProcessor.java 816042 2009-09-17 04:00:41Z noble $ * @since solr 1.4 */ public class LineEntityProcessor extends EntityProcessorBase { private Pattern acceptLineRegex, skipLineRegex; private String url; private BufferedReader reader; /** * Parses each of the entity attributes. */ public void init(Context context) { super.init(context); String s; // init a regex to locate files from the input we want to index s = context.getResolvedEntityAttribute(ACCEPT_LINE_REGEX); if (s != null) { acceptLineRegex = Pattern.compile(s); } // init a regex to locate files from the input to be skipped s = context.getResolvedEntityAttribute(SKIP_LINE_REGEX); if (s != null) { skipLineRegex = Pattern.compile(s); } // the FileName is required. url = context.getResolvedEntityAttribute(URL); if (url == null) throw new DataImportHandlerException(DataImportHandlerException.SEVERE, "'"+ URL +"' is a required attribute"); } /** * Reads lines from the url till it finds a lines that matches the * optional acceptLineRegex and does not match the optional skipLineRegex. * * @return A row containing a minimum of one field "rawLine" or null to signal * end of file. The rawLine is the as line as returned by readLine() * from the url. However transformers can be used to create as * many other fields as required. */ public Map nextRow() { if (reader == null) { reader = new BufferedReader((Reader) context.getDataSource().getData(url)); } String line; while ( true ) { // read a line from the input file try { line = reader.readLine(); } catch (IOException exp) { throw new DataImportHandlerException(DataImportHandlerException.SEVERE, "Problem reading from input", exp); } if (line == null) return null; // end of input // First scan whole line to see if we want it if (acceptLineRegex != null && ! acceptLineRegex.matcher(line).find()) continue; if (skipLineRegex != null && skipLineRegex.matcher(line).find()) continue; // Contruct the 'row' of fields Map row = new HashMap(); row.put("rawLine", line); return row; } } @Override public void destroy() { if (reader != null) { IOUtils.closeQuietly(reader); } reader= null; super.destroy(); } /** * Holds the name of entity attribute that will be parsed to obtain * the filename containing the changelist. */ public static final String URL = "url"; /** * Holds the name of entity attribute that will be parsed to obtain * the pattern to be used when checking to see if a line should * be returned. */ public static final String ACCEPT_LINE_REGEX = "acceptLineRegex"; /** * Holds the name of entity attribute that will be parsed to obtain * the pattern to be used when checking to see if a line should * be ignored. */ public static final String SKIP_LINE_REGEX = "skipLineRegex"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy