blob: 240bdbd50cb3d5217a202cc21daff89c87118aa5 [file] [log] [blame]
elinuxhenrikcce95ff2021-09-05 17:27:02 +02001// -
2// ========================LICENSE_START=================================
3// O-RAN-SC
4// %%
5// Copyright (C) 2021: Nordix Foundation
6// %%
7// Licensed under the Apache License, Version 2.0 (the "License");
8// you may not use this file except in compliance with the License.
9// You may obtain a copy of the License at
10//
11// http://www.apache.org/licenses/LICENSE-2.0
12//
13// Unless required by applicable law or agreed to in writing, software
14// distributed under the License is distributed on an "AS IS" BASIS,
15// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16// See the License for the specific language governing permissions and
17// limitations under the License.
18// ========================LICENSE_END===================================
19//
20
21package main
22
23import (
24 "time"
25
26 log "github.com/sirupsen/logrus"
27 "oransc.org/nonrtric/dmaapmediatorproducer/internal/config"
28 "oransc.org/nonrtric/dmaapmediatorproducer/internal/jobtypes"
29)
30
31var configuration *config.Config
32
33func init() {
34 configuration = config.New()
35 if loglevel, err := log.ParseLevel(configuration.LogLevel); err == nil {
36 log.SetLevel(loglevel)
37 } else {
38 log.Warnf("Invalid log level: %v. Log level will be Info!", configuration.LogLevel)
39 }
40
41 log.Debug("Initializing DMaaP Mediator Producer")
42 if configuration.JobResultUri == "" {
43 log.Fatal("Missing JOB_RESULT_URI")
44 }
45
46 registrator := config.NewRegistratorImpl(configuration.InfoCoordinatorAddress)
47 if types, err := jobtypes.GetTypes(); err == nil {
48 if regErr := registrator.RegisterTypes(types); regErr != nil {
49 log.Fatalf("Unable to register all types due to: %v", regErr)
50 }
51 } else {
52 log.Fatalf("Unable to get types to register due to: %v", err)
53 }
54}
55
56func main() {
57 log.Debug("Starting DMaaP Mediator Producer")
58 time.Sleep(1000 * time.Millisecond)
59}