|
|
|
/*
|
|
|
|
*
|
|
|
|
* Copyright 2015, Google Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following disclaimer
|
|
|
|
* in the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name of Google Inc. nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/// A ClientContext allows the person implementing a service client to:
|
|
|
|
///
|
|
|
|
/// - Add custom metadata key-value pairs that will propagated to the server
|
|
|
|
/// side.
|
|
|
|
/// - Control call settings such as compression and authentication.
|
|
|
|
/// - Initial and trailing metadata coming from the server.
|
|
|
|
/// - Get performance metrics (ie, census).
|
|
|
|
///
|
|
|
|
/// Context settings are only relevant to the call they are invoked with, that
|
|
|
|
/// is to say, they aren't sticky. Some of these settings, such as the
|
|
|
|
/// compression options, can be made persistant at channel construction time
|
|
|
|
/// (see \a grpc::CreateCustomChannel).
|
|
|
|
///
|
|
|
|
/// \warning ClientContext instances should \em not be reused across rpcs.
|
|
|
|
|
|
|
|
#ifndef GRPCXX_CLIENT_CONTEXT_H
|
|
|
|
#define GRPCXX_CLIENT_CONTEXT_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <grpc/compression.h>
|
|
|
|
#include <grpc/grpc.h>
|
Updating moe_db.txt with the latest equivalence since the ruby import changed the exported structure.
Change on 2014/12/01 by nnoble <nnoble@google.com>
-------------
new [] file for grpc testing.
Change on 2014/12/02 by donnadionne <donnadionne@google.com>
-------------
Fix unfinished calls in thread_stress_test.
Previously we had an early return if we cancelled a stream part way through a
message. Correct this, so that half close and full close signals are propagated
up the stack correctly so that higher level state machines can see the
termination.
Change on 2014/12/02 by ctiller <ctiller@google.com>
-------------
Remove dependency on internal C code.
Change on 2014/12/02 by ctiller <ctiller@google.com>
-------------
Turn off the flaky bit from thread_stress_test.
Change on 2014/12/02 by ctiller <ctiller@google.com>
-------------
Add test cases of empty request/response, request streaming, response streaming, and half duplex streaming.
Bring up the GFE/ESF for mannual test:
[] build java/com/google/net/[]/testing/integration/hexa:server_components_env
[]-bin/java/com/google/net/[]/testing/integration/hexa/server_components_env --manual --rpc_port=25000 --use_autobahn
Change on 2014/12/02 by chenw <chenw@google.com>
-------------
Make echo/server.c and fling/server.c shutdown cleanly on SIGINT, and update
the relevant tests to exercise this mechanism.
Now "[] coverage" and the memory leak detector are able to see into the
server processes.
Change on 2014/12/02 by pmarks <pmarks@google.com>
-------------
Allow the # of channels to be configurable in this performance test. The threads will use the channels in statically-defined round-robin order (not based on when RPCs complete on any channel). The interesting cases are #channels=1 or #channels=#threads (we previously only had the latter case)
Change on 2014/12/02 by vpai <vpai@google.com>
-------------
Fixed a typo and reworded a comment.
Change on 2014/12/02 by gnezdo <gnezdo@google.com>
-------------
Require the grpc_call in this ClientContext to be NULL before allowing set_call to be invoked. Otherwise, it's an indication of a leak somewhere.
Change on 2014/12/02 by vpai <vpai@google.com>
-------------
Correctly return status other than ok and add a test for it.
Change on 2014/12/02 by yangg <yangg@google.com>
-------------
Better C++ guards for grpc_security.h
Change on 2014/12/02 by nnoble <nnoble@google.com>
-------------
Use nullptr instead of NULL for consistency.
Change on 2014/12/02 by vpai <vpai@google.com>
-------------
Updates the ruby gRPC service class to require the serialization method to be
a static method
- this brings it inline with the proto3 ruby API
- it adds a monkey patch to allow existing proto (beefcake) to continue working.
Change on 2014/12/02 by temiola <temiola@google.com>
-------------
Adding a buildable unit to the blue print file.
Added the buildable unit as its name will be usesd as tap project id.
This test will fail right away in tap until tests are actually added.
Change on 2014/12/02 by donnadionne <donnadionne@google.com>
-------------
Move interop ESF C++ server from Java to grpc directory.
Tests passed:
[] test javatests/com/google/net/[]/testing/integration/hexa/...
[] test net/grpc/testing/interop/esf_server/...
Change on 2014/12/02 by chenw <chenw@google.com>
-------------
Return a lame channel as opposed to NULL when secure channel creation fails.
- Looks like we're going to need something similar server-side.
- I changed the prototype of the lame client channel factory to take an
explicit void as I think this is better practice in C. Let me know if you
disagree and I will revert these changes.
Change on 2014/12/02 by jboeuf <jboeuf@google.com>
-------------
Putting ALPN support where it belongs.
Change on 2014/12/02 by jboeuf <jboeuf@google.com>
-------------
GOAWAY send path.
Sends a GOAWAY frame when shutting down.
This is not read and understood yet.
Change on 2014/12/03 by ctiller <ctiller@google.com>
-------------
Adds support for secure channels and servers.
- wraps new C apis (credentials, server_credentials) and Server#add_secure_http_port
- adds tests to ensure credentials and server credentials can be created
- updates client_server_spec to run the client_server wrapper layer end-to-end tests using a secure channel
Change on 2014/12/03 by temiola <temiola@google.com>
-------------
Fix existing issues regarding out of order events.
At the client side, using pluck as the client_metadata_read can happen anytime after invoke.
At the server side, allow halfclose_ok and rpc_end to come in reverse order.
Change on 2014/12/03 by yangg <yangg@google.com>
-------------
Don't track coverage of tests.
Change on 2014/12/03 by ctiller <ctiller@google.com>
-------------
Change UnaryCall to conform standard test requirement of LargeUnaryCall.
Change on 2014/12/03 by yangg <yangg@google.com>
-------------
updating alpn version to h2-15 ensure all interop are on the same version and working.
Java and go are not ready for h2-16 yet.
Change on 2014/12/03 by donnadionne <donnadionne@google.com>
-------------
Add config to bring echo server in [].
This is used to test production GFE as its bckend.
Change on 2014/12/03 by chenw <chenw@google.com>
-------------
In preparation for fixing shutdown race issues, change em to take ownership of
the file descriptor. Add an API to grpc_tcp to take an already created
grpc_em_fd object, and change tcp_client to use that API.
This is needed because otherwise an em user's close() of the file descriptor
may race with libevent internals. That's not an issue yet because destroy()
frees the events inline, but that can't be done safely if there is a concurrent
poller.
Change on 2014/12/03 by klempner <klempner@google.com>
-------------
Fixing TAP opensource build
We don't want to compile and run C++ tests in the C target.
Change on 2014/12/03 by nnoble <nnoble@google.com>
-------------
Move and separate interop tests by languages.
Small fixes to the test runner.
Improving logging.
Change on 2014/12/03 by donnadionne <donnadionne@google.com>
-------------
Fixing the opensource build:
-) The C/C++ split wasn't done up to the 'dep' target level
-) The alpn.c file was missing from build.json
Change on 2014/12/03 by nnoble <nnoble@google.com>
-------------
Adding blue print files after projects exist
Change on 2014/12/03 by donnadionne <donnadionne@google.com>
-------------
Refactor StreamContext using the new completion_queue_pluck API.
The dedicated the poller thread has been removed.
This CL keeps the current behavior to make it short. There is one following to
make it usable for both client and server.
The tags for pluck is based on the address of this StreamContext object for potential debug use.
The Read/Write and Wait cannot be called concurrently now and this might need to be fixed.
Change on 2014/12/03 by yangg <yangg@google.com>
-------------
Binary encoding utilities.
Support base64 encoding, HPACK static huffman encoding, and doing both at once.
Change on 2014/12/03 by ctiller <ctiller@google.com>
-------------
Enforce Makefile regeneration in presubmits.
Change on 2014/12/03 by ctiller <ctiller@google.com>
-------------
Make CloseSend() send a real zero-length control message to indicate EOS.
Change on 2014/12/03 by zhaoq <zhaoq@google.com>
-------------
Prefer to create dualstack sockets for TCP clients and servers, with automatic
fallback for environments where IPV6_V6ONLY can't be turned off.
Change on 2014/12/03 by pmarks <pmarks@google.com>
-------------
Add opensource path to build targets.
Ensure that MOE is going to run.
Change on 2014/12/03 by ctiller <ctiller@google.com>
-------------
Add PingPong test case. Delete FullDuplex test case. The latter is not specified for client in
https://docs.google.com/document/d/1dwrPpIu5EqiKVsquZfoOqTj7vP8fa1i49gornJo50Qw/edit#
Change on 2014/12/03 by chenw <chenw@google.com>
-------------
Make generate_projects.sh check out the generated targets.
Change on 2014/12/03 by ctiller <ctiller@google.com>
-------------
rspec cleanup
- stops declaring specs within the GRPC module
- splits Bidi streaming specs into a separate test suite
adding tests in the GRPC module was a mistake, it pollutes the module and can
affect other tests that run later by the test runner
the bidi tests are currently flaky, having them run in their own test suite
allows having two separate continuous builds (once ruby gRPC is on GitHub),
one that includes bidi where we tolerate flakiness, and another that does not,
where there should be no flakiness at all
Change on 2014/12/03 by temiola <temiola@google.com>
-------------
Adding support for composite and IAM credentials.
- For now, we don't do any checks on credentials compatibility in the
composite credentials. Maybe we'll add that later.
- Refactored the end to end security tests so that we always use the public API
(except for the fake security context which is not exposed).
Change on 2014/12/03 by jboeuf <jboeuf@google.com>
-------------
Make GPR library buildable in Visual Studio 2013.
Change on 2014/12/04 by jtattermusch <jtattermusch@google.com>
-------------
Adds codegen for ruby
This is being added now that ruby's proto and grpc apis are defined and stable
Change on 2014/12/04 by temiola <temiola@google.com>
-------------
Prevent NewStream() from sending negative or 0 timeout.
Change on 2014/12/04 by zhaoq <zhaoq@google.com>
-------------
Add a grpc_sockaddr_to_string() function, and use it when logging bind
failures. Also improve const-correctness in some earlier code.
I'm not certain whether inet_ntop() will need any platform-specific
implementations, but for now the compiler offers no complaints.
Demo:
$ []-bin/net/grpc/c/echo_server 1.2.3.4:80
... tcp_server.c:139] bind addr=[::ffff:1.2.3.4]:80: Permission denied
Change on 2014/12/04 by pmarks <pmarks@google.com>
-------------
Refactoring - moves c wrapped classes to a submodule Google::RPC::Core
- this allows for an explicit rule when reading through gRPC ruby code for telling
when an object is pure ruby or wrapped C
Change on 2014/12/04 by temiola <temiola@google.com>
-------------
Fixes the bidi_call
[]
Change on 2014/12/04 by temiola <temiola@google.com>
-------------
Fixing dev build when activating surface traces.
Change on 2014/12/04 by nnoble <nnoble@google.com>
-------------
Updates the tests to reflect that fact that some Credentials compose works.
Change on 2014/12/04 by temiola <temiola@google.com>
-------------
Making the generate_project_test actually do something.
Change on 2014/12/04 by nnoble <nnoble@google.com>
-------------
Rename "esf_server" to "[]4_server". Delete "test_sever" from Java directory.
Change on 2014/12/04 by chenw <chenw@google.com>
-------------
Added PHP client interop tests. Tested large_unary against the C++ server.
Change on 2014/12/04 by mlumish <mlumish@google.com>
-------------
Refactor grpc_create_dualstack_socket() by pulling the setsockopt into its own
function. This separates the magic test flag from the real fallback logic.
Change on 2014/12/04 by pmarks <pmarks@google.com>
-------------
Fixes the type of the constant used for test cert hostname
Change on 2014/12/04 by temiola <temiola@google.com>
-------------
Disabling these tests as they're causing flakiness.
Change on 2014/12/04 by ctiller <ctiller@google.com>
-------------
Change intptr --> uintptr.
Handles the case where a void* turns into a negative number, which then gets
hashed into a negative bucket and segfaults.
Change on 2014/12/04 by ctiller <ctiller@google.com>
-------------
Add a test fixture to force parsers to handle one byte at a time.
This should expand coverage and hopefully prevent errors at some point (it
seems to pass out of the box for now though).
Change on 2014/12/04 by ctiller <ctiller@google.com>
-------------
The code generator isn't +x.
Change on 2014/12/04 by ctiller <ctiller@google.com>
-------------
Updates math_client and math_server to allow construction using crednetials
By:
- Extending rpc_server constructor so that it takes a credentials keyword param
- Extending client_stub constructor so that it takes a credentials keyword param
Change on 2014/12/04 by temiola <temiola@google.com>
-------------
Format output a little more nicely.
Print each line of output separately - previously logging.info was truncating this at some maximum length, and logs were getting lost.
Change on 2014/12/04 by ctiller <ctiller@google.com>
-------------
Up timeout for this test.
Under TSAN, if we process one byte at a time, this timeout can be reached - and I think this is the cause of the following flake:
[]
Change on 2014/12/05 by ctiller <ctiller@google.com>
-------------
Adding more error logging for ssl.
Change on 2014/12/05 by jboeuf <jboeuf@google.com>
-------------
Read path for goaway.
Still need to add hooks to deprecate a channel on the client side when goaway
is received.
Change on 2014/12/05 by ctiller <ctiller@google.com>
-------------
Separate accept() into server_accept() and server_end_of_initial_metadata().
This allows servers to initiate reads before finishing writing metadata.
Change on 2014/12/05 by ctiller <ctiller@google.com>
-------------
Fix for breakage 11512317 - adding missing test files.
Change on 2014/12/05 by nnoble <nnoble@google.com>
-------------
grpc c++ server side streaming support.
This is based on [] There is a lot of room to clean up the internal implementation which may require refactoring of CompletionQueue. The current cl serves as a working implementation with the missing interfaces.
The sample generated files are included and will be removed before submitting.
Change on 2014/12/05 by yangg <yangg@google.com>
-------------
Changed to the latest timeout format again (search "grpc-timeout" in [] for the spec).
Change on 2014/12/05 by zhaoq <zhaoq@google.com>
-------------
Fixing opensource build.
Change on 2014/12/05 by nnoble <nnoble@google.com>
-------------
Making absolutely sure we can do the moe export by adding a sh_test for it.
Change on 2014/12/05 by nnoble <nnoble@google.com>
-------------
Change :scheme psuedo-header from "grpc" to "http" or "https".
Change on 2014/12/05 by zhaoq <zhaoq@google.com>
-------------
Add server credential wrapping for c++ server. It only wraps ssl and []2 for now.
The ServerCredentials class and the factory class are in a similar fashion as
client side wrapping. The difference is the factory method returns shared_ptr
instead of unique_ptr as the server builder needs to keep a reference to it for
actually creating the server later.
The integration will happen in a following cl.
Change on 2014/12/05 by yangg <yangg@google.com>
-------------
Fixed bugs in new_grpc_docker_builder.sh
Change on 2014/12/05 by mlumish <mlumish@google.com>
-------------
In secure endpoint, hold a refcount for the life of a write callback if the
write does not complete immediately.
Change on 2014/12/05 by klempner <klempner@google.com>
-------------
Add migration support to MOE and have TAP verify it doesn't break.
Migration support allows mirroring commits from [] into the git repo, instead of just a dump of the current source.
Change on 2014/12/05 by ejona <ejona@google.com>
-------------
Change initial window size to 65535 according http2 draft 15.
Change on 2014/12/05 by zhaoq <zhaoq@google.com>
-------------
Re-enable the flaky cases in dualstack_socket_test, with additional logging to
help track down the problem if it surfaces again.
This also seems like a good opportunity to make grpc_socket_utils a separate
library, as it's not really specific to TCP.
Example output:
logspam: [], 26570) resolved 2 addrs in 37ms:
logspam: [0] [::1]:26570
logspam: [1] 127.0.0.1:26570
Change on 2014/12/05 by pmarks <pmarks@google.com>
-------------
Opensource build fixes.
-) A function that has a return type should actually return something.
-) Don't pass unsigned chars to strlen and strncmp.
Change on 2014/12/05 by nnoble <nnoble@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=81458281
10 years ago
|
|
|
#include <grpc/support/log.h>
|
|
|
|
#include <grpc/support/time.h>
|
|
|
|
#include <grpc++/security/auth_context.h>
|
|
|
|
#include <grpc++/support/config.h>
|
|
|
|
#include <grpc++/support/status.h>
|
|
|
|
#include <grpc++/support/string_ref.h>
|
|
|
|
#include <grpc++/support/time.h>
|
|
|
|
|
|
|
|
struct census_context;
|
|
|
|
|
|
|
|
namespace grpc {
|
|
|
|
|
|
|
|
class Channel;
|
|
|
|
class CompletionQueue;
|
|
|
|
class Credentials;
|
|
|
|
class RpcMethod;
|
|
|
|
template <class R>
|
|
|
|
class ClientReader;
|
|
|
|
template <class W>
|
|
|
|
class ClientWriter;
|
|
|
|
template <class R, class W>
|
|
|
|
class ClientReaderWriter;
|
|
|
|
template <class R>
|
|
|
|
class ClientAsyncReader;
|
|
|
|
template <class W>
|
|
|
|
class ClientAsyncWriter;
|
|
|
|
template <class R, class W>
|
|
|
|
class ClientAsyncReaderWriter;
|
|
|
|
template <class R>
|
|
|
|
class ClientAsyncResponseReader;
|
|
|
|
class ServerContext;
|
|
|
|
|
|
|
|
/// Options for \a ClientContext::FromServerContext specifying which traits from
|
|
|
|
/// the \a ServerContext to propagate (copy) from it into a new \a
|
|
|
|
/// ClientContext.
|
|
|
|
///
|
|
|
|
/// \see ClientContext::FromServerContext
|
|
|
|
class PropagationOptions {
|
|
|
|
public:
|
|
|
|
PropagationOptions() : propagate_(GRPC_PROPAGATE_DEFAULTS) {}
|
|
|
|
|
|
|
|
PropagationOptions& enable_deadline_propagation() {
|
|
|
|
propagate_ |= GRPC_PROPAGATE_DEADLINE;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& disable_deadline_propagation() {
|
|
|
|
propagate_ &= ~GRPC_PROPAGATE_DEADLINE;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& enable_census_stats_propagation() {
|
|
|
|
propagate_ |= GRPC_PROPAGATE_CENSUS_STATS_CONTEXT;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& disable_census_stats_propagation() {
|
|
|
|
propagate_ &= ~GRPC_PROPAGATE_CENSUS_STATS_CONTEXT;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& enable_census_tracing_propagation() {
|
|
|
|
propagate_ |= GRPC_PROPAGATE_CENSUS_TRACING_CONTEXT;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& disable_census_tracing_propagation() {
|
|
|
|
propagate_ &= ~GRPC_PROPAGATE_CENSUS_TRACING_CONTEXT;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& enable_cancellation_propagation() {
|
|
|
|
propagate_ |= GRPC_PROPAGATE_CANCELLATION;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
PropagationOptions& disable_cancellation_propagation() {
|
|
|
|
propagate_ &= ~GRPC_PROPAGATE_CANCELLATION;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
gpr_uint32 c_bitmask() const { return propagate_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
gpr_uint32 propagate_;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace testing {
|
|
|
|
class InteropClientContextInspector;
|
|
|
|
} // namespace testing
|
|
|
|
|
|
|
|
class ClientContext {
|
|
|
|
public:
|
|
|
|
ClientContext();
|
|
|
|
~ClientContext();
|
|
|
|
|
|
|
|
/// Create a new \a ClientContext as a child of an incoming server call,
|
|
|
|
/// according to \a options (\see PropagationOptions).
|
|
|
|
///
|
|
|
|
/// \param server_context The source server context to use as the basis for
|
|
|
|
/// constructing the client context.
|
|
|
|
/// \param options The options controlling what to copy from the \a
|
|
|
|
/// server_context.
|
|
|
|
///
|
|
|
|
/// \return A newly constructed \a ClientContext instance based on \a
|
|
|
|
/// server_context, with traits propagated (copied) according to \a options.
|
|
|
|
static std::unique_ptr<ClientContext> FromServerContext(
|
|
|
|
const ServerContext& server_context,
|
|
|
|
PropagationOptions options = PropagationOptions());
|
|
|
|
|
|
|
|
/// Add the (\a meta_key, \a meta_value) pair to the metadata associated with
|
|
|
|
/// a client call. These are made available at the server side by the \a
|
|
|
|
/// grpc::ServerContext::client_metadata() method.
|
|
|
|
///
|
|
|
|
/// \warning This method should only be called before invoking the rpc.
|
|
|
|
///
|
|
|
|
/// \param meta_key The metadata key. If \a meta_value is binary data, it must
|
|
|
|
/// end in "-bin".
|
|
|
|
/// \param meta_value The metadata value. If its value is binary, it must be
|
|
|
|
/// base64-encoding (see https://tools.ietf.org/html/rfc4648#section-4) and \a
|
|
|
|
/// meta_key must end in "-bin".
|
|
|
|
void AddMetadata(const grpc::string& meta_key,
|
|
|
|
const grpc::string& meta_value);
|
|
|
|
|
|
|
|
/// Return a collection of initial metadata key-value pairs. Note that keys
|
|
|
|
/// may happen more than once (ie, a \a std::multimap is returned).
|
|
|
|
///
|
|
|
|
/// \warning This method should only be called after initial metadata has been
|
|
|
|
/// received. For streaming calls, see \a
|
|
|
|
/// ClientReaderInterface::WaitForInitialMetadata().
|
|
|
|
///
|
|
|
|
/// \return A multimap of initial metadata key-value pairs from the server.
|
|
|
|
const std::multimap<grpc::string_ref, grpc::string_ref>&
|
|
|
|
GetServerInitialMetadata() {
|
|
|
|
GPR_ASSERT(initial_metadata_received_);
|
|
|
|
return recv_initial_metadata_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return a collection of trailing metadata key-value pairs. Note that keys
|
|
|
|
/// may happen more than once (ie, a \a std::multimap is returned).
|
|
|
|
///
|
|
|
|
/// \warning This method is only callable once the stream has finished.
|
|
|
|
///
|
|
|
|
/// \return A multimap of metadata trailing key-value pairs from the server.
|
|
|
|
const std::multimap<grpc::string_ref, grpc::string_ref>&
|
|
|
|
GetServerTrailingMetadata() {
|
|
|
|
// TODO(yangg) check finished
|
|
|
|
return trailing_metadata_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the deadline for the client call.
|
|
|
|
///
|
|
|
|
/// \warning This method should only be called before invoking the rpc.
|
|
|
|
///
|
|
|
|
/// \param deadline the deadline for the client call. Units are determined by
|
|
|
|
/// the type used.
|
|
|
|
template <typename T>
|
|
|
|
void set_deadline(const T& deadline) {
|
|
|
|
TimePoint<T> deadline_tp(deadline);
|
|
|
|
deadline_ = deadline_tp.raw_time();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef GRPC_CXX0X_NO_CHRONO
|
|
|
|
/// Return the deadline for the client call.
|
|
|
|
std::chrono::system_clock::time_point deadline() {
|
|
|
|
return Timespec2Timepoint(deadline_);
|
|
|
|
}
|
|
|
|
#endif // !GRPC_CXX0X_NO_CHRONO
|
|
|
|
|
|
|
|
/// Return a \a gpr_timespec representation of the client call's deadline.
|
|
|
|
gpr_timespec raw_deadline() { return deadline_; }
|
|
|
|
|
|
|
|
/// Set the per call authority header (see
|
|
|
|
/// https://tools.ietf.org/html/rfc7540#section-8.1.2.3).
|
|
|
|
void set_authority(const grpc::string& authority) { authority_ = authority; }
|
|
|
|
|
|
|
|
/// Return the authentication context for this client call.
|
|
|
|
///
|
|
|
|
/// \see grpc::AuthContext.
|
|
|
|
std::shared_ptr<const AuthContext> auth_context() const;
|
|
|
|
|
|
|
|
/// Set credentials for the client call.
|
|
|
|
///
|
|
|
|
/// A credentials object encapsulates all the state needed by a client to
|
|
|
|
/// authenticate with a server and make various assertions, e.g., about the
|
|
|
|
/// client’s identity, role, or whether it is authorized to make a particular
|
|
|
|
/// call.
|
|
|
|
///
|
|
|
|
/// \see https://github.com/grpc/grpc/blob/master/doc/grpc-auth-support.md
|
|
|
|
void set_credentials(const std::shared_ptr<Credentials>& creds) {
|
|
|
|
creds_ = creds;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the compression algorithm to be used by the client call.
|
|
|
|
grpc_compression_algorithm compression_algorithm() const {
|
|
|
|
return compression_algorithm_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set \a algorithm to be the compression algorithm used for the client call.
|
|
|
|
///
|
|
|
|
/// \param algorith The compression algorithm used for the client call.
|
|
|
|
void set_compression_algorithm(grpc_compression_algorithm algorithm);
|
|
|
|
|
|
|
|
/// Return the peer uri in a string.
|
|
|
|
///
|
|
|
|
/// \warning This value is never authenticated or subject to any security
|
|
|
|
/// related code. It must not be used for any authentication related
|
|
|
|
/// functionality. Instead, use auth_context.
|
|
|
|
///
|
|
|
|
/// \return The call's peer URI.
|
|
|
|
grpc::string peer() const;
|
|
|
|
|
|
|
|
/// Get and set census context
|
|
|
|
void set_census_context(struct census_context* ccp) { census_context_ = ccp; }
|
|
|
|
struct census_context* census_context() const {
|
|
|
|
return census_context_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Send a best-effort out-of-band cancel. The call could be in any stage.
|
|
|
|
/// e.g. if it is already finished, it may still return success.
|
|
|
|
///
|
|
|
|
/// There is no guarantee the call will be cancelled.
|
|
|
|
void TryCancel();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Disallow copy and assign.
|
|
|
|
ClientContext(const ClientContext&);
|
|
|
|
ClientContext& operator=(const ClientContext&);
|
|
|
|
|
|
|
|
friend class ::grpc::testing::InteropClientContextInspector;
|
|
|
|
friend class CallOpClientRecvStatus;
|
|
|
|
friend class CallOpRecvInitialMetadata;
|
|
|
|
friend class Channel;
|
|
|
|
template <class R>
|
|
|
|
friend class ::grpc::ClientReader;
|
|
|
|
template <class W>
|
|
|
|
friend class ::grpc::ClientWriter;
|
|
|
|
template <class R, class W>
|
|
|
|
friend class ::grpc::ClientReaderWriter;
|
|
|
|
template <class R>
|
|
|
|
friend class ::grpc::ClientAsyncReader;
|
|
|
|
template <class W>
|
|
|
|
friend class ::grpc::ClientAsyncWriter;
|
|
|
|
template <class R, class W>
|
|
|
|
friend class ::grpc::ClientAsyncReaderWriter;
|
|
|
|
template <class R>
|
|
|
|
friend class ::grpc::ClientAsyncResponseReader;
|
|
|
|
template <class InputMessage, class OutputMessage>
|
|
|
|
friend Status BlockingUnaryCall(Channel* channel, const RpcMethod& method,
|
|
|
|
ClientContext* context,
|
|
|
|
const InputMessage& request,
|
|
|
|
OutputMessage* result);
|
|
|
|
|
|
|
|
grpc_call* call() { return call_; }
|
|
|
|
void set_call(grpc_call* call, const std::shared_ptr<Channel>& channel);
|
|
|
|
|
|
|
|
grpc::string authority() { return authority_; }
|
|
|
|
|
|
|
|
bool initial_metadata_received_;
|
|
|
|
std::shared_ptr<Channel> channel_;
|
|
|
|
grpc_call* call_;
|
|
|
|
gpr_timespec deadline_;
|
|
|
|
grpc::string authority_;
|
|
|
|
std::shared_ptr<Credentials> creds_;
|
|
|
|
mutable std::shared_ptr<const AuthContext> auth_context_;
|
|
|
|
struct census_context* census_context_;
|
|
|
|
std::multimap<grpc::string, grpc::string> send_initial_metadata_;
|
|
|
|
std::multimap<grpc::string_ref, grpc::string_ref> recv_initial_metadata_;
|
|
|
|
std::multimap<grpc::string_ref, grpc::string_ref> trailing_metadata_;
|
|
|
|
|
|
|
|
grpc_call* propagate_from_call_;
|
|
|
|
PropagationOptions propagation_options_;
|
|
|
|
|
|
|
|
grpc_compression_algorithm compression_algorithm_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace grpc
|
|
|
|
|
|
|
|
#endif // GRPCXX_CLIENT_CONTEXT_H
|