Matteo Scandolo | 82c16d0 | 2019-09-24 09:34:32 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Portions copyright 2019-present Open Networking Foundation |
| 3 | * Original copyright 2019-present Ciena Corporation |
| 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 | package main |
| 18 | |
| 19 | import ( |
| 20 | "fmt" |
| 21 | "github.com/jessevdk/go-flags" |
| 22 | "github.com/opencord/bbsim/internal/bbsimctl/commands" |
| 23 | "github.com/opencord/bbsim/internal/bbsimctl/config" |
| 24 | "os" |
| 25 | "path" |
| 26 | ) |
| 27 | |
| 28 | func main() { |
| 29 | |
| 30 | parser := flags.NewNamedParser(path.Base(os.Args[0]), |
| 31 | flags.HelpFlag|flags.PassDoubleDash|flags.PassAfterNonOption) |
| 32 | _, err := parser.AddGroup("Global Options", "", &config.GlobalOptions) |
| 33 | if err != nil { |
| 34 | panic(err) |
| 35 | } |
| 36 | |
| 37 | commands.RegisterConfigCommands(parser) |
| 38 | commands.RegisterOltCommands(parser) |
| 39 | commands.RegisterONUCommands(parser) |
Matteo Scandolo | a42dd35 | 2019-09-30 15:46:43 -0700 | [diff] [blame] | 40 | commands.RegisterCompletionCommands(parser) |
Matteo Scandolo | 2bf742a | 2019-10-01 11:33:34 -0700 | [diff] [blame] | 41 | commands.RegisterLoggingCommands(parser) |
Matteo Scandolo | 82c16d0 | 2019-09-24 09:34:32 -0700 | [diff] [blame] | 42 | |
| 43 | _, err = parser.ParseArgs(os.Args[1:]) |
| 44 | if err != nil { |
| 45 | _, ok := err.(*flags.Error) |
| 46 | if ok { |
| 47 | real := err.(*flags.Error) |
| 48 | if real.Type == flags.ErrHelp { |
| 49 | os.Stdout.WriteString(err.Error() + "\n") |
| 50 | return |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | //corderror, ok := err.(corderrors.CordCtlError) |
| 55 | //if ok { |
| 56 | // if corderror.ShouldDumpStack() || config.GlobalOptions.Debug { |
| 57 | // os.Stderr.WriteString("\n" + corderror.Stack()) |
| 58 | // } |
| 59 | //} |
| 60 | |
| 61 | fmt.Fprintf(os.Stderr, "%s: %s\n", os.Args[0], err.Error()) |
| 62 | |
| 63 | os.Exit(1) |
| 64 | } |
| 65 | } |