aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/client_config/resolver_registry.c
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2016-09-23 16:10:19 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2016-09-23 16:30:22 -0700
commitfa0896bbd0323d18b4e41805510b23d0f42fc34c (patch)
tree61fd5421abbf280813d5da4efd05e9c357d56342 /src/core/ext/client_config/resolver_registry.c
parent942c264861dedd8020fc18d65933e8f4f57e3e46 (diff)
Rewrote handling of default resolver prefix
Diffstat (limited to 'src/core/ext/client_config/resolver_registry.c')
-rw-r--r--src/core/ext/client_config/resolver_registry.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/core/ext/client_config/resolver_registry.c b/src/core/ext/client_config/resolver_registry.c
index b5308a140c..8d8e2d9d8c 100644
--- a/src/core/ext/client_config/resolver_registry.c
+++ b/src/core/ext/client_config/resolver_registry.c
@@ -40,22 +40,20 @@
#include <grpc/support/string_util.h>
#define MAX_RESOLVERS 10
+#define DEFAULT_RESOLVER_PREFIX_MAX_LENGTH 32
static grpc_resolver_factory *g_all_of_the_resolvers[MAX_RESOLVERS];
static int g_number_of_resolvers = 0;
-static char *g_default_resolver_prefix;
+static char g_default_resolver_prefix[DEFAULT_RESOLVER_PREFIX_MAX_LENGTH] =
+ "dns:///";
-void grpc_resolver_registry_init(const char *default_resolver_prefix) {
- g_default_resolver_prefix = gpr_strdup(default_resolver_prefix);
-}
+void grpc_resolver_registry_init() {}
void grpc_resolver_registry_shutdown(void) {
- int i;
- for (i = 0; i < g_number_of_resolvers; i++) {
+ for (int i = 0; i < g_number_of_resolvers; i++) {
grpc_resolver_factory_unref(g_all_of_the_resolvers[i]);
}
- gpr_free(g_default_resolver_prefix);
// FIXME(ctiller): this should live in grpc_resolver_registry_init,
// however that would have the client_config plugin call this AFTER we start
// registering resolvers from third party plugins, and so they'd never show
@@ -65,6 +63,14 @@ void grpc_resolver_registry_shutdown(void) {
g_number_of_resolvers = 0;
}
+void grpc_resolver_registry_set_default_prefix(
+ const char *default_resolver_prefix) {
+ GPR_ASSERT(strlen(default_resolver_prefix) <
+ DEFAULT_RESOLVER_PREFIX_MAX_LENGTH);
+ memcpy(g_default_resolver_prefix, default_resolver_prefix,
+ DEFAULT_RESOLVER_PREFIX_MAX_LENGTH);
+}
+
void grpc_register_resolver_type(grpc_resolver_factory *factory) {
int i;
for (i = 0; i < g_number_of_resolvers; i++) {
@@ -108,7 +114,7 @@ static grpc_resolver_factory *resolve_factory(const char *target,
*uri = grpc_uri_parse(target, 1);
factory = lookup_factory_by_uri(*uri);
if (factory == NULL) {
- if (g_default_resolver_prefix != NULL) {
+ if (g_default_resolver_prefix[0] != '\0') {
grpc_uri_destroy(*uri);
gpr_asprintf(&tmp, "%s%s", g_default_resolver_prefix, target);
*uri = grpc_uri_parse(tmp, 1);