subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 1 | /* |
| 2 | ================================================================================== |
| 3 | Copyright (c) 2020 Samsung |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | This source code is part of the near-RT RIC (RAN Intelligent Controller) |
| 18 | platform project (RICP). |
| 19 | ================================================================================== |
| 20 | */ |
| 21 | package main |
| 22 | |
| 23 | import ( |
| 24 | "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" |
| 25 | ) |
| 26 | |
| 27 | type HWApp struct { |
| 28 | } |
| 29 | |
| 30 | func (e *HWApp) ConfigChangeHandler(f string) { |
| 31 | xapp.Logger.Info("Config file changed") |
| 32 | } |
| 33 | |
subhash kumar singh | 02ac560 | 2021-06-01 18:31:07 +0530 | [diff] [blame] | 34 | func (e *HWApp) xAppStartCB(d interface{}) { |
| 35 | xapp.Logger.Info("xApp ready call back received") |
| 36 | } |
| 37 | |
subhash kumar singh | 2ba8bc2 | 2021-06-01 19:22:39 +0530 | [diff] [blame^] | 38 | func (e *HWApp) Consume(msg *xapp.RMRParams) (err error) { |
| 39 | id := xapp.Rmr.GetRicMessageName(msg.Mtype) |
| 40 | |
| 41 | xapp.Logger.Info("Message received: name=%s meid=%s subId=%d txid=%s len=%d", id, msg.Meid.RanName, msg.SubId, msg.Xid, msg.PayloadLen) |
| 42 | |
| 43 | switch id { |
| 44 | // policy request handler |
| 45 | case "A1_POLICY_REQUEST": |
| 46 | xapp.Logger.Info("Recived policy instance list") |
| 47 | |
| 48 | // health check request |
| 49 | case "RIC_HEALTH_CHECK_REQ": |
| 50 | xapp.Logger.Info("Received health check request") |
| 51 | |
| 52 | default: |
| 53 | xapp.Logger.Info("Unknown message type '%d', discarding", msg.Mtype) |
| 54 | } |
| 55 | |
| 56 | defer func() { |
| 57 | xapp.Rmr.Free(msg.Mbuf) |
| 58 | msg.Mbuf = nil |
| 59 | }() |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 60 | return |
| 61 | } |
| 62 | |
| 63 | func (e *HWApp) Run() { |
| 64 | |
| 65 | // set MDC |
| 66 | xapp.Logger.SetMdc("HWApp", "0.0.1") |
| 67 | |
| 68 | // set config change listener |
| 69 | xapp.AddConfigChangeListener(e.ConfigChangeHandler) |
| 70 | |
subhash kumar singh | 02ac560 | 2021-06-01 18:31:07 +0530 | [diff] [blame] | 71 | // register callback after xapp ready |
| 72 | xapp.SetReadyCB(e.xAppStartCB, true) |
| 73 | |
subhash kumar singh | eb2fc4f | 2021-06-01 18:43:32 +0530 | [diff] [blame] | 74 | // reading configuration from config file |
| 75 | waitForSdl := xapp.Config.GetBool("db.waitForSdl") |
| 76 | |
| 77 | // start xapp |
| 78 | xapp.RunWithParams(e, waitForSdl) |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 79 | |
| 80 | } |
| 81 | |
| 82 | func main() { |
| 83 | hw := HWApp{} |
| 84 | hw.Run() |
| 85 | } |