blob: 838568507c1dd9af2ddb7127f3a12cb39b1ec033 [file] [log] [blame]
using Lucene.Net.QueryParsers.Flexible.Core;
using Lucene.Net.QueryParsers.Flexible.Core.Builders;
using Lucene.Net.QueryParsers.Flexible.Core.Messages;
using Lucene.Net.QueryParsers.Flexible.Core.Nodes;
using Lucene.Net.QueryParsers.Flexible.Messages;
using Lucene.Net.QueryParsers.Flexible.Standard.Parser;
using Lucene.Net.Search;
using System.Collections.Generic;
namespace Lucene.Net.QueryParsers.Flexible.Standard.Builders
{
/*
* 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.
*/
/// <summary>
/// Builds a <see cref="BooleanQuery"/> object from a <see cref="BooleanQueryNode"/> object.
/// Every children in the <see cref="BooleanQueryNode"/> object must be already tagged
/// using <see cref="QueryTreeBuilder.QUERY_TREE_BUILDER_TAGID"/> with a <see cref="Query"/>
/// object.
/// <para>
/// It takes in consideration if the children is a <see cref="ModifierQueryNode"/> to
/// define the <see cref="BooleanClause"/>.
/// </para>
/// </summary>
public class BooleanQueryNodeBuilder : IStandardQueryBuilder
{
public BooleanQueryNodeBuilder()
{
// empty constructor
}
public virtual Query Build(IQueryNode queryNode)
{
BooleanQueryNode booleanNode = (BooleanQueryNode)queryNode;
BooleanQuery bQuery = new BooleanQuery();
IList<IQueryNode> children = booleanNode.GetChildren();
if (children != null)
{
foreach (IQueryNode child in children)
{
object obj = child.GetTag(QueryTreeBuilder.QUERY_TREE_BUILDER_TAGID);
if (obj != null)
{
Query query = (Query)obj;
try
{
bQuery.Add(query, GetModifierValue(child));
}
catch (BooleanQuery.TooManyClausesException ex)
{
throw new QueryNodeException(new Message(
QueryParserMessages.TOO_MANY_BOOLEAN_CLAUSES, BooleanQuery
.MaxClauseCount, queryNode
.ToQueryString(new EscapeQuerySyntax())), ex);
}
}
}
}
return bQuery;
}
private static Occur GetModifierValue(IQueryNode node)
{
if (node is ModifierQueryNode mNode)
{
switch (mNode.Modifier)
{
case Modifier.MOD_REQ:
return Occur.MUST;
case Modifier.MOD_NOT:
return Occur.MUST_NOT;
case Modifier.MOD_NONE:
return Occur.SHOULD;
}
}
return Occur.SHOULD;
}
}
}