/* * 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. */ package org.apache.ignite.internal.processors.platform.cache; import org.apache.ignite.Ignite; import org.apache.ignite.internal.binary.BinaryRawWriterEx; import org.apache.ignite.internal.processors.platform.PlatformAbstractPredicate; import org.apache.ignite.internal.processors.platform.PlatformContext; import org.apache.ignite.internal.processors.platform.memory.PlatformMemory; import org.apache.ignite.internal.processors.platform.memory.PlatformOutputStream; import org.apache.ignite.internal.processors.platform.utils.PlatformUtils; import org.apache.ignite.resources.IgniteInstanceResource; /** * Interop filter. Delegates apply to native platform. */ public class PlatformCacheEntryFilterImpl extends PlatformAbstractPredicate implements PlatformCacheEntryFilter { /** */ private static final long serialVersionUID = 0L; /** * {@link java.io.Externalizable} support. */ public PlatformCacheEntryFilterImpl() { super(); } /** * Constructor. * * @param pred .Net binary predicate. * @param ptr Pointer to predicate in the native platform. * @param ctx Kernal context. */ public PlatformCacheEntryFilterImpl(Object pred, long ptr, PlatformContext ctx) { super(pred, ptr, ctx); assert pred != null; } /** {@inheritDoc} */ @Override public boolean apply(Object k, Object v) { try (PlatformMemory mem = ctx.memory().allocate()) { PlatformOutputStream out = mem.output(); BinaryRawWriterEx writer = ctx.writer(out); writer.writeLong(ptr); writer.writeObject(k); writer.writeObject(v); out.synchronize(); return ctx.gateway().cacheEntryFilterApply(mem.pointer()) != 0; } } /** {@inheritDoc} */ @Override public void onClose() { if (ptr == 0) return; assert ctx != null; ctx.gateway().cacheEntryFilterDestroy(ptr); ptr = 0; } /** * @param ignite Ignite instance. */ @IgniteInstanceResource public void setIgniteInstance(Ignite ignite) { ctx = PlatformUtils.platformContext(ignite); if (ptr != 0) return; try (PlatformMemory mem = ctx.memory().allocate()) { PlatformOutputStream out = mem.output(); BinaryRawWriterEx writer = ctx.writer(out); writer.writeObject(pred); out.synchronize(); ptr = ctx.gateway().cacheEntryFilterCreate(mem.pointer()); } } }