blob: de9f8c7201da6e770f4f12086d1a9cb0ee2b21ae [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -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
34#include <grpc++/client_context.h>
35
36#include <grpc/grpc.h>
yangg87da1b92014-12-11 15:57:37 -080037#include "src/cpp/util/time.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038
39using std::chrono::system_clock;
40
41namespace grpc {
42
43ClientContext::ClientContext()
Craig Tillercf133f42015-02-26 14:05:56 -080044 : initial_metadata_received_(false),
45 call_(nullptr),
46 cq_(nullptr),
47 absolute_deadline_(gpr_inf_future) {}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080048
49ClientContext::~ClientContext() {
50 if (call_) {
51 grpc_call_destroy(call_);
52 }
53 if (cq_) {
54 grpc_completion_queue_shutdown(cq_);
nnoble0c475f02014-12-05 15:37:39 -080055 // Drain cq_.
Yang Gao6baa9b62015-03-17 10:49:39 -070056 grpc_event* ev;
nnoble0c475f02014-12-05 15:37:39 -080057 grpc_completion_type t;
58 do {
59 ev = grpc_completion_queue_next(cq_, gpr_inf_future);
60 t = ev->type;
61 grpc_event_finish(ev);
62 } while (t != GRPC_QUEUE_SHUTDOWN);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080063 grpc_completion_queue_destroy(cq_);
64 }
65}
66
67void ClientContext::set_absolute_deadline(
Yang Gao6baa9b62015-03-17 10:49:39 -070068 const system_clock::time_point& deadline) {
yangg87da1b92014-12-11 15:57:37 -080069 Timepoint2Timespec(deadline, &absolute_deadline_);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080070}
71
72system_clock::time_point ClientContext::absolute_deadline() {
yangg87da1b92014-12-11 15:57:37 -080073 return Timespec2Timepoint(absolute_deadline_);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080074}
75
Yang Gao6baa9b62015-03-17 10:49:39 -070076void ClientContext::AddMetadata(const grpc::string& meta_key,
77 const grpc::string& meta_value) {
Yang Gao968ca532015-02-11 16:23:47 -080078 send_initial_metadata_.insert(std::make_pair(meta_key, meta_value));
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080079}
80
Yang Gao406b32f2015-02-13 16:25:33 -080081void ClientContext::TryCancel() {
82 if (call_) {
83 grpc_call_cancel(call_);
84 }
85}
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080086
Craig Tiller190d3602015-02-18 09:23:38 -080087} // namespace grpc