blob: b207313084de6509b608a85dd679081197258488 [file] [log] [blame]
Craig Tiller3bc8ebd2015-06-24 15:41:15 -07001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * Copyright 2015, Google Inc.
Craig Tiller3bc8ebd2015-06-24 15:41:15 -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 Tiller9a4dddd2016-03-25 17:08:13 -070034#ifndef GRPC_CORE_LIB_CLIENT_CONFIG_RESOLVER_REGISTRY_H
35#define GRPC_CORE_LIB_CLIENT_CONFIG_RESOLVER_REGISTRY_H
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070036
Craig Tiller9533d042016-03-25 17:11:06 -070037#include "src/core/lib/client_config/resolver_factory.h"
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070038
Craig Tillereb3b12e2015-06-26 14:42:49 -070039void grpc_resolver_registry_init(const char *default_prefix);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070040void grpc_resolver_registry_shutdown(void);
41
42/** Register a resolver type.
43 URI's of \a scheme will be resolved with the given resolver.
44 If \a priority is greater than zero, then the resolver will be eligible
45 to resolve names that are passed in with no scheme. Higher priority
46 resolvers will be tried before lower priority schemes. */
Craig Tillerbc85be12015-08-24 10:36:39 -070047void grpc_register_resolver_type(grpc_resolver_factory *factory);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070048
Craig Tillerbc85be12015-08-24 10:36:39 -070049/** Create a resolver given \a target.
50 First tries to parse \a target as a URI. If this succeeds, tries
Craig Tillereb3b12e2015-06-26 14:42:49 -070051 to locate a registered resolver factory based on the URI scheme.
52 If parsing or location fails, prefixes default_prefix from
Craig Tillerbc85be12015-08-24 10:36:39 -070053 grpc_resolver_registry_init to target, and tries again (if default_prefix
Craig Tillereb3b12e2015-06-26 14:42:49 -070054 was not NULL).
55 If a resolver factory was found, use it to instantiate a resolver and
56 return it.
57 If a resolver factory was not found, return NULL. */
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070058grpc_resolver *grpc_resolver_create(
David Garcia Quintasfcf7ad62016-03-29 21:55:34 -070059 const char *target, grpc_client_channel_factory *client_channel_factory);
Craig Tillerbc85be12015-08-24 10:36:39 -070060
Craig Tiller65938df2016-03-31 13:08:49 -070061/** Find a resolver factory given a name and return an (owned-by-the-caller)
62 * reference to it */
63grpc_resolver_factory *grpc_resolver_factory_lookup(const char *name);
64
Craig Tillerbc85be12015-08-24 10:36:39 -070065/** Given a target, return a (freshly allocated with gpr_malloc) string
66 representing the default authority to pass from a client. */
67char *grpc_get_default_authority(const char *target);
Craig Tiller3bc8ebd2015-06-24 15:41:15 -070068
Craig Tiller9a4dddd2016-03-25 17:08:13 -070069#endif /* GRPC_CORE_LIB_CLIENT_CONFIG_RESOLVER_REGISTRY_H */