status.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. // Copyright 2015 CoreOS, Inc.
  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 raft
  15. import (
  16. "fmt"
  17. pb "github.com/coreos/etcd/raft/raftpb"
  18. )
  19. type Status struct {
  20. ID uint64
  21. pb.HardState
  22. SoftState
  23. Applied uint64
  24. Progress map[uint64]Progress
  25. }
  26. // getStatus gets a copy of the current raft status.
  27. func getStatus(r *raft) Status {
  28. s := Status{ID: r.id}
  29. s.HardState = r.HardState
  30. s.SoftState = *r.softState()
  31. s.Applied = r.raftLog.applied
  32. if s.RaftState == StateLeader {
  33. s.Progress = make(map[uint64]Progress)
  34. for id, p := range r.prs {
  35. s.Progress[id] = *p
  36. }
  37. }
  38. return s
  39. }
  40. // TODO: try to simplify this by introducing ID type into raft
  41. func (s Status) MarshalJSON() ([]byte, error) {
  42. j := fmt.Sprintf(`{"id":"%x","term":%d,"vote":"%x","commit":%d,"lead":"%x","raftState":%q,"progress":{`,
  43. s.ID, s.Term, s.Vote, s.Commit, s.Lead, s.RaftState)
  44. if len(s.Progress) == 0 {
  45. j += "}}"
  46. } else {
  47. for k, v := range s.Progress {
  48. subj := fmt.Sprintf(`"%x":{"match":%d,"next":%d,"state":%q},`, k, v.Match, v.Next, v.State)
  49. j += subj
  50. }
  51. // remove the trailing ","
  52. j = j[:len(j)-1] + "}}"
  53. }
  54. return []byte(j), nil
  55. }
  56. func (s Status) String() string {
  57. b, err := s.MarshalJSON()
  58. if err != nil {
  59. raftLogger.Panicf("unexpected error: %v", err)
  60. }
  61. return string(b)
  62. }