stra.go 887 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package model
  2. import (
  3. "errors"
  4. "go-common/library/log"
  5. )
  6. //Stra 实验策略
  7. type Stra struct {
  8. //精度
  9. Precision int `json:"precision"`
  10. //依次比例
  11. Ratio []int `json:"ratio"`
  12. }
  13. func (s *Stra) check() (isValid bool) {
  14. sum := 0
  15. for _, r := range s.Ratio {
  16. sum += r
  17. }
  18. isValid = (sum == s.Precision)
  19. return
  20. }
  21. //Check ensure stra valid
  22. func (s *Stra) Check() (isValid bool) {
  23. return s.check()
  24. }
  25. //Version calculate version by score
  26. func (s *Stra) Version(score int) (version int, err error) {
  27. if !s.check() {
  28. err = errors.New("the sum of ratio is not equal to precision")
  29. log.Error("[model.stra|Version] s.check failed")
  30. return
  31. }
  32. if score >= s.Precision || score < 0 {
  33. err = errors.New("score should between 0 and s.Precision")
  34. return
  35. }
  36. for i, r := range s.Ratio {
  37. if score >= r {
  38. score -= r
  39. } else {
  40. version = i
  41. break
  42. }
  43. }
  44. return
  45. }