tee.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. // Copyright (c) 2016 Uber Technologies, Inc.
  2. //
  3. // Permission is hereby granted, free of charge, to any person obtaining a copy
  4. // of this software and associated documentation files (the "Software"), to deal
  5. // in the Software without restriction, including without limitation the rights
  6. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. // copies of the Software, and to permit persons to whom the Software is
  8. // furnished to do so, subject to the following conditions:
  9. //
  10. // The above copyright notice and this permission notice shall be included in
  11. // all copies or substantial portions of the Software.
  12. //
  13. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. // THE SOFTWARE.
  20. package zapcore
  21. import "go.uber.org/multierr"
  22. type multiCore []Core
  23. // NewTee creates a Core that duplicates log entries into two or more
  24. // underlying Cores.
  25. //
  26. // Calling it with a single Core returns the input unchanged, and calling
  27. // it with no input returns a no-op Core.
  28. func NewTee(cores ...Core) Core {
  29. switch len(cores) {
  30. case 0:
  31. return NewNopCore()
  32. case 1:
  33. return cores[0]
  34. default:
  35. return multiCore(cores)
  36. }
  37. }
  38. func (mc multiCore) With(fields []Field) Core {
  39. clone := make(multiCore, len(mc))
  40. for i := range mc {
  41. clone[i] = mc[i].With(fields)
  42. }
  43. return clone
  44. }
  45. func (mc multiCore) Enabled(lvl Level) bool {
  46. for i := range mc {
  47. if mc[i].Enabled(lvl) {
  48. return true
  49. }
  50. }
  51. return false
  52. }
  53. func (mc multiCore) Check(ent Entry, ce *CheckedEntry) *CheckedEntry {
  54. for i := range mc {
  55. ce = mc[i].Check(ent, ce)
  56. }
  57. return ce
  58. }
  59. func (mc multiCore) Write(ent Entry, fields []Field) error {
  60. var err error
  61. for i := range mc {
  62. err = multierr.Append(err, mc[i].Write(ent, fields))
  63. }
  64. return err
  65. }
  66. func (mc multiCore) Sync() error {
  67. var err error
  68. for i := range mc {
  69. err = multierr.Append(err, mc[i].Sync())
  70. }
  71. return err
  72. }