<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>MtasCQLParserWordQuery.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">MTAS</a> > <a href="index.source.html" class="el_package">mtas.parser.cql.util</a> > <span class="el_source">MtasCQLParserWordQuery.java</span></div><h1>MtasCQLParserWordQuery.java</h1><pre class="source lang-java linenums">package mtas.parser.cql.util; import java.io.IOException; import java.util.Map; import java.util.Set; import mtas.analysis.token.MtasToken; import mtas.parser.cql.ParseException; import mtas.search.spans.MtasSpanMatchNoneQuery; import mtas.search.spans.MtasSpanOrQuery; import mtas.search.spans.MtasSpanPrefixQuery; import mtas.search.spans.MtasSpanRegexpQuery; import mtas.search.spans.MtasSpanTermQuery; import mtas.search.spans.MtasSpanWildcardQuery; import mtas.search.spans.util.MtasSpanQuery; import org.apache.lucene.index.IndexReader; import org.apache.lucene.index.Term; import org.apache.lucene.search.IndexSearcher; import org.apache.lucene.search.spans.SpanWeight; /** * The Class MtasCQLParserWordQuery. */ public class MtasCQLParserWordQuery extends MtasSpanQuery { /** The query. */ MtasSpanQuery query; /** The term. */ Term term; /** The Constant MTAS_CQL_TERM_QUERY. */ public static final String MTAS_CQL_TERM_QUERY = "term"; /** The Constant MTAS_CQL_REGEXP_QUERY. */ public static final String MTAS_CQL_REGEXP_QUERY = "regexp"; /** The Constant MTAS_CQL_WILDCARD_QUERY. */ public static final String MTAS_CQL_WILDCARD_QUERY = "wildcard"; /** The Constant MTAS_CQL_VARIABLE_QUERY. */ public static final String MTAS_CQL_VARIABLE_QUERY = "variable"; /** * Instantiates a new mtas CQL parser word query. * * @param field the field * @param prefix the prefix * @param variables the variables */ public MtasCQLParserWordQuery(String field, String prefix, Map<String, String[]> variables) { <span class="nc" id="L54"> super(1, 1);</span> <span class="nc" id="L55"> term = new Term(field, prefix + MtasToken.DELIMITER);</span> <span class="nc" id="L56"> query = new MtasSpanPrefixQuery(term, true);</span> <span class="nc" id="L57"> }</span> /** * Instantiates a new mtas CQL parser word query. * * @param field the field * @param prefix the prefix * @param value the value * @param variables the variables * @param usedVariables the used variables * @throws ParseException the parse exception */ public MtasCQLParserWordQuery(String field, String prefix, String value, Map<String, String[]> variables, Set<String> usedVariables) throws ParseException { <span class="fc" id="L72"> this(field, prefix, value, MTAS_CQL_REGEXP_QUERY, variables, usedVariables);</span> <span class="fc" id="L73"> }</span> /** * Instantiates a new mtas CQL parser word query. * * @param field the field * @param prefix the prefix * @param value the value * @param type the type * @param variables the variables * @param usedVariables the used variables * @throws ParseException the parse exception */ public MtasCQLParserWordQuery(String field, String prefix, String value, String type, Map<String, String[]> variables, Set<String> usedVariables) throws ParseException { <span class="fc" id="L89"> super(1, 1);</span> <span class="fc" id="L90"> String termBase = prefix + MtasToken.DELIMITER + value;</span> <span class="fc bfc" id="L91" title="All 2 branches covered."> if (type.equals(MTAS_CQL_REGEXP_QUERY)) {</span> <span class="fc" id="L92"> term = new Term(field, termBase + "\u0000*");</span> <span class="fc" id="L93"> query = new MtasSpanRegexpQuery(term, true);</span> <span class="pc bpc" id="L94" title="1 of 2 branches missed."> } else if (type.equals(MTAS_CQL_WILDCARD_QUERY)) {</span> <span class="nc" id="L95"> term = new Term(field, termBase);</span> <span class="nc" id="L96"> query = new MtasSpanWildcardQuery(term, true);</span> <span class="pc bpc" id="L97" title="1 of 2 branches missed."> } else if (type.equals(MTAS_CQL_TERM_QUERY)) {</span> <span class="nc" id="L98"> term = new Term(field,</span> <span class="nc" id="L99"> "\"" + termBase.replace("\"", "\"\\\"\"") + "\"\u0000*");</span> <span class="nc" id="L100"> query = new MtasSpanRegexpQuery(term, true);</span> <span class="pc bpc" id="L101" title="1 of 2 branches missed."> } else if (type.equals(MTAS_CQL_VARIABLE_QUERY)) {</span> <span class="pc bpc" id="L102" title="3 of 6 branches missed."> if (value != null && variables != null && variables.containsKey(value)</span> <span class="pc bpc" id="L103" title="1 of 2 branches missed."> && variables.get(value) != null) {</span> <span class="pc bpc" id="L104" title="1 of 2 branches missed."> if (usedVariables.contains(value)) {</span> <span class="nc" id="L105"> throw new ParseException(</span> "variable $" + value + " should be used exactly one time"); } else { <span class="fc" id="L108"> usedVariables.add(value);</span> } <span class="fc" id="L110"> String[] list = variables.get(value);</span> <span class="fc" id="L111"> MtasSpanQuery[] queries = new MtasSpanQuery[list.length];</span> <span class="fc" id="L112"> term = new Term(field, prefix + MtasToken.DELIMITER);</span> <span class="fc bfc" id="L113" title="All 2 branches covered."> for (int i = 0; i < list.length; i++) {</span> <span class="fc" id="L114"> termBase = prefix + MtasToken.DELIMITER + list[i];</span> <span class="fc" id="L115"> term = new Term(field, "\"" + termBase + "\"\u0000*");</span> <span class="fc" id="L116"> queries[i] = new MtasSpanRegexpQuery(term, true);</span> } <span class="pc bpc" id="L118" title="1 of 2 branches missed."> if (queries.length == 0) {</span> <span class="nc" id="L119"> query = new MtasSpanMatchNoneQuery(field);</span> <span class="pc bpc" id="L120" title="1 of 2 branches missed."> } else if (queries.length > 1) {</span> <span class="fc" id="L121"> query = new MtasSpanOrQuery(queries);</span> } else { <span class="nc" id="L123"> query = queries[0];</span> } <span class="fc" id="L125"> } else {</span> <span class="nc" id="L126"> throw new ParseException("variable $" + value + " not defined");</span> } } else { <span class="nc" id="L129"> term = new Term(field, prefix + MtasToken.DELIMITER + value);</span> <span class="nc" id="L130"> query = new MtasSpanTermQuery(term, true);</span> } <span class="fc" id="L132"> }</span> /* * (non-Javadoc) * * @see org.apache.lucene.search.spans.SpanQuery#getField() */ @Override public String getField() { <span class="fc" id="L141"> return term.field();</span> } /* * (non-Javadoc) * * @see * org.apache.lucene.search.Query#rewrite(org.apache.lucene.index.IndexReader) */ @Override public MtasSpanQuery rewrite(IndexReader reader) throws IOException { <span class="fc" id="L152"> return query.rewrite(reader);</span> } /* * (non-Javadoc) * * @see * org.apache.lucene.search.spans.SpanQuery#createWeight(org.apache.lucene. * search.IndexSearcher, boolean) */ @Override public SpanWeight createWeight(IndexSearcher searcher, boolean needsScores) throws IOException { <span class="nc" id="L165"> return query.createWeight(searcher, needsScores);</span> } /* * (non-Javadoc) * * @see org.apache.lucene.search.Query#toString(java.lang.String) */ @Override public String toString(String field) { <span class="nc" id="L175"> return query.toString(term.field());</span> } /* * (non-Javadoc) * * @see org.apache.lucene.search.Query#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { <span class="pc bpc" id="L185" title="1 of 2 branches missed."> if (this == obj)</span> <span class="nc" id="L186"> return true;</span> <span class="pc bpc" id="L187" title="1 of 2 branches missed."> if (obj == null)</span> <span class="nc" id="L188"> return false;</span> <span class="fc bfc" id="L189" title="All 2 branches covered."> if (getClass() != obj.getClass())</span> <span class="fc" id="L190"> return false;</span> <span class="fc" id="L191"> final MtasCQLParserWordQuery that = (MtasCQLParserWordQuery) obj;</span> <span class="fc" id="L192"> return query.equals(that.query);</span> } /* * (non-Javadoc) * * @see org.apache.lucene.search.Query#hashCode() */ @Override public int hashCode() { <span class="fc" id="L202"> int h = this.getClass().getSimpleName().hashCode();</span> <span class="fc" id="L203"> h = (h * 5) ^ term.hashCode();</span> <span class="fc" id="L204"> h = (h * 7) ^ query.hashCode();</span> <span class="fc" id="L205"> return h;</span> } /* * (non-Javadoc) * * @see mtas.search.spans.util.MtasSpanQuery#disableTwoPhaseIterator() */ @Override public void disableTwoPhaseIterator() { <span class="nc" id="L215"> super.disableTwoPhaseIterator();</span> <span class="nc" id="L216"> query.disableTwoPhaseIterator();</span> <span class="nc" id="L217"> }</span> } </pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>