* * Copyright 2018 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 binarylog

import (
	
	
	
	
	
)
NewLoggerFromConfigString reads the string and build a logger. It can be used to build a new logger and assign it to binarylog.Logger. Example filter config strings: - "" Nothing will be logged - "*" All headers and messages will be fully logged. - "*{h}" Only headers will be logged. - "*{m:256}" Only the first 256 bytes of each message will be logged. - "Foo" Logs every method in service Foo - "Foo,-Foo/Bar" Logs every method in service Foo except method /Foo/Bar - "Foo,Foo/Bar{m:256}" Logs the first 256 bytes of each message in method /Foo/Bar, logs all headers and messages in every other method in service Foo. If two configs exist for one certain method or service, the one specified later overrides the previous config.
func ( string) Logger {
	if  == "" {
		return nil
	}
	 := newEmptyLogger()
	 := strings.Split(, ",")
	for ,  := range  {
		if  := .fillMethodLoggerWithConfigString();  != nil {
			grpclogLogger.Warningf("failed to parse binary log config: %v", )
			return nil
		}
	}
	return 
}
fillMethodLoggerWithConfigString parses config, creates methodLogger and adds it to the right map in the logger.
"" is invalid.
	if  == "" {
		return errors.New("empty string is not a valid method binary logging config")
	}
"-service/method", blacklist, no * or {} allowed.
	if [0] == '-' {
		, , ,  := parseMethodConfigAndSuffix([1:])
		if  != nil {
			return fmt.Errorf("invalid config: %q, %v", , )
		}
		if  == "*" {
			return fmt.Errorf("invalid config: %q, %v", , "* not allowed in blacklist config")
		}
		if  != "" {
			return fmt.Errorf("invalid config: %q, %v", , "header/message limit not allowed in blacklist config")
		}
		if  := .setBlacklist( + "/" + );  != nil {
			return fmt.Errorf("invalid config: %v", )
		}
		return nil
	}
"*{h:256;m:256}"
	if [0] == '*' {
		, ,  := parseHeaderMessageLengthConfig([1:])
		if  != nil {
			return fmt.Errorf("invalid config: %q, %v", , )
		}
		if  := .setDefaultMethodLogger(&methodLoggerConfig{hdr: , msg: });  != nil {
			return fmt.Errorf("invalid config: %v", )
		}
		return nil
	}

	, , ,  := parseMethodConfigAndSuffix()
	if  != nil {
		return fmt.Errorf("invalid config: %q, %v", , )
	}
	, ,  := parseHeaderMessageLengthConfig()
	if  != nil {
		return fmt.Errorf("invalid header/message length config: %q, %v", , )
	}
	if  == "*" {
		if  := .setServiceMethodLogger(, &methodLoggerConfig{hdr: , msg: });  != nil {
			return fmt.Errorf("invalid config: %v", )
		}
	} else {
		if  := .setMethodMethodLogger(+"/"+, &methodLoggerConfig{hdr: , msg: });  != nil {
			return fmt.Errorf("invalid config: %v", )
		}
	}
	return nil
}

TODO: this const is only used by env_config now. But could be useful for other config. Move to binarylog.go if necessary.
	maxUInt = ^uint64(0)
For "p.s/m" plus any suffix. Suffix will be parsed again. See test for expected output.
	longMethodConfigRegexpStr = `^([\w./]+)/((?:\w+)|[*])(.+)?$`
Turn "service/method{h;m}" into "service", "method", "{h;m}".
Regexp result: in: "p.s/m{h:123,m:123}", out: []string{"p.s/m{h:123,m:123}", "p.s", "m", "{h:123,m:123}"},
	 := longMethodConfigRegexp.FindStringSubmatch()
	if  == nil {
		return "", "", "", fmt.Errorf("%q contains invalid substring", )
	}
	 = [1]
	 = [2]
	 = [3]
	return
}
Turn "{h:123;m:345}" into 123, 345. Return maxUInt if length is unspecified.
func ( string) (,  uint64,  error) {
	if  == "" {
		return maxUInt, maxUInt, nil
Header config only.
	if  := headerConfigRegexp.FindStringSubmatch();  != nil {
		if  := [1];  != "" {
			,  = strconv.ParseUint(, 10, 64)
			if  != nil {
				return 0, 0, fmt.Errorf("failed to convert %q to uint", )
			}
			return , 0, nil
		}
		return maxUInt, 0, nil
	}
Message config only.
	if  := messageConfigRegexp.FindStringSubmatch();  != nil {
		if  := [1];  != "" {
			,  = strconv.ParseUint(, 10, 64)
			if  != nil {
				return 0, 0, fmt.Errorf("failed to convert %q to uint", )
			}
			return 0, , nil
		}
		return 0, maxUInt, nil
	}
Header and message config both.
Both hdr and msg are specified, but one or two of them might be empty.
		 = maxUInt
		 = maxUInt
		if  := [1];  != "" {
			,  = strconv.ParseUint(, 10, 64)
			if  != nil {
				return 0, 0, fmt.Errorf("failed to convert %q to uint", )
			}
		}
		if  := [2];  != "" {
			,  = strconv.ParseUint(, 10, 64)
			if  != nil {
				return 0, 0, fmt.Errorf("failed to convert %q to uint", )
			}
		}
		return , , nil
	}
	return 0, 0, fmt.Errorf("%q contains invalid substring", )