blob: 29de311d3990b6da0b82ace8f5d4c17fcf96dd90 [file] [log] [blame]
/*
* 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;
import org.jetbrains.annotations.Nullable;
/**
* Platform target that is invoked via JNI and propagates calls to underlying {@link PlatformTarget}.
*/
@SuppressWarnings("UnusedDeclaration")
public interface PlatformTargetProxy {
/**
* Operation accepting long value and returning long value.
*
* @param type Operation type.
* @param val Value.
* @return Result.
* @throws Exception If case of failure.
*/
long inLongOutLong(int type, long val) throws Exception;
/**
* Operation accepting memory stream and returning long value.
*
* @param type Operation type.
* @param memPtr Memory pointer.
* @return Result.
* @throws Exception If case of failure.
*/
long inStreamOutLong(int type, long memPtr) throws Exception;
/**
* Operation accepting memory stream and returning object.
*
* @param type Operation type.
* @param memPtr Memory pointer.
* @return Result.
* @throws Exception If case of failure.
*/
Object inStreamOutObject(int type, long memPtr) throws Exception;
/**
* Operation accepting one memory stream and returning result to another memory stream.
*
* @param type Operation type.
* @param inMemPtr Input memory pointer.
* @param outMemPtr Output memory pointer.
* @throws Exception In case of failure.
*/
void inStreamOutStream(int type, long inMemPtr, long outMemPtr) throws Exception;
/**
* Operation accepting an object and a memory stream and returning result to another memory stream and an object.
*
* @param type Operation type.
* @param arg Argument (optional).
* @param inMemPtr Input memory pointer.
* @param outMemPtr Output memory pointer.
* @return Result.
* @throws Exception In case of failure.
*/
Object inObjectStreamOutObjectStream(int type, @Nullable Object arg, long inMemPtr, long outMemPtr)
throws Exception;
/**
* Operation returning result to memory stream.
*
* @param type Operation type.
* @param memPtr Memory pointer.
* @throws Exception In case of failure.
*/
void outStream(int type, long memPtr) throws Exception;
/**
* Operation returning object result.
*
* @param type Operation type.
* @return Result.
* @throws Exception If failed.
*/
Object outObject(int type) throws Exception;
/**
* Asynchronous operation accepting memory stream.
*
* @param type Operation type.
* @param memPtr Memory pointer.
* @throws Exception If case of failure.
*/
void inStreamAsync(int type, long memPtr) throws Exception;
/**
* Asynchronous operation accepting memory stream and returning PlatformListenableTarget.
* Supports cancellable async operations.
*
* @param type Operation type.
* @param memPtr Memory pointer.
* @return Result.
* @throws Exception If case of failure.
*/
Object inStreamOutObjectAsync(int type, long memPtr) throws Exception;
/**
* Returns the underlying target.
*
* @return Underlying target.
*/
PlatformTarget unwrap();
}