blob: b782ebe232ac21ce99449d3a437a5e8e9f485be5 [file] [log] [blame]
khenaidood2b6df92018-12-13 16:37:20 -05001/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package common
17
18import (
19 "fmt"
Scott Baker0e78ba22020-02-24 17:58:47 -080020 "github.com/opencord/voltha-lib-go/v3/pkg/log"
21 ic "github.com/opencord/voltha-protos/v3/go/inter_container"
22 "google.golang.org/grpc/codes"
khenaidood2b6df92018-12-13 16:37:20 -050023 "math/rand"
24 "time"
25)
26
27//GetRandomSerialNumber returns a serial number formatted as "HOST:PORT"
28func GetRandomSerialNumber() string {
khenaidoo731697e2019-01-29 16:03:29 -050029 rand.Seed(time.Now().UnixNano())
khenaidood2b6df92018-12-13 16:37:20 -050030 return fmt.Sprintf("%d.%d.%d.%d:%d",
31 rand.Intn(255),
32 rand.Intn(255),
33 rand.Intn(255),
34 rand.Intn(255),
35 rand.Intn(9000)+1000,
36 )
37}
38
39//GetRandomMacAddress returns a random mac address
40func GetRandomMacAddress() string {
khenaidoo731697e2019-01-29 16:03:29 -050041 rand.Seed(time.Now().UnixNano())
khenaidood2b6df92018-12-13 16:37:20 -050042 return fmt.Sprintf("%02x:%02x:%02x:%02x:%02x:%02x",
43 rand.Intn(128),
44 rand.Intn(128),
45 rand.Intn(128),
46 rand.Intn(128),
47 rand.Intn(128),
48 rand.Intn(128),
49 )
50}
khenaidoo297cd252019-02-07 22:10:23 -050051
52const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
53const (
54 letterIdxBits = 6 // 6 bits to represent a letter index
55 letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
56 letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits
57)
58
59var src = rand.NewSource(time.Now().UnixNano())
60
61func GetRandomString(n int) string {
62 b := make([]byte, n)
63 // A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
64 for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
65 if remain == 0 {
66 cache, remain = src.Int63(), letterIdxMax
67 }
68 if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
69 b[i] = letterBytes[idx]
70 i--
71 }
72 cache >>= letterIdxBits
73 remain--
74 }
75 return string(b)
khenaidoo2c6a0992019-04-29 13:46:56 -040076}
Scott Baker0e78ba22020-02-24 17:58:47 -080077
78func ICProxyErrorCodeToGrpcErrorCode(icErr ic.ErrorCodeCodes) codes.Code {
79 switch icErr {
80 case ic.ErrorCode_INVALID_PARAMETERS:
81 return codes.InvalidArgument
82 case ic.ErrorCode_UNSUPPORTED_REQUEST:
83 return codes.Unavailable
84 case ic.ErrorCode_DEADLINE_EXCEEDED:
85 return codes.DeadlineExceeded
86 default:
87 log.Warnw("cannnot-map-ic-error-code-to-grpc-error-code", log.Fields{"err": icErr})
88 return codes.Internal
89 }
90}