service.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package mobile
  2. import (
  3. "bufio"
  4. "io"
  5. "os"
  6. "strings"
  7. "time"
  8. "go-common/app/interface/main/app-wall/conf"
  9. mobileDao "go-common/app/interface/main/app-wall/dao/mobile"
  10. "go-common/app/interface/main/app-wall/model"
  11. "go-common/app/interface/main/app-wall/model/mobile"
  12. "go-common/library/log"
  13. "go-common/library/stat/prom"
  14. )
  15. type Service struct {
  16. c *conf.Config
  17. dao *mobileDao.Dao
  18. tick time.Duration
  19. mobileIpCache []*mobile.MobileIP
  20. ipPath string
  21. // prom
  22. pHit *prom.Prom
  23. pMiss *prom.Prom
  24. }
  25. func New(c *conf.Config) (s *Service) {
  26. s = &Service{
  27. c: c,
  28. dao: mobileDao.New(c),
  29. tick: time.Duration(c.Tick),
  30. mobileIpCache: []*mobile.MobileIP{},
  31. ipPath: c.IPLimit.MobileIPFile,
  32. // prom
  33. pHit: prom.CacheHit,
  34. pMiss: prom.CacheMiss,
  35. }
  36. s.loadIP()
  37. return
  38. }
  39. func (s *Service) loadIP() {
  40. var (
  41. ip *mobile.MobileIP
  42. file *os.File
  43. line string
  44. err error
  45. ips []*mobile.MobileIP
  46. )
  47. if file, err = os.Open(s.ipPath); err != nil {
  48. log.Error("mobileIPFile is null")
  49. return
  50. }
  51. defer file.Close()
  52. reader := bufio.NewReader(file)
  53. for {
  54. if line, err = reader.ReadString('\n'); err != nil {
  55. if err == io.EOF {
  56. err = nil
  57. break
  58. }
  59. continue
  60. }
  61. lines := strings.Fields(line)
  62. if len(lines) < 3 {
  63. continue
  64. }
  65. ip = &mobile.MobileIP{
  66. IPStartUint: model.InetAtoN(lines[1]),
  67. IPEndUint: model.InetAtoN(lines[2]),
  68. }
  69. ips = append(ips, ip)
  70. }
  71. s.mobileIpCache = ips
  72. log.Info("loadMobileIPCache success")
  73. }