blob: 17a6aaebd6ecd0e68ffdf5b3753a7ff2a4dce4b8 [file] [log] [blame]
khenaidood948f772021-08-11 17:49:24 -04001/*
Joey Armstrong653504f2024-01-18 12:58:56 -05002* Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
khenaidood948f772021-08-11 17:49:24 -04003
Mahir Gunyel4b93c072023-07-21 11:55:08 +03004* 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
khenaidood948f772021-08-11 17:49:24 -04007
Mahir Gunyel4b93c072023-07-21 11:55:08 +03008* http://www.apache.org/licenses/LICENSE-2.0
khenaidood948f772021-08-11 17:49:24 -04009
Mahir Gunyel4b93c072023-07-21 11:55:08 +030010* 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.
khenaidood948f772021-08-11 17:49:24 -040015 */
16package common
17
18import (
19 "fmt"
20 "math/rand"
21 "time"
22)
23
Mahir Gunyel4b93c072023-07-21 11:55:08 +030024// GetRandomSerialNumber returns a serial number formatted as "HOST:PORT"
khenaidood948f772021-08-11 17:49:24 -040025func 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
Mahir Gunyel4b93c072023-07-21 11:55:08 +030036// GetRandomMacAddress returns a random mac address
khenaidood948f772021-08-11 17:49:24 -040037func 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}