blob: 20fe8be5d2f2bd04d719f683b4a5205fcf9de6cc [file] [log] [blame]
Shad Ansari1106b022019-01-16 22:22:35 -08001/*
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
17package core
18
Shad Ansari53935c02019-01-17 16:41:45 -080019import "log"
Shad Ansari1106b022019-01-16 22:22:35 -080020
21func OmciSim(intfId uint32, onuId uint32, request []byte) ([]byte, error) {
22 var resp []byte
23
24 transactionId, deviceId, msgType, class, instance, content, err := ParsePkt(request)
25 if err != nil {
26 return resp, &OmciError{"Cannot parse omci msg"}
27 }
28
Shad Ansari53935c02019-01-17 16:41:45 -080029 log.Printf("OmciRun - transactionId: %d msgType: %d, ME Class: %d, ME Instance: %d",
Shad Ansari1106b022019-01-16 22:22:35 -080030 transactionId, msgType, class, instance)
31
32 key := OnuKey{intfId, onuId}
33 if _, ok := OnuOmciStateMap[key]; !ok {
34 OnuOmciStateMap[key] = NewOnuOmciState()
35 }
36
37 if _, ok := Handlers[msgType]; !ok {
Shad Ansari53935c02019-01-17 16:41:45 -080038 log.Printf("Ignore omci msg (msgType %d not handled)", msgType)
Shad Ansari1106b022019-01-16 22:22:35 -080039 return resp, &OmciError{"Unimplemented omci msg"}
40 }
41
42 resp, err = Handlers[msgType](class, content, key)
43 if err != nil {
Keita NISHIMOTO21853b32019-01-25 19:29:59 +090044 log.Println("%s", err)
45 return resp, nil
Shad Ansari1106b022019-01-16 22:22:35 -080046 }
Keita NISHIMOTO21853b32019-01-25 19:29:59 +090047
Shad Ansari1106b022019-01-16 22:22:35 -080048 resp[0] = byte(transactionId >> 8)
49 resp[1] = byte(transactionId & 0xFF)
50 resp[2] = 0x2<<4 | byte(msgType)
51 resp[3] = deviceId
52
53 return resp, nil
54}