| /* |
| Copyright 2019 the original author or authors. |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| */ |
| |
| package main |
| |
| import ( |
| "context" |
| "flag" |
| "fmt" |
| "os" |
| "time" |
| |
| "github.com/opencord/ofagent-go/internal/pkg/ofagent" |
| conf "github.com/opencord/voltha-lib-go/v7/pkg/config" |
| "github.com/opencord/voltha-lib-go/v7/pkg/db/kvstore" |
| "github.com/opencord/voltha-lib-go/v7/pkg/log" |
| "github.com/opencord/voltha-lib-go/v7/pkg/probe" |
| "github.com/opencord/voltha-lib-go/v7/pkg/version" |
| ) |
| |
| func printBanner() { |
| fmt.Println(` ___ _____ _ _ `) |
| fmt.Println(` / _ \| ___/ \ __ _ ___ _ __ | |_ `) |
| fmt.Println(` | | | | |_ / _ \ / _' |/ _ \ '_ \| __|`) |
| fmt.Println(` | |_| | _/ ___ \ (_| | __/ | | | |_ `) |
| fmt.Println(` \___/|_|/_/ \_\__, |\___|_| |_|\__|`) |
| fmt.Println(` |___/ `) |
| } |
| |
| func printVersion() { |
| fmt.Println("OFAgent") |
| fmt.Println(version.VersionInfo.String(" ")) |
| } |
| |
| func setLogConfig(ctx context.Context, kvStoreAddress, kvStoreType string, kvStoreTimeout time.Duration) (kvstore.Client, error) { |
| client, err := kvstore.NewEtcdClient(ctx, kvStoreAddress, kvStoreTimeout, log.WarnLevel) |
| |
| if err != nil { |
| return nil, err |
| } |
| |
| cm := conf.NewConfigManager(ctx, client, kvStoreType, kvStoreAddress, kvStoreTimeout) |
| go conf.StartLogLevelConfigProcessing(cm, ctx) |
| go conf.StartLogFeaturesConfigProcessing(cm, ctx) |
| return client, nil |
| } |
| |
| func stop(ctx context.Context, kvClient kvstore.Client) { |
| |
| // Cleanup - applies only if we had a kvClient |
| if kvClient != nil { |
| // Release all reservations |
| if err := kvClient.ReleaseAllReservations(ctx); err != nil { |
| logger.Infow(ctx, "fail-to-release-all-reservations", log.Fields{"error": err}) |
| } |
| // Close the DB connection |
| kvClient.Close(ctx) |
| } |
| |
| } |
| |
| func main() { |
| |
| config, _ := parseCommandLineArguments() |
| flag.Parse() |
| |
| if config.Version { |
| printVersion() |
| os.Exit(0) |
| } |
| |
| if config.Banner { |
| printBanner() |
| } |
| |
| /* |
| * Create a context which to start the services used by the applicaiton |
| * and attach the probe to that context |
| */ |
| p := &probe.Probe{} |
| ctx := context.WithValue(context.Background(), probe.ProbeContextKey, p) |
| |
| // Setup logging |
| |
| logLevel, err := log.StringToLogLevel(config.LogLevel) |
| if err != nil { |
| logger.Fatalf(ctx, "Cannot setup logging, %s", err) |
| } |
| |
| // Setup default logger - applies for packages that do not have specific logger set |
| if _, err = log.SetDefaultLogger(log.JSON, logLevel, log.Fields{"instanceId": config.InstanceID}); err != nil { |
| logger.With(log.Fields{"error": err}).Fatal(ctx, "Cannot setup logging") |
| } |
| |
| // Update all loggers (provisionned via init) with a common field |
| if err = log.UpdateAllLoggers(log.Fields{"instanceId": config.InstanceID}); err != nil { |
| logger.With(log.Fields{"error": err}).Fatal(ctx, "Cannot setup logging") |
| } |
| |
| log.SetAllLogLevel(logLevel) |
| |
| // depending on the build tags start the profiler |
| realMain() |
| |
| defer func() { |
| err = log.CleanUp() |
| if err != nil { |
| logger.Errorw(ctx, "unable-to-flush-any-buffered-log-entries", log.Fields{"error": err}) |
| } |
| }() |
| |
| logger.Infow(ctx, "ofagent-config", log.Fields{"config": *config}) |
| |
| /* |
| * Create and start the liveness and readiness container management probes. This |
| * is done in the main function so just in case the main starts multiple other |
| * objects there can be a single probe end point for the process. |
| */ |
| go p.ListenAndServe(ctx, config.ProbeEndPoint) |
| |
| client, err := setLogConfig(ctx, config.KVStoreAddress, config.KVStoreType, config.KVStoreTimeout) |
| if err != nil { |
| logger.Warnw(ctx, "unable-to-create-kvstore-client", log.Fields{"error": err}) |
| } |
| |
| closer, err := log.GetGlobalLFM().InitTracingAndLogCorrelation(config.TraceEnabled, config.TraceAgentAddress, config.LogCorrelationEnabled) |
| if err != nil { |
| logger.Warnw(ctx, "unable-to-initialize-tracing-and-log-correlation-module", log.Fields{"error": err}) |
| } else { |
| defer func() { |
| err = closer.Close() |
| if err != nil { |
| logger.Errorf(ctx, "failed to close global LFM: %v", err) |
| } |
| }() |
| } |
| |
| ofa, err := ofagent.NewOFAgent(ctx, &ofagent.OFAgent{ |
| OFControllerEndPoints: config.OFControllerEndPoints, |
| VolthaApiEndPoint: config.VolthaApiEndPoint, |
| DeviceListRefreshInterval: config.DeviceListRefreshInterval, |
| ConnectionMaxRetries: config.ConnectionMaxRetries, |
| ConnectionRetryDelay: config.ConnectionRetryDelay, |
| }) |
| if err != nil { |
| logger.Fatalw(ctx, "failed-to-create-ofagent", |
| log.Fields{ |
| "error": err}) |
| } |
| ofa.Run(ctx) |
| stop(ctx, client) |
| } |