// Copyright 2021 gRPC authors. // // 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. #ifndef GRPCPP_CREATE_CHANNEL_BINDER_H #define GRPCPP_CREATE_CHANNEL_BINDER_H #include #ifdef GPR_ANDROID #include #include #include "absl/strings/string_view.h" #include #include #include namespace grpc { namespace experimental { /// EXPERIMENTAL Create a new \a Channel based on binder transport. The package /// name and class name will be used identify the specific application component /// to connect to. /// /// \param jni_env Pointer to a JNIEnv structure /// \param context The context that we will use to invoke \a bindService See /// https://developer.android.com/reference/android/content/Context#bindService(android.content.Intent,%20android.content.ServiceConnection,%20int) /// for detail. /// \param package_name Package name of the component to be connected to /// \param class_name Class name of the component to be connected to /// \param security_policy Used for checking if remote component is allowed to /// connect std::shared_ptr CreateBinderChannel( void* jni_env, jobject context, absl::string_view package_name, absl::string_view class_name, std::shared_ptr security_policy); /// EXPERIMENTAL Create a new \a Channel based on binder transport. The package /// name and class name will be used identify the specific application component /// to connect to. /// /// \param jni_env Pointer to a JNIEnv structure /// \param context The context that we will use to invoke \a bindService See /// https://developer.android.com/reference/android/content/Context#bindService(android.content.Intent,%20android.content.ServiceConnection,%20int) /// for detail. /// \param package_name Package name of the component to be connected to /// \param class_name Class name of the component to be connected to /// \param security_policy Used for checking if remote component is allowed to /// connect /// \param args Options for channel creation. std::shared_ptr CreateCustomBinderChannel( void* jni_env_void, jobject application, absl::string_view package_name, absl::string_view class_name, std::shared_ptr security_policy, const ChannelArguments& args); } // namespace experimental } // namespace grpc #endif #endif // GRPCPP_CREATE_CHANNEL_BINDER_H