Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package core |
| 18 | |
| 19 | import ( |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 20 | "flag" |
| 21 | "fmt" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 22 | "os" |
| 23 | "os/signal" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 24 | "strconv" |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 25 | "strings" |
| 26 | "sync" |
| 27 | |
| 28 | "gerrit.opencord.org/voltha-bbsim/common/logger" |
| 29 | log "github.com/sirupsen/logrus" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 30 | ) |
| 31 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 32 | type option struct { |
| 33 | address string |
| 34 | port uint32 |
| 35 | oltid uint32 |
| 36 | npon uint32 |
| 37 | nonus uint32 |
| 38 | aaawait int |
| 39 | dhcpwait int |
| 40 | dhcpservip string |
| 41 | intvl int |
| 42 | intvl_test int |
| 43 | Mode Mode |
| 44 | KafkaBroker string |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | func GetOptions() *option { |
| 48 | o := new(option) |
| 49 | addressport := flag.String("H", ":50060", "IP address:port") |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 50 | oltid := flag.Int("id", 0, "OLT-ID") |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 51 | npon := flag.Int("i", 1, "Number of PON-IF ports") |
| 52 | nonus := flag.Int("n", 1, "Number of ONUs per PON-IF port") |
| 53 | modeopt := flag.String("m", "default", "Emulation mode (default, aaa, both (aaa & dhcp))") |
| 54 | aaawait := flag.Int("aw", 30, "Wait time (sec) for activation WPA supplicants") |
| 55 | dhcpwait := flag.Int("dw", 50, "Wait time (sec) for activation DHCP clients") |
| 56 | dhcpservip := flag.String("s", "182.21.0.1", "DHCP Server IP Address") |
| 57 | intvl := flag.Int("v", 1, "Interval each Indication") |
| 58 | intvl_test := flag.Int("V", 1, "Interval each Indication") |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 59 | kafkaBroker := flag.String("k", "", "Kafka broker") |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 60 | o.Mode = DEFAULT |
| 61 | flag.Parse() |
| 62 | if *modeopt == "aaa" { |
| 63 | o.Mode = AAA |
| 64 | } else if *modeopt == "both" { |
| 65 | o.Mode = BOTH |
| 66 | } |
| 67 | o.oltid = uint32(*oltid) |
| 68 | o.npon = uint32(*npon) |
| 69 | o.nonus = uint32(*nonus) |
| 70 | o.aaawait = *aaawait |
| 71 | o.dhcpwait = *dhcpwait |
| 72 | o.dhcpservip = *dhcpservip |
| 73 | o.intvl = *intvl |
| 74 | o.intvl_test = *intvl_test |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 75 | o.KafkaBroker = *kafkaBroker |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 76 | o.address = (strings.Split(*addressport, ":")[0]) |
| 77 | tmp, _ := strconv.Atoi(strings.Split(*addressport, ":")[1]) |
| 78 | o.port = uint32(tmp) |
| 79 | return o |
| 80 | } |
| 81 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 82 | type stateMachine struct { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 83 | handlers []*handler |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 84 | state coreState |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 85 | } |
| 86 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 87 | type handler struct { |
| 88 | dst coreState |
| 89 | src coreState |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 90 | method func(s *Server) error |
| 91 | } |
| 92 | |
| 93 | func (sm *stateMachine) transit(next coreState) func(s *Server) error { |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 94 | for _, handler := range sm.handlers { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 95 | if handler.src == sm.state && handler.dst == next { |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 96 | logger.Debug("Hit (src:%d, dst:%d)", handler.src, handler.dst) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 97 | sm.state = next |
| 98 | return handler.method |
| 99 | } |
| 100 | } |
| 101 | sm.state = next |
| 102 | return nil |
| 103 | } |
| 104 | |
| 105 | type mediator struct { |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 106 | opt *option |
| 107 | sm *stateMachine |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 108 | server *Server |
| 109 | tester *Tester |
| 110 | } |
| 111 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 112 | func NewMediator(o *option) *mediator { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 113 | m := new(mediator) |
| 114 | m.opt = o |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 115 | logger.WithFields(log.Fields{ |
| 116 | "ip": o.address, |
| 117 | "baseport": o.port, |
| 118 | "pon_ports": o.npon, |
| 119 | "onus": o.nonus, |
| 120 | "mode": o.Mode, |
| 121 | }).Debug("New mediator") |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 122 | return m |
| 123 | } |
| 124 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 125 | func (m *mediator) Start() { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 126 | var wg sync.WaitGroup |
| 127 | opt := m.opt |
| 128 | server := NewCore(opt) |
| 129 | wg.Add(1) |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 130 | go func() { |
| 131 | if err := server.Start(); err != nil { //Blocking |
| 132 | logger.Error(err) |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 133 | } |
| 134 | wg.Done() |
| 135 | return |
| 136 | }() |
| 137 | |
| 138 | tester := NewTester(opt) |
| 139 | m.server = server |
| 140 | m.tester = tester |
| 141 | m.sm = &stateMachine{ |
| 142 | state: INACTIVE, |
| 143 | handlers: []*handler{ |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 144 | &handler{src: PRE_ACTIVE, dst: ACTIVE, method: m.tester.Start}, |
| 145 | &handler{src: ACTIVE, dst: PRE_ACTIVE, method: m.tester.Stop}, |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 146 | }, |
| 147 | } |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 148 | go func() { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 149 | m.Mediate() |
| 150 | }() |
| 151 | |
| 152 | c := make(chan os.Signal, 1) |
| 153 | signal.Notify(c, os.Interrupt) |
| 154 | go func() { |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 155 | defer func() { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 156 | logger.Debug("SIGINT catcher Done") |
| 157 | wg.Done() |
| 158 | }() |
| 159 | for sig := range c { |
| 160 | wg.Add(1) |
| 161 | fmt.Println("SIGINT", sig) |
| 162 | close(c) |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 163 | server.Stop() //Non-blocking |
| 164 | tester.Stop(server) //Non-blocking |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 165 | return |
| 166 | } |
| 167 | }() |
| 168 | wg.Wait() |
| 169 | logger.Debug("Reach to the end line") |
| 170 | } |
| 171 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 172 | func (m *mediator) Mediate() { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 173 | wg := sync.WaitGroup{} |
| 174 | defer logger.Debug("Mediate Done") |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 175 | for corestat := range m.server.stateChan { |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 176 | logger.Debug("Mediator receives state %d of server", corestat) |
| 177 | method := m.sm.transit(corestat) |
| 178 | if method != nil { |
| 179 | wg.Add(1) |
| 180 | defer wg.Done() |
| 181 | go func() error { |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 182 | if err := method(m.server); err != nil { //blocking |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 183 | m.server.Stop() |
| 184 | return err |
| 185 | } |
| 186 | return nil |
| 187 | }() |
| 188 | } |
| 189 | } |
| 190 | wg.Wait() |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame^] | 191 | } |