charset_unix.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //go:build !windows && !nacl && !plan9
  2. // +build !windows,!nacl,!plan9
  3. // Copyright 2016 The TCell Authors
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use file except in compliance with the License.
  7. // You may obtain a copy of the license at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. package tcell
  17. import (
  18. "os"
  19. "strings"
  20. )
  21. func getCharset() string {
  22. // Determine the character set. This can help us later.
  23. // Per POSIX, we search for LC_ALL first, then LC_CTYPE, and
  24. // finally LANG. First one set wins.
  25. locale := ""
  26. if locale = os.Getenv("LC_ALL"); locale == "" {
  27. if locale = os.Getenv("LC_CTYPE"); locale == "" {
  28. locale = os.Getenv("LANG")
  29. }
  30. }
  31. if locale == "POSIX" || locale == "C" {
  32. return "US-ASCII"
  33. }
  34. if i := strings.IndexRune(locale, '@'); i >= 0 {
  35. locale = locale[:i]
  36. }
  37. if i := strings.IndexRune(locale, '.'); i >= 0 {
  38. locale = locale[i+1:]
  39. } else {
  40. // Default assumption, and on Linux we can see LC_ALL
  41. // without a character set, which we assume implies UTF-8.
  42. return "UTF-8"
  43. }
  44. // XXX: add support for aliases
  45. return locale
  46. }