urlpick.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // Copyright 2015 The etcd Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package rafthttp
  15. import (
  16. "net/url"
  17. "sync"
  18. "github.com/coreos/etcd/pkg/types"
  19. )
  20. type urlPicker struct {
  21. mu sync.Mutex // guards urls and picked
  22. urls types.URLs
  23. picked int
  24. }
  25. func newURLPicker(urls types.URLs) *urlPicker {
  26. return &urlPicker{
  27. urls: urls,
  28. }
  29. }
  30. func (p *urlPicker) update(urls types.URLs) {
  31. p.mu.Lock()
  32. defer p.mu.Unlock()
  33. p.urls = urls
  34. p.picked = 0
  35. }
  36. func (p *urlPicker) pick() url.URL {
  37. p.mu.Lock()
  38. defer p.mu.Unlock()
  39. return p.urls[p.picked]
  40. }
  41. // unreachable notices the picker that the given url is unreachable,
  42. // and it should use other possible urls.
  43. func (p *urlPicker) unreachable(u url.URL) {
  44. p.mu.Lock()
  45. defer p.mu.Unlock()
  46. if u == p.urls[p.picked] {
  47. p.picked = (p.picked + 1) % len(p.urls)
  48. }
  49. }