~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to solr/core/src/java/org/apache/solr/search/FieldQParserPlugin.java

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Licensed to the Apache Software Foundation (ASF) under one or more
3
 
 * contributor license agreements.  See the NOTICE file distributed with
4
 
 * this work for additional information regarding copyright ownership.
5
 
 * The ASF licenses this file to You under the Apache License, Version 2.0
6
 
 * (the "License"); you may not use this file except in compliance with
7
 
 * the License.  You may obtain a copy of the License at
8
 
 *
9
 
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 
 *
11
 
 * Unless required by applicable law or agreed to in writing, software
12
 
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 
 * See the License for the specific language governing permissions and
15
 
 * limitations under the License.
16
 
 */
17
 
package org.apache.solr.search;
18
 
 
19
 
import org.apache.lucene.queryParser.ParseException;
20
 
import org.apache.lucene.search.*;
21
 
import org.apache.solr.common.params.SolrParams;
22
 
import org.apache.solr.common.util.NamedList;
23
 
import org.apache.solr.request.SolrQueryRequest;
24
 
import org.apache.solr.schema.FieldType;
25
 
import org.apache.solr.schema.SchemaField;
26
 
 
27
 
 
28
 
/**
29
 
 * Create a field query from the input value, applying text analysis and constructing a phrase query if appropriate.
30
 
 * <br>Other parameters: <code>f</code>, the field
31
 
 * <br>Example: <code>{!field f=myfield}Foo Bar</code> creates a phrase query with "foo" followed by "bar"
32
 
 * if the analyzer for myfield is a text field with an analyzer that splits on whitespace and lowercases terms.
33
 
 * This is generally equivalent to the Lucene query parser expression <code>myfield:"Foo Bar"</code>
34
 
 */
35
 
public class FieldQParserPlugin extends QParserPlugin {
36
 
  public static String NAME = "field";
37
 
 
38
 
  public void init(NamedList args) {
39
 
  }
40
 
 
41
 
  @Override
42
 
  public QParser createParser(String qstr, SolrParams localParams, SolrParams params, SolrQueryRequest req) {
43
 
    return new QParser(qstr, localParams, params, req) {
44
 
      @Override
45
 
      public Query parse() throws ParseException {
46
 
        String field = localParams.get(QueryParsing.F);
47
 
        String queryText = localParams.get(QueryParsing.V);
48
 
        SchemaField sf = req.getSchema().getField(field);
49
 
        FieldType ft = sf.getType();
50
 
        return ft.getFieldQuery(this, sf, queryText);
51
 
      }
52
 
    };
53
 
  }
54
 
}