blob: 1176a05b7807f58bcaf14ca4e3b36a3de13c188a [file] [log] [blame]
Craig Tiller9d0e0472015-06-23 09:12:48 -07001/*
2 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02003 * Copyright 2015 gRPC authors.
Craig Tiller9d0e0472015-06-23 09:12:48 -07004 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02005 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
Craig Tiller9d0e0472015-06-23 09:12:48 -07008 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +02009 * http://www.apache.org/licenses/LICENSE-2.0
Craig Tiller9d0e0472015-06-23 09:12:48 -070010 *
Jan Tattermusch7897ae92017-06-07 22:57:36 +020011 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
Craig Tiller9d0e0472015-06-23 09:12:48 -070016 *
17 */
18
Craig Tillerd608cd62017-04-02 16:23:17 -070019#ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_LB_POLICY_H
20#define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_LB_POLICY_H
Craig Tiller9d0e0472015-06-23 09:12:48 -070021
Craig Tiller9eb0fde2017-03-31 16:59:30 -070022#include "src/core/ext/filters/client_channel/subchannel.h"
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -070023#include "src/core/lib/iomgr/polling_entity.h"
Craig Tiller9533d042016-03-25 17:11:06 -070024#include "src/core/lib/transport/connectivity_state.h"
Craig Tiller9d0e0472015-06-23 09:12:48 -070025
26/** A load balancing policy: specified by a vtable and a struct (which
27 is expected to be extended to contain some parameters) */
28typedef struct grpc_lb_policy grpc_lb_policy;
29typedef struct grpc_lb_policy_vtable grpc_lb_policy_vtable;
David Garcia Quintas87d5a312017-06-06 19:45:58 -070030typedef struct grpc_lb_policy_args grpc_lb_policy_args;
Craig Tiller9d0e0472015-06-23 09:12:48 -070031
ncteisen05294b62017-11-10 16:57:53 -080032extern grpc_core::DebugOnlyTraceFlag grpc_trace_lb_policy_refcount;
ncteisen9c43fc02017-06-08 16:06:23 -070033
Craig Tillera82950e2015-09-22 12:33:20 -070034struct grpc_lb_policy {
Craig Tillerbaa14a92017-11-03 09:09:36 -070035 const grpc_lb_policy_vtable* vtable;
Mark D. Roth473267b2018-01-11 08:53:53 -080036 gpr_refcount refs;
Craig Tiller69b093b2016-02-25 19:04:07 -080037 /* owned pointer to interested parties in load balancing decisions */
Craig Tillerbaa14a92017-11-03 09:09:36 -070038 grpc_pollset_set* interested_parties;
Craig Tiller2400bf52017-02-09 16:25:19 -080039 /* combiner under which lb_policy actions take place */
Craig Tillerbaa14a92017-11-03 09:09:36 -070040 grpc_combiner* combiner;
Juanli Shen592cf342017-12-04 20:52:01 -080041 /* callback to force a re-resolution */
42 grpc_closure* request_reresolution;
Craig Tiller7c0b4d72015-06-25 14:44:44 -070043};
44
Mark D. Roth473267b2018-01-11 08:53:53 -080045/// State used for an LB pick.
46typedef struct grpc_lb_policy_pick_state {
47 /// Initial metadata associated with the picking call.
Craig Tillerbaa14a92017-11-03 09:09:36 -070048 grpc_metadata_batch* initial_metadata;
Mark D. Roth473267b2018-01-11 08:53:53 -080049 /// Bitmask used for selective cancelling. See \a
50 /// grpc_lb_policy_cancel_picks() and \a GRPC_INITIAL_METADATA_* in
51 /// grpc_types.h.
David Garcia Quintas8aace512016-08-15 14:55:12 -070052 uint32_t initial_metadata_flags;
Mark D. Roth473267b2018-01-11 08:53:53 -080053 /// Storage for LB token in \a initial_metadata, or NULL if not used.
54 grpc_linked_mdelem lb_token_mdelem_storage;
55 /// Closure to run when pick is complete, if not completed synchronously.
56 grpc_closure* on_complete;
57 /// Will be set to the selected subchannel, or NULL on failure or when
58 /// the LB policy decides to drop the call.
59 grpc_connected_subchannel* connected_subchannel;
60 /// Will be populated with context to pass to the subchannel call, if needed.
61 grpc_call_context_element subchannel_call_context[GRPC_CONTEXT_COUNT];
62 /// Upon success, \a *user_data will be set to whatever opaque information
63 /// may need to be propagated from the LB policy, or NULL if not needed.
64 void** user_data;
65 /// Next pointer. For internal use by LB policy.
66 struct grpc_lb_policy_pick_state* next;
67} grpc_lb_policy_pick_state;
David Garcia Quintas8aace512016-08-15 14:55:12 -070068
Craig Tillera82950e2015-09-22 12:33:20 -070069struct grpc_lb_policy_vtable {
Yash Tibrewal8cf14702017-12-06 09:47:54 -080070 void (*destroy)(grpc_lb_policy* policy);
Mark D. Roth473267b2018-01-11 08:53:53 -080071
72 /// \see grpc_lb_policy_shutdown_locked().
73 void (*shutdown_locked)(grpc_lb_policy* policy, grpc_lb_policy* new_policy);
Craig Tiller9d0e0472015-06-23 09:12:48 -070074
David Garcia Quintas8aace512016-08-15 14:55:12 -070075 /** \see grpc_lb_policy_pick */
Mark D. Roth473267b2018-01-11 08:53:53 -080076 int (*pick_locked)(grpc_lb_policy* policy, grpc_lb_policy_pick_state* pick);
David Garcia Quintas8aace512016-08-15 14:55:12 -070077
78 /** \see grpc_lb_policy_cancel_pick */
Yash Tibrewal8cf14702017-12-06 09:47:54 -080079 void (*cancel_pick_locked)(grpc_lb_policy* policy,
Mark D. Roth473267b2018-01-11 08:53:53 -080080 grpc_lb_policy_pick_state* pick,
Craig Tillerbaa14a92017-11-03 09:09:36 -070081 grpc_error* error);
David Garcia Quintas8aace512016-08-15 14:55:12 -070082
83 /** \see grpc_lb_policy_cancel_picks */
Yash Tibrewal8cf14702017-12-06 09:47:54 -080084 void (*cancel_picks_locked)(grpc_lb_policy* policy,
Craig Tiller2400bf52017-02-09 16:25:19 -080085 uint32_t initial_metadata_flags_mask,
86 uint32_t initial_metadata_flags_eq,
Craig Tillerbaa14a92017-11-03 09:09:36 -070087 grpc_error* error);
Craig Tillerc7b5f762015-06-27 11:48:42 -070088
David Garcia Quintas8aace512016-08-15 14:55:12 -070089 /** \see grpc_lb_policy_ping_one */
Yash Tibrewald6c292f2017-12-07 19:38:43 -080090 void (*ping_one_locked)(grpc_lb_policy* policy, grpc_closure* on_initiate,
91 grpc_closure* on_ack);
Craig Tiller26dab312015-12-07 14:43:47 -080092
David Garcia Quintas3fb8f732016-06-15 22:53:08 -070093 /** Try to enter a READY connectivity state */
Yash Tibrewal8cf14702017-12-06 09:47:54 -080094 void (*exit_idle_locked)(grpc_lb_policy* policy);
Craig Tiller48cb07c2015-07-15 16:16:15 -070095
Craig Tillerc7b5f762015-06-27 11:48:42 -070096 /** check the current connectivity of the lb_policy */
Craig Tiller2400bf52017-02-09 16:25:19 -080097 grpc_connectivity_state (*check_connectivity_locked)(
Yash Tibrewal8cf14702017-12-06 09:47:54 -080098 grpc_lb_policy* policy, grpc_error** connectivity_error);
Craig Tillerc7b5f762015-06-27 11:48:42 -070099
100 /** call notify when the connectivity state of a channel changes from *state.
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700101 Updates *state with the new state of the policy. Calling with a NULL \a
David Garcia Quintas8aace512016-08-15 14:55:12 -0700102 state cancels the subscription. */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800103 void (*notify_on_state_change_locked)(grpc_lb_policy* policy,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700104 grpc_connectivity_state* state,
105 grpc_closure* closure);
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700106
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800107 void (*update_locked)(grpc_lb_policy* policy,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700108 const grpc_lb_policy_args* args);
Juanli Shen592cf342017-12-04 20:52:01 -0800109
110 /** \see grpc_lb_policy_set_reresolve_closure */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800111 void (*set_reresolve_closure_locked)(grpc_lb_policy* policy,
Juanli Shen592cf342017-12-04 20:52:01 -0800112 grpc_closure* request_reresolution);
Craig Tiller9d0e0472015-06-23 09:12:48 -0700113};
114
ncteisen9c43fc02017-06-08 16:06:23 -0700115#ifndef NDEBUG
Craig Tiller4ab82d22015-06-29 09:40:33 -0700116#define GRPC_LB_POLICY_REF(p, r) \
117 grpc_lb_policy_ref((p), __FILE__, __LINE__, (r))
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800118#define GRPC_LB_POLICY_UNREF(p, r) \
119 grpc_lb_policy_unref((p), __FILE__, __LINE__, (r))
Craig Tillerbaa14a92017-11-03 09:09:36 -0700120void grpc_lb_policy_ref(grpc_lb_policy* policy, const char* file, int line,
121 const char* reason);
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800122void grpc_lb_policy_unref(grpc_lb_policy* policy, const char* file, int line,
123 const char* reason);
Mark D. Roth473267b2018-01-11 08:53:53 -0800124#else // !NDEBUG
Craig Tillerd7b68e72015-06-28 11:41:09 -0700125#define GRPC_LB_POLICY_REF(p, r) grpc_lb_policy_ref((p))
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800126#define GRPC_LB_POLICY_UNREF(p, r) grpc_lb_policy_unref((p))
Craig Tillerbaa14a92017-11-03 09:09:36 -0700127void grpc_lb_policy_ref(grpc_lb_policy* policy);
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800128void grpc_lb_policy_unref(grpc_lb_policy* policy);
Craig Tillerd7b68e72015-06-28 11:41:09 -0700129#endif
130
131/** called by concrete implementations to initialize the base struct */
Craig Tillerbaa14a92017-11-03 09:09:36 -0700132void grpc_lb_policy_init(grpc_lb_policy* policy,
133 const grpc_lb_policy_vtable* vtable,
134 grpc_combiner* combiner);
Craig Tillerf5f17122015-06-25 08:47:26 -0700135
Mark D. Roth473267b2018-01-11 08:53:53 -0800136/// Shuts down \a policy.
137/// If \a new_policy is non-null, any pending picks will be restarted
138/// on that policy; otherwise, they will be failed.
139void grpc_lb_policy_shutdown_locked(grpc_lb_policy* policy,
140 grpc_lb_policy* new_policy);
Mark D. Roth1e5f6af2016-10-07 08:32:58 -0700141
Mark D. Roth473267b2018-01-11 08:53:53 -0800142/** Finds an appropriate subchannel for a call, based on data in \a pick.
143 \a pick must remain alive until the pick is complete.
Mark D. Roth1e5f6af2016-10-07 08:32:58 -0700144
145 If the pick succeeds and a result is known immediately, a non-zero
Mark D. Roth473267b2018-01-11 08:53:53 -0800146 value will be returned. Otherwise, \a pick->on_complete will be invoked
Mark D. Roth1e5f6af2016-10-07 08:32:58 -0700147 once the pick is complete with its error argument set to indicate
148 success or failure.
149
Yuchen Zeng3efcb482016-10-10 15:28:50 -0700150 Any IO should be done under the \a interested_parties \a grpc_pollset_set
151 in the \a grpc_lb_policy struct. */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800152int grpc_lb_policy_pick_locked(grpc_lb_policy* policy,
Mark D. Roth473267b2018-01-11 08:53:53 -0800153 grpc_lb_policy_pick_state* pick);
Craig Tiller577c9b22015-11-02 14:11:15 -0800154
David Garcia Quintas8aace512016-08-15 14:55:12 -0700155/** Perform a connected subchannel ping (see \a grpc_connected_subchannel_ping)
156 against one of the connected subchannels managed by \a policy. */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800157void grpc_lb_policy_ping_one_locked(grpc_lb_policy* policy,
Yuchen Zengc272dd72017-12-05 12:18:34 -0800158 grpc_closure* on_initiate,
159 grpc_closure* on_ack);
Craig Tiller26dab312015-12-07 14:43:47 -0800160
Mark D. Roth473267b2018-01-11 08:53:53 -0800161/** Cancel picks for \a pick.
David Garcia Quintas8aace512016-08-15 14:55:12 -0700162 The \a on_complete callback of the pending picks will be invoked with \a
163 *target set to NULL. */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800164void grpc_lb_policy_cancel_pick_locked(grpc_lb_policy* policy,
Mark D. Roth473267b2018-01-11 08:53:53 -0800165 grpc_lb_policy_pick_state* pick,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700166 grpc_error* error);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700167
David Garcia Quintas8aace512016-08-15 14:55:12 -0700168/** Cancel all pending picks for which their \a initial_metadata_flags (as given
169 in the call to \a grpc_lb_policy_pick) matches \a initial_metadata_flags_eq
170 when AND'd with \a initial_metadata_flags_mask */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800171void grpc_lb_policy_cancel_picks_locked(grpc_lb_policy* policy,
Craig Tiller2400bf52017-02-09 16:25:19 -0800172 uint32_t initial_metadata_flags_mask,
173 uint32_t initial_metadata_flags_eq,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700174 grpc_error* error);
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800175
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700176/** Try to enter a READY connectivity state */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800177void grpc_lb_policy_exit_idle_locked(grpc_lb_policy* policy);
Craig Tiller48cb07c2015-07-15 16:16:15 -0700178
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700179/* Call notify when the connectivity state of a channel changes from \a *state.
180 * Updates \a *state with the new state of the policy */
Craig Tiller2400bf52017-02-09 16:25:19 -0800181void grpc_lb_policy_notify_on_state_change_locked(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800182 grpc_lb_policy* policy, grpc_connectivity_state* state,
183 grpc_closure* closure);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700184
Craig Tiller2400bf52017-02-09 16:25:19 -0800185grpc_connectivity_state grpc_lb_policy_check_connectivity_locked(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800186 grpc_lb_policy* policy, grpc_error** connectivity_error);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700187
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700188/** Update \a policy with \a lb_policy_args. */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800189void grpc_lb_policy_update_locked(grpc_lb_policy* policy,
Craig Tillerbaa14a92017-11-03 09:09:36 -0700190 const grpc_lb_policy_args* lb_policy_args);
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700191
Juanli Shen592cf342017-12-04 20:52:01 -0800192/** Set the re-resolution closure to \a request_reresolution. */
193void grpc_lb_policy_set_reresolve_closure_locked(
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800194 grpc_lb_policy* policy, grpc_closure* request_reresolution);
Juanli Shen592cf342017-12-04 20:52:01 -0800195
196/** Try to request a re-resolution. It's NOT a public API; it's only for use by
197 the LB policy implementations. */
Yash Tibrewal8cf14702017-12-06 09:47:54 -0800198void grpc_lb_policy_try_reresolve(grpc_lb_policy* policy,
Juanli Shen592cf342017-12-04 20:52:01 -0800199 grpc_core::TraceFlag* grpc_lb_trace,
200 grpc_error* error);
201
Craig Tillerd608cd62017-04-02 16:23:17 -0700202#endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_LB_POLICY_H */