#include "src/cpp/ext/chaotic_good.h"
#include <grpc/grpc.h>
#include <memory>
#include "src/core/ext/transport/chaotic_good/client/chaotic_good_connector.h"
#include "src/core/ext/transport/chaotic_good/server/chaotic_good_server.h"
namespace grpc {
namespace {
class ChaoticGoodInsecureChannelCredentialsImpl final
: public ChannelCredentials {
public:
ChaoticGoodInsecureChannelCredentialsImpl() : ChannelCredentials(nullptr) {}
private:
std::shared_ptr<Channel> CreateChannelWithInterceptors(
const grpc::string& target, const grpc::ChannelArguments& args,
std::vector<
std::unique_ptr<experimental::ClientInterceptorFactoryInterface>>
interceptor_creators) override {
grpc_channel_args channel_args;
args.SetChannelArgs(&channel_args);
auto channel = grpc::CreateChannelInternal(
"", grpc_chaotic_good_channel_create(target.c_str(), &channel_args),
std::move(interceptor_creators));
return channel;
}
};
class ChaoticGoodInsecureServerCredentialsImpl final
: public ServerCredentials {
public:
ChaoticGoodInsecureServerCredentialsImpl() : ServerCredentials(nullptr) {}
int AddPortToServer(const std::string& addr, grpc_server* server) override {
return grpc_server_add_chaotic_good_port(server, addr.c_str());
}
};
}
std::shared_ptr<ChannelCredentials> ChaoticGoodInsecureChannelCredentials() {
return std::make_shared<ChaoticGoodInsecureChannelCredentialsImpl>();
}
std::shared_ptr<ServerCredentials> ChaoticGoodInsecureServerCredentials() {
return std::make_shared<ChaoticGoodInsecureServerCredentialsImpl>();
}
}