blob: 3c69890d99ce8f5578da32a24efc6cacc79157dd [file] [log] [blame]
Matteo Scandolo82c16d02019-09-24 09:34:32 -07001/*
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 */
17package main
18
19import (
20 "fmt"
Anand S Katti86552f92020-03-03 21:56:32 +053021 "os"
22 "path"
23
Matteo Scandolo82c16d02019-09-24 09:34:32 -070024 "github.com/jessevdk/go-flags"
25 "github.com/opencord/bbsim/internal/bbsimctl/commands"
26 "github.com/opencord/bbsim/internal/bbsimctl/config"
Matteo Scandolo82c16d02019-09-24 09:34:32 -070027)
28
29func main() {
30
31 parser := flags.NewNamedParser(path.Base(os.Args[0]),
32 flags.HelpFlag|flags.PassDoubleDash|flags.PassAfterNonOption)
33 _, err := parser.AddGroup("Global Options", "", &config.GlobalOptions)
34 if err != nil {
35 panic(err)
36 }
37
38 commands.RegisterConfigCommands(parser)
39 commands.RegisterOltCommands(parser)
40 commands.RegisterONUCommands(parser)
Matteo Scandoloa42dd352019-09-30 15:46:43 -070041 commands.RegisterCompletionCommands(parser)
Matteo Scandolo2bf742a2019-10-01 11:33:34 -070042 commands.RegisterLoggingCommands(parser)
Matteo Scandolo82c16d02019-09-24 09:34:32 -070043
44 _, err = parser.ParseArgs(os.Args[1:])
45 if err != nil {
46 _, ok := err.(*flags.Error)
47 if ok {
48 real := err.(*flags.Error)
49 if real.Type == flags.ErrHelp {
50 os.Stdout.WriteString(err.Error() + "\n")
51 return
52 }
53 }
54
55 //corderror, ok := err.(corderrors.CordCtlError)
56 //if ok {
57 // if corderror.ShouldDumpStack() || config.GlobalOptions.Debug {
58 // os.Stderr.WriteString("\n" + corderror.Stack())
59 // }
60 //}
61
62 fmt.Fprintf(os.Stderr, "%s: %s\n", os.Args[0], err.Error())
63
64 os.Exit(1)
65 }
66}