/log.go

https://gitlab.com/kurafuto/kurafuto · Go · 87 lines · 72 code · 11 blank · 4 comment · 4 complexity · a81a54a23ed97f96ee85c430afcdcb8f MD5 · raw file

  1. package main
  2. import (
  3. "github.com/mgutz/ansi"
  4. "log"
  5. "regexp"
  6. )
  7. var (
  8. resetColor = ansi.ColorCode("reset")
  9. fatalColor = ansi.ColorCode("red+b")
  10. warnColor = ansi.ColorCode("yellow+b")
  11. debugColor = ansi.ColorCode("blue")
  12. infoColor = ansi.ColorCode("blue+b")
  13. )
  14. var (
  15. colorRegexp = regexp.MustCompile(`&([a-fA-F0-9r])`)
  16. colors = map[byte]string{
  17. // TODO: the rest of the color codes.
  18. '0': ansi.ColorCode("black"),
  19. '1': ansi.ColorCode("blue"),
  20. '2': ansi.ColorCode("green"),
  21. '3': ansi.ColorCode("cyan"),
  22. '4': ansi.ColorCode("red"),
  23. '5': ansi.ColorCode("magenta"),
  24. '6': ansi.ColorCode("yellow"),
  25. '7': ansi.ColorCode("white"),
  26. '8': ansi.ColorCode("black+b"),
  27. '9': ansi.ColorCode("blue+b"),
  28. 'a': ansi.ColorCode("green+b"),
  29. 'b': ansi.ColorCode("cyan+b"),
  30. 'c': ansi.ColorCode("red+b"),
  31. 'd': ansi.ColorCode("magenta+b"),
  32. 'e': ansi.ColorCode("yellow+b"),
  33. 'f': ansi.ColorCode("white+b"),
  34. // Below are not part of official spec.
  35. 'r': resetColor,
  36. }
  37. )
  38. // Colorify takes a Minecraft classic chat color-coded string /&[a-f0-9]/, and
  39. // returns a "colorified" string with ANSI escape codes.
  40. func Colorify(in string) string {
  41. repl := colorRegexp.ReplaceAllFunc([]byte(in), func(s []byte) []byte {
  42. if len(s) != 2 {
  43. return s
  44. }
  45. b := []byte(colors[s[1]])
  46. return b
  47. })
  48. return string(repl) + resetColor
  49. }
  50. func Fatalf(s string, v ...interface{}) {
  51. log.Fatalf(fatalColor+s+resetColor, v...)
  52. }
  53. func Fatal(v ...interface{}) {
  54. log.Fatal(v...)
  55. }
  56. func Warnf(s string, v ...interface{}) {
  57. log.Printf(warnColor+s+resetColor, v...)
  58. }
  59. func Debugf(s string, v ...interface{}) {
  60. if verbosity < 2 {
  61. return
  62. }
  63. log.Printf(debugColor+s+resetColor, v...)
  64. }
  65. func Infof(s string, v ...interface{}) {
  66. if verbosity < 1 {
  67. return
  68. }
  69. log.Printf(infoColor+s+resetColor, v...)
  70. }
  71. func Logf(s string, v ...interface{}) {
  72. log.Printf(s, v...)
  73. }
  74. func Log(s ...interface{}) {
  75. log.Println(s...)
  76. }