blob: 116f1dd4ad6dcf14a750837ca7ee89c77ac159c7 [file] [log] [blame]
Craig Tiller47c83fd2015-02-21 22:45:35 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
Craig Tiller47c83fd2015-02-21 22:45:35 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Julien Boeuf5be92a32015-08-28 16:28:18 -070034#include <grpc++/security/credentials.h>
yang-g9e2f90c2015-08-21 15:35:03 -070035
yang-g8c2be9f2015-08-19 16:28:09 -070036#include <grpc++/channel.h>
yang-g9e2f90c2015-08-21 15:35:03 -070037#include <grpc++/support/channel_arguments.h>
38#include <grpc++/support/config.h>
Craig Tillerf40df232016-03-25 13:38:14 -070039#include <grpc/grpc.h>
40#include <grpc/support/log.h>
yang-gc317f072015-08-20 12:18:08 -070041#include "src/cpp/client/create_channel_internal.h"
Craig Tiller47c83fd2015-02-21 22:45:35 -080042
43namespace grpc {
44
45namespace {
Vijay Paic0b2acb2016-11-01 16:31:56 -070046class InsecureChannelCredentialsImpl final : public ChannelCredentials {
Craig Tiller47c83fd2015-02-21 22:45:35 -080047 public:
yang-g8c2be9f2015-08-19 16:28:09 -070048 std::shared_ptr<grpc::Channel> CreateChannel(
Vijay Paic0b2acb2016-11-01 16:31:56 -070049 const string& target, const grpc::ChannelArguments& args) override {
Craig Tiller47c83fd2015-02-21 22:45:35 -080050 grpc_channel_args channel_args;
51 args.SetChannelArgs(&channel_args);
yang-gc317f072015-08-20 12:18:08 -070052 return CreateChannelInternal(
53 "",
54 grpc_insecure_channel_create(target.c_str(), &channel_args, nullptr));
Craig Tiller47c83fd2015-02-21 22:45:35 -080055 }
Craig Tillerad9d0c42015-02-23 10:53:01 -080056
Vijay Pai713c7b82016-11-01 16:33:18 -070057 SecureChannelCredentials* AsSecureCredentials() override { return nullptr; }
Craig Tiller47c83fd2015-02-21 22:45:35 -080058};
59} // namespace
60
Julien Boeuf54a902e2015-10-12 13:26:21 -070061std::shared_ptr<ChannelCredentials> InsecureChannelCredentials() {
62 return std::shared_ptr<ChannelCredentials>(
63 new InsecureChannelCredentialsImpl());
Craig Tiller47c83fd2015-02-21 22:45:35 -080064}
65
66} // namespace grpc