Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forward map value extractors to HD indexes #13692

Merged
merged 2 commits into from Sep 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -38,11 +38,11 @@ public class IndexImpl implements InternalIndex {
public static final NullObject NULL = new NullObject();

protected final InternalSerializationService ss;
protected final Extractors extractors;
protected final IndexStore indexStore;

private final String attributeName;
private final boolean ordered;
private final Extractors extractors;
private final IndexCopyBehavior copyBehavior;
private final PerIndexStats stats;

Expand All @@ -53,9 +53,9 @@ public IndexImpl(String attributeName, boolean ordered, InternalSerializationSer
this.attributeName = attributeName;
this.ordered = ordered;
this.ss = ss;
this.extractors = extractors;
this.copyBehavior = copyBehavior;
this.indexStore = createIndexStore(ordered, stats);
this.extractors = extractors;
this.stats = stats;
}

Expand Down
@@ -0,0 +1,109 @@
/*
* Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved.
*
* 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.hazelcast.map.impl.query;

import com.hazelcast.config.Config;
import com.hazelcast.config.InMemoryFormat;
import com.hazelcast.config.MapAttributeConfig;
import com.hazelcast.config.MapIndexConfig;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IMap;
import com.hazelcast.query.Predicate;
import com.hazelcast.query.Predicates;
import com.hazelcast.query.extractor.ValueCollector;
import com.hazelcast.query.extractor.ValueExtractor;
import com.hazelcast.spi.properties.GroupProperty;
import com.hazelcast.test.HazelcastParallelParametersRunnerFactory;
import com.hazelcast.test.HazelcastTestSupport;
import com.hazelcast.test.annotation.ParallelTest;
import com.hazelcast.test.annotation.QuickTest;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;

import java.io.Serializable;
import java.util.Collection;

import static com.hazelcast.query.Predicates.equal;
import static java.util.Arrays.asList;
import static org.junit.Assert.assertEquals;

@RunWith(Parameterized.class)
@Parameterized.UseParametersRunnerFactory(HazelcastParallelParametersRunnerFactory.class)
@Category({QuickTest.class, ParallelTest.class})
public class ExtractorsAndIndexesTest extends HazelcastTestSupport {

@Parameterized.Parameters(name = "format:{0}")
public static Collection<Object[]> parameters() {
return asList(new Object[][]{{InMemoryFormat.OBJECT}, {InMemoryFormat.BINARY}});
}

@Parameterized.Parameter
public InMemoryFormat inMemoryFormat;

@Test
public void testExtractorsAreRespectedByEntriesReturnedFromIndexes() {
String mapName = randomMapName();

Config config = new Config();
config.getMapConfig(mapName).setInMemoryFormat(inMemoryFormat).addMapIndexConfig(new MapIndexConfig("last", true))
.addMapAttributeConfig(new MapAttributeConfig("generated", Extractor.class.getName()));
config.getNativeMemoryConfig().setEnabled(true);

config.setProperty(GroupProperty.PARTITION_COUNT.getName(), "1");
HazelcastInstance instance = createHazelcastInstance(config);

IMap<Integer, Person> map = instance.getMap(mapName);
populateMap(map);

// this predicate queries the index
Predicate lastPredicate = equal("last", "last");

// this predicate is not indexed and acts on the entries returned from
// the index which must support extractors otherwise this test will fail
Predicate alwaysFirst = equal("generated", "first");

Predicate composed = Predicates.and(lastPredicate, alwaysFirst);

Collection<Person> values = map.values(composed);
assertEquals(100, values.size());
}

public static class Person implements Serializable {
public String first;
public String last;
}

public static class Extractor extends ValueExtractor<Person, Void> {
@SuppressWarnings("unchecked")
@Override
public void extract(Person person, Void aVoid, ValueCollector valueCollector) {
valueCollector.addObject("first");
}
}

private void populateMap(IMap<Integer, Person> map) {
for (int i = 0; i < 100; i++) {
Person p = new Person();
p.first = "first" + i;
p.last = "last";
map.put(i, p);
}
}

}