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 | |
| 35 | func (e *HWApp) xAppStartCB(d interface{}) { |
| 36 | xapp.Logger.Info("xApp ready call back received") |
| 37 | } |
| 38 | |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 39 | func (e *HWApp) Consume(rp *xapp.RMRParams) (err error) { |
| 40 | return |
| 41 | } |
| 42 | |
| 43 | func (e *HWApp) Run() { |
| 44 | |
| 45 | // set MDC |
| 46 | xapp.Logger.SetMdc("HWApp", "0.0.1") |
| 47 | |
| 48 | // set config change listener |
| 49 | xapp.AddConfigChangeListener(e.ConfigChangeHandler) |
| 50 | |
subhash kumar singh | 02ac560 | 2021-06-01 18:31:07 +0530 | [diff] [blame^] | 51 | // register callback after xapp ready |
| 52 | xapp.SetReadyCB(e.xAppStartCB, true) |
| 53 | |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 54 | xapp.RunWithParams(e, false) |
| 55 | |
| 56 | } |
| 57 | |
| 58 | func main() { |
| 59 | hw := HWApp{} |
| 60 | hw.Run() |
| 61 | } |