File: multiplexer.tmpl

package info (click to toggle)
golang-github-lucas-clemente-quic-go 0.54.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,312 kB
  • sloc: sh: 54; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package logging

func NewMultiplexed{{ .StructName }} (tracers ...*{{ .StructName }}) *{{ .StructName }} {
    if len(tracers) == 0 {
        return nil
    }
    if len(tracers) == 1 {
        return tracers[0]
    }
    return &{{ .StructName }}{
        {{- range .Fields }}
        {{ .Name }}: func({{ .Params }}){{ .ReturnTypes }} {
            for _, t := range tracers {
                if t.{{ .Name }} != nil {
                    t.{{ .Name }}({{ .Args }})
                }
            }
        },
        {{- end }}
    }
}