Skip to content

Commit

Permalink
Started working on fulltext search.
Browse files Browse the repository at this point in the history
(cherry picked from commit f105ca4)
  • Loading branch information
mederly committed Feb 28, 2017
1 parent 1164746 commit 7cf3b5f
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 0 deletions.
@@ -0,0 +1,129 @@
/*
* Copyright (c) 2010-2017 Evolveum
*
* Licensed 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.
*/

package com.evolveum.midpoint.prism.query;

import com.evolveum.midpoint.prism.PrismContainerValue;
import com.evolveum.midpoint.prism.match.MatchingRuleRegistry;
import com.evolveum.midpoint.util.DebugUtil;
import com.evolveum.midpoint.util.exception.SchemaException;
import org.apache.commons.lang.StringUtils;

import java.util.Arrays;
import java.util.Collection;
import java.util.Objects;
import java.util.stream.Collectors;

public class FullTextFilter extends ObjectFilter {

private Collection<String> values;
private ExpressionWrapper expression;

private FullTextFilter(Collection<String> values) {
this.values = values;
}

private FullTextFilter(ExpressionWrapper expression) {
this.expression = expression;
}

public static FullTextFilter createFullText(Collection<String> values){
return new FullTextFilter(values);
}

public static FullTextFilter createFullText(String... values){
return new FullTextFilter(Arrays.asList(values));
}

public Collection<String> getValues() {
return values;
}

public ExpressionWrapper getExpression() {
return expression;
}

@Override
public void checkConsistence(boolean requireDefinitions) {
if (values == null) {
throw new IllegalArgumentException("Null 'values' in "+this);
}
if (values.isEmpty()) {
throw new IllegalArgumentException("No values in "+this);
}
for (String value: values) {
if (StringUtils.isBlank(value)) {
throw new IllegalArgumentException("Empty value in "+this);
}
}
}

@Override
public String debugDump(int indent) {
StringBuilder sb = new StringBuilder();
sb.append("FULLTEXT: ");
sb.append("VALUE:");
if (values != null) {
sb.append("\n");
for (String value : values) {
DebugUtil.indentDebugDump(sb, indent+1);
sb.append(value);
sb.append("\n");
}
} else {
sb.append(" null\n");
}
return sb.toString();
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("IN OID: ");
if (values != null) {
sb.append(values.stream().collect(Collectors.joining("; ")));
}
return sb.toString();
}

@Override
public FullTextFilter clone() {
FullTextFilter clone = new FullTextFilter(values);
clone.expression = expression;
return clone;
}

@Override
public boolean match(PrismContainerValue value, MatchingRuleRegistry matchingRuleRegistry) throws SchemaException {
throw new UnsupportedOperationException("match is not supported for " + this);
}

@Override
public boolean equals(Object o, boolean exact) {
if (this == o)
return true;
if (!(o instanceof FullTextFilter))
return false;
FullTextFilter that = (FullTextFilter) o;
return Objects.equals(values, that.values) &&
Objects.equals(expression, that.expression);
}

@Override
public int hashCode() {
return Objects.hash(values);
}
}
Expand Up @@ -257,6 +257,12 @@ public S_AtomicFilterExit isRoot() {
return addSubfilter(orgFilter);
}

@Override
public S_AtomicFilterExit fullText(String... words) {
FullTextFilter fullTextFilter = FullTextFilter.createFullText(words);
return addSubfilter(fullTextFilter);
}

@Override
public S_FilterEntryOrEmpty block() {
return new R_Filter(queryBuilder, currentClass, OrFilter.createOr(), null, false, this, null, null, null, null, null);
Expand Down
Expand Up @@ -49,6 +49,7 @@ public interface S_AtomicFilterEntry {
S_AtomicFilterExit isInScopeOf(String oid, OrgFilter.Scope scope);
S_AtomicFilterExit isInScopeOf(PrismReferenceValue value, OrgFilter.Scope scope);
S_AtomicFilterExit isRoot() ;
S_AtomicFilterExit fullText(String... words);
S_FilterEntryOrEmpty block();
S_FilterEntryOrEmpty type(Class<? extends Containerable> type) ;
S_FilterEntry exists(QName... names) ;
Expand Down

0 comments on commit 7cf3b5f

Please sign in to comment.