com.tangosol.coherence.dslquery.operator.OrOperator Maven / Gradle / Ivy
Show all versions of coherence Show documentation
/*
* Copyright (c) 2000, 2020, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
package com.tangosol.coherence.dslquery.operator;
import com.tangosol.coherence.dsltools.precedence.InfixOPToken;
import com.tangosol.coherence.dsltools.precedence.OPToken;
import com.tangosol.coherence.dsltools.precedence.TokenTable;
import com.tangosol.util.Filter;
import com.tangosol.util.filter.AnyFilter;
/**
* A class representing the logical OR operator.
*
* @author jk 2013.12.03
* @since Coherence 12.2.1
*/
public class OrOperator
extends BaseOperator
{
// ----- constructors ---------------------------------------------------
/**
* Construct an OrOperator.
*/
protected OrOperator()
{
super("||", true, "or");
}
// ----- BaseOperator methods -------------------------------------------
@Override
public AnyFilter makeFilter(Object oLeft, Object oRight)
{
int cFilter = oLeft instanceof AnyFilter
? ((AnyFilter) oLeft).getFilters().length
: 1;
cFilter += oRight instanceof AnyFilter
? ((AnyFilter) oRight).getFilters().length
: 1;
Filter[] aFilters = new Filter[cFilter];
populateFilterArray(aFilters, (Filter) oLeft, (Filter) oRight);
return new AnyFilter(aFilters);
}
@Override
public void addToTokenTable(TokenTable tokenTable)
{
tokenTable.addToken(new InfixOPToken(f_sSymbol, OPToken.PRECEDENCE_LOGICAL, OPToken.BINARY_OPERATOR_NODE));
addAliases(tokenTable);
}
// ----- helper methods -------------------------------------------------
/**
* Populate the specified target {@link Filter} array with the Filters in the source
* array.
*
* If the any of the Filters in the source array is an {@link AnyFilter} then rather
* than adding the AnyFilter itself to the target array all of the filters contained
* within the AnyFilter are added to the array.
*
* @param aFilterDest the Filter array to be populated
* @param aFilterSrc the outer filter to add to the array
*/
protected void populateFilterArray(Filter[] aFilterDest, Filter... aFilterSrc)
{
int offset = 0;
for (Filter filter : aFilterSrc)
{
if (filter instanceof AnyFilter)
{
for (Filter innerFilter : ((AnyFilter) filter).getFilters())
{
aFilterDest[offset++] = innerFilter;
}
}
else
{
aFilterDest[offset++] = filter;
}
}
}
// ----- constants ------------------------------------------------------
/**
* An instance of the OrOperator.
*/
public static final OrOperator INSTANCE = new OrOperator();
}