mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
3.0 KiB
78 lines
3.0 KiB
3 years ago
|
// 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 <grpc/support/port_platform.h>
|
||
|
|
||
|
#ifdef GPR_ANDROID
|
||
|
|
||
|
#include <jni.h>
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
#include "absl/strings/string_view.h"
|
||
|
|
||
|
#include <grpcpp/channel.h>
|
||
|
#include <grpcpp/security/binder_security_policy.h>
|
||
|
#include <grpcpp/support/channel_arguments.h>
|
||
|
|
||
|
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<grpc::Channel> CreateBinderChannel(
|
||
|
void* jni_env, jobject context, absl::string_view package_name,
|
||
|
absl::string_view class_name,
|
||
|
std::shared_ptr<grpc::experimental::binder::SecurityPolicy>
|
||
|
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<grpc::Channel> CreateCustomBinderChannel(
|
||
|
void* jni_env_void, jobject application, absl::string_view package_name,
|
||
|
absl::string_view class_name,
|
||
|
std::shared_ptr<grpc::experimental::binder::SecurityPolicy> security_policy,
|
||
|
const ChannelArguments& args);
|
||
|
|
||
|
} // namespace experimental
|
||
|
} // namespace grpc
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif // GRPCPP_CREATE_CHANNEL_BINDER_H
|