blob: 1f3216a280d3fed8843d75b36347f7327a210180 [file] [log] [blame]
Matteo Scandolo4a036262020-08-17 15:56:13 -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 */
17
18package commands
19
20import (
21 "context"
22 "github.com/jessevdk/go-flags"
23 pb "github.com/opencord/bbsim/api/bbsim"
24 "github.com/opencord/bbsim/internal/bbsimctl/config"
25 "github.com/opencord/cordctl/pkg/format"
26 log "github.com/sirupsen/logrus"
27 "os"
28)
29
30const (
Matteo Scandolo8a574812021-05-20 15:18:53 -070031 DEFAULT_SERVICE_HEADER_FORMAT = "table{{ .OnuSn }}\t{{ .UniId }}\t{{ .InternalState }}\t{{ .Name }}\t{{ .HwAddress }}\t{{ .STag }}\t{{ .CTag }}\t{{ .NeedsEapol }}\t{{ .NeedsDhcp }}\t{{ .NeedsIgmp }}\t{{ .GemPort }}\t{{ .EapolState }}\t{{ .DhcpState }}\t{{ .IGMPState }}"
Matteo Scandolo4a036262020-08-17 15:56:13 -070032)
33
34type ServiceList struct{}
35
36type ServiceOptions struct {
37 List ServiceList `command:"list"`
38}
39
40func RegisterServiceCommands(parser *flags.Parser) {
41 _, _ = parser.AddCommand("service", "Service Commands", "Commands to interact with ONU Services", &ServiceOptions{})
42}
43
Nitin Subramanianb0a333a2021-07-08 15:01:41 -070044func getServices(OnuSn string, UniID string) (*pb.Services, error) {
Matteo Scandolo4a036262020-08-17 15:56:13 -070045
46 client, conn := connect()
47 defer conn.Close()
48
49 // Contact the server and print out its response.
50 ctx, cancel := context.WithTimeout(context.Background(), config.GlobalConfig.Grpc.Timeout)
51 defer cancel()
52
Nitin Subramanianb0a333a2021-07-08 15:01:41 -070053 req := pb.UNIRequest{
54 OnuSerialNumber: OnuSn,
55 UniID: UniID,
56 }
57
58 services, err := client.GetServices(ctx, &req)
59
60 return services, err
61}
62
63func (options *ServiceList) Execute(args []string) error {
64 services, err := getServices("", "")
65
Matteo Scandolo4a036262020-08-17 15:56:13 -070066 if err != nil {
67 log.Fatalf("could not get OLT: %v", err)
68 return nil
69 }
Matteo Scandolo4a036262020-08-17 15:56:13 -070070 // print out
71 tableFormat := format.Format(DEFAULT_SERVICE_HEADER_FORMAT)
72 if err := tableFormat.Execute(os.Stdout, true, services.Items); err != nil {
73 log.Fatalf("Error while formatting ONUs table: %s", err)
74 }
75
76 return nil
77}