* * Copyright 2020 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http:www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *
Package grpcutil provides a bunch of utility functions to be used across the gRPC codebase.
package grpcutil

import (
	

	
)
split2 returns the values from strings.SplitN(s, sep, 2). If sep is not found, it returns ("", "", false) instead.
func (,  string) (string, string, bool) {
	 := strings.SplitN(, , 2)
	if len() < 2 {
		return "", "", false
	}
	return [0], [1], true
}
ParseTarget splits target into a resolver.Target struct containing scheme, authority and endpoint. If target is not a valid scheme://authority/endpoint, it returns {Endpoint: target}.
func ( string) ( resolver.Target) {
	var  bool
	.Scheme, .Endpoint,  = split2(, "://")
	if ! {
		return resolver.Target{Endpoint: }
	}
	.Authority, .Endpoint,  = split2(.Endpoint, "/")
	if ! {
		return resolver.Target{Endpoint: }
	}
	return