blob: 110d08fcac1503a7a83ce0ade36c30546bf9099e [file] [log] [blame]
Craig Tiller9d0e0472015-06-23 09:12:48 -07001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
Craig Tiller9d0e0472015-06-23 09:12:48 -07004 * 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
Craig Tiller5aceb272016-03-31 13:50:42 -070034#ifndef GRPC_CORE_EXT_CLIENT_CONFIG_LB_POLICY_H
35#define GRPC_CORE_EXT_CLIENT_CONFIG_LB_POLICY_H
Craig Tiller9d0e0472015-06-23 09:12:48 -070036
Craig Tillerd4c98332016-03-31 13:45:47 -070037#include "src/core/ext/client_config/subchannel.h"
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -070038#include "src/core/lib/iomgr/polling_entity.h"
Craig Tiller9533d042016-03-25 17:11:06 -070039#include "src/core/lib/transport/connectivity_state.h"
Craig Tiller9d0e0472015-06-23 09:12:48 -070040
41/** A load balancing policy: specified by a vtable and a struct (which
42 is expected to be extended to contain some parameters) */
43typedef struct grpc_lb_policy grpc_lb_policy;
44typedef struct grpc_lb_policy_vtable grpc_lb_policy_vtable;
45
Craig Tillera82950e2015-09-22 12:33:20 -070046typedef void (*grpc_lb_completion)(void *cb_arg, grpc_subchannel *subchannel,
47 grpc_status_code status, const char *errmsg);
Craig Tiller9d0e0472015-06-23 09:12:48 -070048
Craig Tillera82950e2015-09-22 12:33:20 -070049struct grpc_lb_policy {
Craig Tillereb3b12e2015-06-26 14:42:49 -070050 const grpc_lb_policy_vtable *vtable;
Craig Tiller48613042015-11-29 14:45:11 -080051 gpr_atm ref_pair;
Craig Tiller69b093b2016-02-25 19:04:07 -080052 /* owned pointer to interested parties in load balancing decisions */
53 grpc_pollset_set *interested_parties;
Craig Tiller7c0b4d72015-06-25 14:44:44 -070054};
55
David Garcia Quintas8aace512016-08-15 14:55:12 -070056/** Extra arguments for an LB pick */
57typedef struct grpc_lb_policy_pick_args {
58 /** Parties interested in the pick's progress */
59 grpc_polling_entity *pollent;
60 /** Initial metadata associated with the picking call. */
61 grpc_metadata_batch *initial_metadata;
David Garcia Quintas92eb6b92016-09-30 14:07:39 -070062 /** Bitmask used for selective cancelling. See \a
63 * grpc_lb_policy_cancel_picks() and \a GRPC_INITIAL_METADATA_* in
64 * grpc_types.h */
David Garcia Quintas8aace512016-08-15 14:55:12 -070065 uint32_t initial_metadata_flags;
David Garcia Quintas5b0e9462016-08-15 19:38:39 -070066 /** Storage for LB token in \a initial_metadata, or NULL if not used */
67 grpc_linked_mdelem *lb_token_mdelem_storage;
David Garcia Quintas5cf3c372016-10-03 14:30:03 -070068 /** Deadline for the call to the LB server */
David Garcia Quintas92eb6b92016-09-30 14:07:39 -070069 gpr_timespec deadline;
David Garcia Quintas8aace512016-08-15 14:55:12 -070070} grpc_lb_policy_pick_args;
71
Craig Tillera82950e2015-09-22 12:33:20 -070072struct grpc_lb_policy_vtable {
73 void (*destroy)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy);
Craig Tillera82950e2015-09-22 12:33:20 -070074 void (*shutdown)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy);
Craig Tiller9d0e0472015-06-23 09:12:48 -070075
David Garcia Quintas8aace512016-08-15 14:55:12 -070076 /** \see grpc_lb_policy_pick */
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -070077 int (*pick)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
David Garcia Quintas8aace512016-08-15 14:55:12 -070078 const grpc_lb_policy_pick_args *pick_args,
David Garcia Quintas331b9c02016-09-12 18:37:05 -070079 grpc_connected_subchannel **target, void **user_data,
80 grpc_closure *on_complete);
David Garcia Quintas8aace512016-08-15 14:55:12 -070081
82 /** \see grpc_lb_policy_cancel_pick */
Craig Tiller577c9b22015-11-02 14:11:15 -080083 void (*cancel_pick)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
Mark D. Roth5f844002016-09-08 08:20:53 -070084 grpc_connected_subchannel **target, grpc_error *error);
David Garcia Quintas8aace512016-08-15 14:55:12 -070085
86 /** \see grpc_lb_policy_cancel_picks */
Craig Tiller8c0d96f2016-03-11 14:27:52 -080087 void (*cancel_picks)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
88 uint32_t initial_metadata_flags_mask,
Mark D. Rothe65ff112016-09-09 13:48:38 -070089 uint32_t initial_metadata_flags_eq, grpc_error *error);
Craig Tillerc7b5f762015-06-27 11:48:42 -070090
David Garcia Quintas8aace512016-08-15 14:55:12 -070091 /** \see grpc_lb_policy_ping_one */
Craig Tillere2c62372015-12-07 16:11:03 -080092 void (*ping_one)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
93 grpc_closure *closure);
Craig Tiller26dab312015-12-07 14:43:47 -080094
David Garcia Quintas3fb8f732016-06-15 22:53:08 -070095 /** Try to enter a READY connectivity state */
Craig Tillera82950e2015-09-22 12:33:20 -070096 void (*exit_idle)(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy);
Craig Tiller48cb07c2015-07-15 16:16:15 -070097
Craig Tillerc7b5f762015-06-27 11:48:42 -070098 /** check the current connectivity of the lb_policy */
Craig Tiller804ff712016-05-05 16:25:40 -070099 grpc_connectivity_state (*check_connectivity)(
100 grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
101 grpc_error **connectivity_error);
Craig Tillerc7b5f762015-06-27 11:48:42 -0700102
103 /** call notify when the connectivity state of a channel changes from *state.
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700104 Updates *state with the new state of the policy. Calling with a NULL \a
David Garcia Quintas8aace512016-08-15 14:55:12 -0700105 state cancels the subscription. */
Craig Tillera82950e2015-09-22 12:33:20 -0700106 void (*notify_on_state_change)(grpc_exec_ctx *exec_ctx,
107 grpc_lb_policy *policy,
108 grpc_connectivity_state *state,
109 grpc_closure *closure);
Craig Tiller9d0e0472015-06-23 09:12:48 -0700110};
111
Craig Tiller54914ee2015-12-01 06:23:44 -0800112/*#define GRPC_LB_POLICY_REFCOUNT_DEBUG*/
Craig Tillerd7b68e72015-06-28 11:41:09 -0700113#ifdef GRPC_LB_POLICY_REFCOUNT_DEBUG
Craig Tiller4ab82d22015-06-29 09:40:33 -0700114#define GRPC_LB_POLICY_REF(p, r) \
115 grpc_lb_policy_ref((p), __FILE__, __LINE__, (r))
Craig Tiller8af4c332015-09-22 12:32:31 -0700116#define GRPC_LB_POLICY_UNREF(exec_ctx, p, r) \
117 grpc_lb_policy_unref((exec_ctx), (p), __FILE__, __LINE__, (r))
Craig Tiller48613042015-11-29 14:45:11 -0800118#define GRPC_LB_POLICY_WEAK_REF(p, r) \
119 grpc_lb_policy_weak_ref((p), __FILE__, __LINE__, (r))
120#define GRPC_LB_POLICY_WEAK_UNREF(exec_ctx, p, r) \
121 grpc_lb_policy_weak_unref((exec_ctx), (p), __FILE__, __LINE__, (r))
Craig Tillera82950e2015-09-22 12:33:20 -0700122void grpc_lb_policy_ref(grpc_lb_policy *policy, const char *file, int line,
123 const char *reason);
124void grpc_lb_policy_unref(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
125 const char *file, int line, const char *reason);
Craig Tiller48613042015-11-29 14:45:11 -0800126void grpc_lb_policy_weak_ref(grpc_lb_policy *policy, const char *file, int line,
Craig Tiller1d881fb2015-12-01 07:39:04 -0800127 const char *reason);
Craig Tiller48613042015-11-29 14:45:11 -0800128void grpc_lb_policy_weak_unref(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
Craig Tiller1d881fb2015-12-01 07:39:04 -0800129 const char *file, int line, const char *reason);
Craig Tillerd7b68e72015-06-28 11:41:09 -0700130#else
131#define GRPC_LB_POLICY_REF(p, r) grpc_lb_policy_ref((p))
Craig Tiller8af4c332015-09-22 12:32:31 -0700132#define GRPC_LB_POLICY_UNREF(cl, p, r) grpc_lb_policy_unref((cl), (p))
Craig Tiller48613042015-11-29 14:45:11 -0800133#define GRPC_LB_POLICY_WEAK_REF(p, r) grpc_lb_policy_weak_ref((p))
134#define GRPC_LB_POLICY_WEAK_UNREF(cl, p, r) grpc_lb_policy_weak_unref((cl), (p))
Craig Tillera82950e2015-09-22 12:33:20 -0700135void grpc_lb_policy_ref(grpc_lb_policy *policy);
136void grpc_lb_policy_unref(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy);
Craig Tiller48613042015-11-29 14:45:11 -0800137void grpc_lb_policy_weak_ref(grpc_lb_policy *policy);
138void grpc_lb_policy_weak_unref(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy);
Craig Tillerd7b68e72015-06-28 11:41:09 -0700139#endif
140
141/** called by concrete implementations to initialize the base struct */
Craig Tillera82950e2015-09-22 12:33:20 -0700142void grpc_lb_policy_init(grpc_lb_policy *policy,
143 const grpc_lb_policy_vtable *vtable);
Craig Tillerf5f17122015-06-25 08:47:26 -0700144
Mark D. Roth1e5f6af2016-10-07 08:32:58 -0700145/** Finds an appropriate subchannel for a call, based on \a pick_args.
146
147 \a target will be set to the selected subchannel, or NULL on failure.
148 Upon success, \a user_data will be set to whatever opaque information
149 may need to be propagated from the LB policy, or NULL if not needed.
150
151 If the pick succeeds and a result is known immediately, a non-zero
152 value will be returned. Otherwise, \a on_complete will be invoked
153 once the pick is complete with its error argument set to indicate
154 success or failure.
155
156 Any I/O should be done under \a pick_args->pollent. */
Craig Tiller577c9b22015-11-02 14:11:15 -0800157int grpc_lb_policy_pick(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
David Garcia Quintas8aace512016-08-15 14:55:12 -0700158 const grpc_lb_policy_pick_args *pick_args,
David Garcia Quintas331b9c02016-09-12 18:37:05 -0700159 grpc_connected_subchannel **target, void **user_data,
Craig Tillerab33b482015-11-21 08:11:04 -0800160 grpc_closure *on_complete);
Craig Tiller577c9b22015-11-02 14:11:15 -0800161
David Garcia Quintas8aace512016-08-15 14:55:12 -0700162/** Perform a connected subchannel ping (see \a grpc_connected_subchannel_ping)
163 against one of the connected subchannels managed by \a policy. */
Craig Tillere2c62372015-12-07 16:11:03 -0800164void grpc_lb_policy_ping_one(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
165 grpc_closure *closure);
Craig Tiller26dab312015-12-07 14:43:47 -0800166
David Garcia Quintas8aace512016-08-15 14:55:12 -0700167/** Cancel picks for \a target.
168 The \a on_complete callback of the pending picks will be invoked with \a
169 *target set to NULL. */
Craig Tiller577c9b22015-11-02 14:11:15 -0800170void grpc_lb_policy_cancel_pick(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
Mark D. Roth5f844002016-09-08 08:20:53 -0700171 grpc_connected_subchannel **target,
172 grpc_error *error);
Craig Tillerca3e9d32015-06-27 18:37:27 -0700173
David Garcia Quintas8aace512016-08-15 14:55:12 -0700174/** Cancel all pending picks for which their \a initial_metadata_flags (as given
175 in the call to \a grpc_lb_policy_pick) matches \a initial_metadata_flags_eq
176 when AND'd with \a initial_metadata_flags_mask */
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800177void grpc_lb_policy_cancel_picks(grpc_exec_ctx *exec_ctx,
178 grpc_lb_policy *policy,
179 uint32_t initial_metadata_flags_mask,
Mark D. Rothe65ff112016-09-09 13:48:38 -0700180 uint32_t initial_metadata_flags_eq,
181 grpc_error *error);
Craig Tiller8c0d96f2016-03-11 14:27:52 -0800182
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700183/** Try to enter a READY connectivity state */
Craig Tillera82950e2015-09-22 12:33:20 -0700184void grpc_lb_policy_exit_idle(grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy);
Craig Tiller48cb07c2015-07-15 16:16:15 -0700185
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700186/* Call notify when the connectivity state of a channel changes from \a *state.
187 * Updates \a *state with the new state of the policy */
Craig Tillera82950e2015-09-22 12:33:20 -0700188void grpc_lb_policy_notify_on_state_change(grpc_exec_ctx *exec_ctx,
189 grpc_lb_policy *policy,
190 grpc_connectivity_state *state,
191 grpc_closure *closure);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700192
Craig Tillera82950e2015-09-22 12:33:20 -0700193grpc_connectivity_state grpc_lb_policy_check_connectivity(
Craig Tiller804ff712016-05-05 16:25:40 -0700194 grpc_exec_ctx *exec_ctx, grpc_lb_policy *policy,
195 grpc_error **connectivity_error);
Craig Tiller1ada6ad2015-07-16 16:19:14 -0700196
Craig Tiller5aceb272016-03-31 13:50:42 -0700197#endif /* GRPC_CORE_EXT_CLIENT_CONFIG_LB_POLICY_H */