rpuch commented on code in PR #3491: URL: https://github.com/apache/ignite-3/pull/3491#discussion_r1540715209
########## modules/table/src/main/java/org/apache/ignite/internal/table/distributed/AntiHijackTable.java: ########## @@ -0,0 +1,79 @@ +/* + * 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.table.distributed; + +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.Executor; +import org.apache.ignite.internal.table.AntiHijackKeyValueView; +import org.apache.ignite.internal.table.AntiHijackRecordView; +import org.apache.ignite.internal.thread.PublicApiThreading; +import org.apache.ignite.internal.wrapper.Wrapper; +import org.apache.ignite.internal.wrapper.Wrappers; +import org.apache.ignite.table.KeyValueView; +import org.apache.ignite.table.RecordView; +import org.apache.ignite.table.Table; +import org.apache.ignite.table.Tuple; +import org.apache.ignite.table.mapper.Mapper; + +/** + * Wrapper around {@link Table} that adds protection agains thread hijacking by users. + * + * @see PublicApiThreading#preventThreadHijack(CompletableFuture, Executor) + */ +class AntiHijackTable implements Table, Wrapper { + private final Table table; + private final Executor asyncContinuationExecutor; + + /** + * Constructor. + */ + AntiHijackTable(Table table, Executor asyncContinuationExecutor) { + this.table = table; + this.asyncContinuationExecutor = asyncContinuationExecutor; + } + + @Override + public String name() { + return table.name(); + } + + @Override + public <R> RecordView<R> recordView(Mapper<R> recMapper) { + return new AntiHijackRecordView<>(table.recordView(recMapper), asyncContinuationExecutor); + } + + @Override + public RecordView<Tuple> recordView() { + return new AntiHijackRecordView<>(table.recordView(), asyncContinuationExecutor); + } + + @Override + public <K, V> KeyValueView<K, V> keyValueView(Mapper<K> keyMapper, Mapper<V> valMapper) { + return new AntiHijackKeyValueView<>(table.keyValueView(keyMapper, valMapper), asyncContinuationExecutor); + } + + @Override + public KeyValueView<Tuple, Tuple> keyValueView() { + return new AntiHijackKeyValueView<>(table.keyValueView(), asyncContinuationExecutor); + } + + @Override + public <T> T unwrap(Class<T> classToUnwrap) { + return Wrappers.unwrap(table, classToUnwrap); Review Comment: The idea was to support wrapping other wrappers -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
