blob: 0db983de0e8d9b6a1aaa3f1de726cb4058680753 [file] [log] [blame]
Matteo Scandolo82c16d02019-09-24 09:34:32 -07001/*
Joey Armstrong4d6878e2024-02-08 16:29:26 -05002 * Portions Copyright 2019-2024 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo82c16d02019-09-24 09:34:32 -07003 * 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)
Nitin Subramanianb0a333a2021-07-08 15:01:41 -070041 commands.RegisterUNICommands(parser)
Matteo Scandolo4a036262020-08-17 15:56:13 -070042 commands.RegisterServiceCommands(parser)
Pragya Aryabd731ec2020-02-11 16:38:17 +053043 commands.RegisterPonCommands(parser)
Matteo Scandoloa42dd352019-09-30 15:46:43 -070044 commands.RegisterCompletionCommands(parser)
Matteo Scandolo2bf742a2019-10-01 11:33:34 -070045 commands.RegisterLoggingCommands(parser)
hkouser24361d42020-12-14 19:21:47 +053046 commands.RegisterDMICommands(parser)
Matteo Scandolo82c16d02019-09-24 09:34:32 -070047
48 _, err = parser.ParseArgs(os.Args[1:])
49 if err != nil {
50 _, ok := err.(*flags.Error)
51 if ok {
52 real := err.(*flags.Error)
53 if real.Type == flags.ErrHelp {
54 os.Stdout.WriteString(err.Error() + "\n")
55 return
56 }
57 }
58
Matteo Scandolo82c16d02019-09-24 09:34:32 -070059 fmt.Fprintf(os.Stderr, "%s: %s\n", os.Args[0], err.Error())
60
61 os.Exit(1)
62 }
63}
Joey Armstronga7ef8d22023-12-11 18:11:53 -050064
65// [EOF]