blob: 17a6aaebd6ecd0e68ffdf5b3753a7ff2a4dce4b8 [file] [log] [blame]
Scott Baker2c1c4822019-10-16 11:02:41 -07001/*
Joey Armstrong9cdee9f2024-01-03 04:56:14 -05002* Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Scott Baker2c1c4822019-10-16 11:02:41 -07003
Joey Armstrong7f8436c2023-07-09 20:23:27 -04004* 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
Scott Baker2c1c4822019-10-16 11:02:41 -07007
Joey Armstrong7f8436c2023-07-09 20:23:27 -04008* http://www.apache.org/licenses/LICENSE-2.0
Scott Baker2c1c4822019-10-16 11:02:41 -07009
Joey Armstrong7f8436c2023-07-09 20:23:27 -040010* 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.
Scott Baker2c1c4822019-10-16 11:02:41 -070015 */
16package common
17
18import (
19 "fmt"
20 "math/rand"
21 "time"
22)
23
Joey Armstrong7f8436c2023-07-09 20:23:27 -040024// GetRandomSerialNumber returns a serial number formatted as "HOST:PORT"
Scott Baker2c1c4822019-10-16 11:02:41 -070025func GetRandomSerialNumber() string {
26 rand.Seed(time.Now().UnixNano())
27 return fmt.Sprintf("%d.%d.%d.%d:%d",
28 rand.Intn(255),
29 rand.Intn(255),
30 rand.Intn(255),
31 rand.Intn(255),
32 rand.Intn(9000)+1000,
33 )
34}
35
Joey Armstrong7f8436c2023-07-09 20:23:27 -040036// GetRandomMacAddress returns a random mac address
Scott Baker2c1c4822019-10-16 11:02:41 -070037func GetRandomMacAddress() string {
38 rand.Seed(time.Now().UnixNano())
39 return fmt.Sprintf("%02x:%02x:%02x:%02x:%02x:%02x",
40 rand.Intn(128),
41 rand.Intn(128),
42 rand.Intn(128),
43 rand.Intn(128),
44 rand.Intn(128),
45 rand.Intn(128),
46 )
47}
48
49const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
50const (
51 letterIdxBits = 6 // 6 bits to represent a letter index
52 letterIdxMask = 1<<letterIdxBits - 1 // All 1-bits, as many as letterIdxBits
53 letterIdxMax = 63 / letterIdxBits // # of letter indices fitting in 63 bits
54)
55
56var src = rand.NewSource(time.Now().UnixNano())
57
58func GetRandomString(n int) string {
59 b := make([]byte, n)
60 // A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
61 for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
62 if remain == 0 {
63 cache, remain = src.Int63(), letterIdxMax
64 }
65 if idx := int(cache & letterIdxMask); idx < len(letterBytes) {
66 b[i] = letterBytes[idx]
67 i--
68 }
69 cache >>= letterIdxBits
70 remain--
71 }
72 return string(b)
73}