Package com.senseidb.search.query

Source Code of com.senseidb.search.query.SpanOrQueryConstructor

/**
* This software is licensed to you under the Apache License, Version 2.0 (the
* "Apache License").
*
* LinkedIn's contributions are made under the Apache License. If you contribute
* to the Software, the contributions will be deemed to have been made under the
* Apache License, unless you expressly indicate otherwise. Please do not make any
* contributions that would be inconsistent with the Apache License.
*
* You may obtain a copy of the Apache License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, this software
* distributed under the Apache License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Apache
* License for the specific language governing permissions and limitations for the
* software governed under the Apache License.
*
* © 2012 LinkedIn Corp. All Rights Reserved. 
*/
package com.senseidb.search.query;

import java.util.ArrayList;

import org.apache.lucene.index.Term;
import org.apache.lucene.search.Query;
import org.apache.lucene.search.spans.SpanOrQuery;
import org.apache.lucene.search.spans.SpanQuery;
import org.apache.lucene.search.spans.SpanTermQuery;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class SpanOrQueryConstructor extends QueryConstructor {

  public static final String QUERY_TYPE = "span_or";
  @Override
  public Query doConstructQuery(JSONObject jsonQuery) throws JSONException
  {

//      "span_or" : {
//        "clauses" : [
//            { "span_term" : { "field" : "value1" } },
//            { "span_term" : { "field" : "value2" } },
//            { "span_term" : { "field" : "value3" } }
//        ]
//    },
   
      String fieldCheck = null;
    JSONArray jsonArray = jsonQuery.getJSONArray(CLAUSES_PARAM);
    ArrayList<SpanTermQuery> clausesList = new ArrayList<SpanTermQuery>();
    for(int i = 0; i<jsonArray.length(); i++){
      JSONObject json = jsonArray.getJSONObject(i).getJSONObject(SPAN_TERM_PARAM);
      String field = (String)(json.keys().next());
     
      if(fieldCheck == null)
        fieldCheck = field;
      else if( !fieldCheck.equals(field))
        throw new IllegalArgumentException("Clauses must have same field: " + jsonQuery);
     
      String value = (String)json.get(field);
      clausesList.add(new SpanTermQuery(new Term(field, value)));
    }
   
    SpanQuery[] clauses = clausesList.toArray(new SpanQuery[clausesList.size()]);
    SpanOrQuery soq = new SpanOrQuery(clauses);
    return soq;
  }
}
TOP

Related Classes of com.senseidb.search.query.SpanOrQueryConstructor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.