/src/tmsu/common/terminal/ansi/ansi.go

https://bitbucket.org/oniony/tmsu · Go · 102 lines · 62 code · 23 blank · 17 comment · 0 complexity · d84b448f2459c45e7b93c60290f94a06 MD5 · raw file

  1. /*
  2. Copyright 2011-2014 Paul Ruane.
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation, either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. package ansi
  15. import (
  16. "regexp"
  17. "sort"
  18. )
  19. func Bold(text string) string {
  20. return BoldCode + text + ResetCode
  21. }
  22. func Italic(text string) string {
  23. return ItalicCode + text + ResetCode
  24. }
  25. func Underline(text string) string {
  26. return UnderlineCode + text + ResetCode
  27. }
  28. func Blink(text string) string {
  29. return BlinkCode + text + ResetCode
  30. }
  31. func Invert(text string) string {
  32. return InvertCode + text + ResetCode
  33. }
  34. func Red(text string) string {
  35. return RedCode + text + ResetCode
  36. }
  37. func Green(text string) string {
  38. return GreenCode + text + ResetCode
  39. }
  40. func Yellow(text string) string {
  41. return YellowCode + text + ResetCode
  42. }
  43. func Blue(text string) string {
  44. return BlueCode + text + ResetCode
  45. }
  46. func Magenta(text string) string {
  47. return MagentaCode + text + ResetCode
  48. }
  49. func Cyan(text string) string {
  50. return CyanCode + text + ResetCode
  51. }
  52. func White(text string) string {
  53. return WhiteCode + text + ResetCode
  54. }
  55. func Strip(text string) string {
  56. return formatting.ReplaceAllLiteralString(string(text), "")
  57. }
  58. func Sort(items []string) {
  59. sort.Sort(ansiStrings(items))
  60. }
  61. // unexported
  62. var formatting = regexp.MustCompile(`\x1b\[[0-9]*(;[0-9]*)*m`)
  63. type ansiString string
  64. type ansiStrings []string
  65. func (items ansiStrings) Len() int {
  66. return len(items)
  67. }
  68. func (items ansiStrings) Less(i, j int) bool {
  69. return Strip(items[i]) < Strip(items[j])
  70. }
  71. func (items ansiStrings) Swap(i, j int) {
  72. items[j], items[i] = items[i], items[j]
  73. }
  74. func (item ansiString) Length() int {
  75. return len(Strip(string(item)))
  76. }