-
Notifications
You must be signed in to change notification settings - Fork 0
/
large_grouping.go
582 lines (532 loc) · 20.3 KB
/
large_grouping.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
package goip
import (
"fmt"
"math/big"
)
var zeroLargeGrouping = createLargeGrouping(zeroLargeDivs)
type largeDivisionGroupingInternal struct {
addressDivisionGroupingBase
}
func (grouping *largeDivisionGroupingInternal) calcBytes() (bytes, upperBytes []byte) {
divisionCount := grouping.GetDivisionCount()
isMultiple := grouping.isMultiple()
byteCount := grouping.GetByteCount()
bytes = make([]byte, byteCount)
if isMultiple {
upperBytes = make([]byte, byteCount)
} else {
upperBytes = bytes
}
for k, byteIndex, bitIndex := divisionCount-1, byteCount-1, BitCount(8); k >= 0; k-- {
div := grouping.getDivision(k)
bigBytes := div.getValue().Bytes()
var bigUpperBytes []byte
if isMultiple {
bigUpperBytes = div.getUpperValue().Bytes()
}
// for each 64 bits of the division in reverse order
for totalDivBits := div.GetBitCount(); totalDivBits > 0; totalDivBits -= 64 {
// grab those 64 bits (from bigBytes and bigUpperBytes) and put them in val and upperVal
divBits := min(totalDivBits, 64)
var divBytes []byte
var val, upperVal uint64
if len(bigBytes) > 8 {
byteLen := len(bigBytes) - 8
divBytes = bigBytes[byteLen:]
bigBytes = bigBytes[:byteLen]
} else {
divBytes = bigBytes
bigBytes = nil
}
for _, b := range divBytes {
val = (val << 8) | uint64(b)
}
if isMultiple {
var divUpperBytes []byte
if len(upperBytes) > 8 {
byteLen := len(bigUpperBytes) - 8
divUpperBytes = bigBytes[byteLen:]
bigUpperBytes = bigBytes[:byteLen]
} else {
divUpperBytes = bigUpperBytes
bigUpperBytes = nil
}
for _, b := range divUpperBytes {
upperVal = (upperVal << 8) | uint64(b)
}
}
// insert the 64 bits into the bytes slice
for divBits > 0 {
rbi := 8 - bitIndex
bytes[byteIndex] |= byte(val << uint(rbi))
val >>= uint(bitIndex)
if isMultiple {
upperBytes[byteIndex] |= byte(upperVal << uint(rbi))
upperVal >>= uint(bitIndex)
}
if divBits < bitIndex {
// bitIndex is the index into the last copied byte that was already occupied previously
// so here we were able to copy all the bits and there was still space left over
bitIndex -= divBits
break
} else {
// we used up all the space available
// if we also copied all the bits, then divBits will be assigned zero
// otherwise it will have the number of bits still left to copy
divBits -= bitIndex
bitIndex = 8
byteIndex--
}
}
}
}
return
}
func (grouping *largeDivisionGroupingInternal) getUpperBytes() (bytes []byte) {
_, bytes = grouping.getCachedBytes(grouping.calcBytes)
return
}
// CopyUpperBytes copies the value of the highest division grouping in the range into a byte slice.
//
// If the value can fit in the given slice, it is copied into that slice and a length-adjusted sub-slice is returned.
// Otherwise, a new slice with the value is created and returned.
//
// You can use the GetByteCount function to determine the required length of the byte array.
func (grouping *largeDivisionGroupingInternal) CopyUpperBytes(bytes []byte) []byte {
if grouping.hasNoDivisions() {
if bytes != nil {
return bytes[:0]
}
return emptyBytes
}
return getBytesCopy(bytes, grouping.getUpperBytes())
}
// UpperBytes returns the highest individual division grouping in this grouping as a byte slice.
func (grouping *largeDivisionGroupingInternal) UpperBytes() []byte {
if grouping.hasNoDivisions() {
return emptyBytes
}
return cloneBytes(grouping.getUpperBytes())
}
// GetUpperValue returns the highest individual address division grouping
// in this address division grouping as an integer value.
func (grouping *largeDivisionGroupingInternal) GetUpperValue() *big.Int {
res := big.Int{}
if grouping.hasNoDivisions() {
return &res
}
return res.SetBytes(grouping.getUpperBytes())
}
func (grouping *largeDivisionGroupingInternal) getBytes() (bytes []byte) {
bytes, _ = grouping.getCachedBytes(grouping.calcBytes)
return
}
// Bytes returns the lowest individual division grouping in this grouping as a byte slice.
func (grouping *largeDivisionGroupingInternal) Bytes() []byte {
if grouping.hasNoDivisions() {
return emptyBytes
}
return cloneBytes(grouping.getBytes())
}
func (grouping *largeDivisionGroupingInternal) getDivArray() largeDivArray {
if divsArray := grouping.divisions; divsArray != nil {
return divsArray.(largeDivArray)
}
return nil
}
func (grouping *largeDivisionGroupingInternal) getDivisionCount() int {
if divArray := grouping.getDivArray(); divArray != nil {
return divArray.getDivisionCount()
}
return 0
}
// getDivision returns the division or panics if the index is negative or too large
func (grouping *largeDivisionGroupingInternal) getDivision(index int) *IPAddressLargeDivision {
return grouping.getDivArray()[index]
}
func (grouping *largeDivisionGroupingInternal) initMultiple() {
divCount := grouping.getDivisionCount()
for i := divCount - 1; i >= 0; i-- {
div := grouping.getDivision(i)
if div.isMultiple() {
grouping.isMult = true
return
}
}
return
}
func (grouping *largeDivisionGroupingInternal) initDivs() *largeDivisionGroupingInternal {
if grouping.divisions == nil {
return &zeroLargeGrouping.largeDivisionGroupingInternal
}
return grouping
}
// divisions are printed like slices of *IPAddressLargeDivision (which are Stringers)
// with division separated by spaces and enclosed in square brackets,
// sections are printed like addresses with segments separated by segment separators.
func (grouping largeDivisionGroupingInternal) Format(state fmt.State, verb rune) {
arr := grouping.initDivs().getDivArray()
if len(arr) == 0 {
return
}
s := flagsFromState(state, verb)
_, _ = state.Write([]byte(fmt.Sprintf(s, arr)))
}
func (grouping *largeDivisionGroupingInternal) toString() string {
return fmt.Sprint(grouping.initDivs().getDivArray())
}
// CopyBytes copies the value of the lowest division grouping in the range into a byte slice.
//
// If the value can fit in the given slice,
// the value is copied into that slice and a length-adjusted sub-slice is returned.
// Otherwise, a new slice is created and returned with the value.
//
// You can use GetByteCount to determine the required array length for the bytes.
func (grouping *largeDivisionGroupingInternal) CopyBytes(bytes []byte) []byte {
if grouping.hasNoDivisions() {
if bytes != nil {
return bytes[:0]
}
return emptyBytes
}
return getBytesCopy(bytes, grouping.getBytes())
}
// GetValue returns the lowest individual address division grouping in this address division grouping as an integer value.
func (grouping *largeDivisionGroupingInternal) GetValue() *big.Int {
res := big.Int{}
if grouping.hasNoDivisions() {
return &res
}
return res.SetBytes(grouping.getBytes())
}
// GetMinPrefixLenForBlock returns the smallest prefix length such that
// this grouping includes the block of all values for that prefix length.
//
// If the entire range can be described this way,
// then this method returns the same value as GetPrefixLenForSingleBlock.
//
// There may be a single prefix,
// or multiple possible prefix values in this item for the returned prefix length.
// Use GetPrefixLenForSingleBlock to avoid the case of multiple prefix values.
//
// If this grouping represents a single value, this returns the bit count.
func (grouping *largeDivisionGroupingInternal) GetMinPrefixLenForBlock() BitCount {
calc := func() BitCount {
count := grouping.GetDivisionCount()
totalPrefix := grouping.GetBitCount()
for i := count - 1; i >= 0; i-- {
div := grouping.getDivision(i)
segBitCount := div.getBitCount()
segPrefix := div.GetMinPrefixLenForBlock()
if segPrefix == segBitCount {
break
} else {
totalPrefix -= segBitCount
if segPrefix != 0 {
totalPrefix += segPrefix
break
}
}
}
return totalPrefix
}
return cacheMinPrefix(grouping.cache, calc)
}
// ContainsPrefixBlock returns whether the values of this item contains the block of values for the given prefix length.
//
// Unlike ContainsSinglePrefixBlock, whether there are multiple prefix values in this item for the given prefix length makes no difference.
//
// Use GetMinPrefixLenForBlock to determine the smallest prefix length for which this method returns true.
func (grouping *largeDivisionGroupingInternal) ContainsPrefixBlock(prefixLen BitCount) bool {
var prevBitCount BitCount
prefixLen = checkSubnet(grouping, prefixLen)
divisionCount := grouping.GetDivisionCount()
for i := 0; i < divisionCount; i++ {
division := grouping.getDivision(i)
bitCount := division.GetBitCount()
totalBitCount := bitCount + prevBitCount
if prefixLen < totalBitCount {
divPrefixLen := prefixLen - prevBitCount
if !division.ContainsPrefixBlock(divPrefixLen) {
return false
}
for i++; i < divisionCount; i++ {
division = grouping.getDivision(i)
if !division.IsFullRange() {
return false
}
}
return true
}
prevBitCount = totalBitCount
}
return true
}
// ContainsSinglePrefixBlock returns whether the values of this grouping contains
// a single prefix block for the given prefix length.
//
// This means there is only one prefix of the given length in this item,
// and this item contains the prefix block for that given prefix.
//
// Use GetPrefixLenForSingleBlock to determine whether there is
// a prefix length for which this method returns true.
func (grouping *largeDivisionGroupingInternal) ContainsSinglePrefixBlock(prefixLen BitCount) bool {
var prevBitCount BitCount
prefixLen = checkSubnet(grouping, prefixLen)
divisionCount := grouping.GetDivisionCount()
for i := 0; i < divisionCount; i++ {
division := grouping.getDivision(i)
bitCount := division.getBitCount()
totalBitCount := bitCount + prevBitCount
if prefixLen >= totalBitCount {
if division.isMultiple() {
return false
}
} else {
divPrefixLen := prefixLen - prevBitCount
if !division.ContainsSinglePrefixBlock(divPrefixLen) {
return false
}
for i++; i < divisionCount; i++ {
division = grouping.getDivision(i)
if !division.IsFullRange() {
return false
}
}
return true
}
prevBitCount = totalBitCount
}
return true
}
// IsPrefixBlock returns whether this division grouping has a prefix length and includes the block associated with its prefix length.
// If the prefix length matches the bit count, this returns true.
//
// This is different from ContainsPrefixBlock in that this method returns
// false if the series has no prefix length, or a prefix length that differs from a prefix length for which ContainsPrefixBlock returns true.
func (grouping *largeDivisionGroupingInternal) IsPrefixBlock() bool {
prefLen := grouping.getPrefixLen()
return prefLen != nil && grouping.ContainsPrefixBlock(prefLen.bitCount())
}
// copySubDivisions copies the existing segments from the given start index until but not including the segment at the given end index,
// into the given slice, as much as can be fit into the slice, returning the number of segments copied.
func (grouping *largeDivisionGroupingInternal) copySubDivisions(start, end int, divs []*IPAddressLargeDivision) (count int) {
if divArray := grouping.getDivArray(); divArray != nil {
start, end, targetIndex := adjust1To1Indices(start, end, grouping.GetDivisionCount(), len(divs))
return divArray.copySubDivisions(start, end, divs[targetIndex:])
}
return
}
// copyDivisions copies the existing segments from the given start index until but not including the segment at the given end index,
// into the given slice, as much as can be fit into the slice, returning the number of segments copied.
func (grouping *largeDivisionGroupingInternal) copyDivisions(divs []*IPAddressLargeDivision) (count int) {
if divArray := grouping.getDivArray(); divArray != nil {
return divArray.copyDivisions(divs)
}
return
}
// GetPrefixLenForSingleBlock returns a prefix length for which the range of
// this division grouping matches the block of addresses for that prefix.
//
// If no such prefix exists, GetPrefixLenForSingleBlock returns nil.
//
// If this division grouping represents a single value, returns the bit length.
func (grouping *largeDivisionGroupingInternal) GetPrefixLenForSingleBlock() PrefixLen {
calc := func() *PrefixLen {
count := grouping.GetDivisionCount()
var totalPrefix BitCount
for i := 0; i < count; i++ {
div := grouping.getDivision(i)
divPrefix := div.GetPrefixLenForSingleBlock()
if divPrefix == nil {
return cacheNilPrefix()
}
divPrefLen := divPrefix.bitCount()
totalPrefix += divPrefLen
if divPrefLen < div.GetBitCount() {
//remaining segments must be full range or we return nil
for i++; i < count; i++ {
laterDiv := grouping.getDivision(i)
if !laterDiv.IsFullRange() {
return cacheNilPrefix()
}
}
}
}
return cachePrefix(totalPrefix)
}
return cachePrefLenSingleBlock(grouping.cache, grouping.getPrefixLen(), calc)
}
// IsSinglePrefixBlock returns whether the range of values matches a single subnet block for the prefix length.
//
// What distinguishes this method with ContainsSinglePrefixBlock is that this method returns
// false if the series does not have a prefix length assigned to it,
// or a prefix length that differs from the prefix length for which ContainsSinglePrefixBlock returns true.
//
// It is similar to IsPrefixBlock but returns false when there are multiple prefixes.
func (grouping *largeDivisionGroupingInternal) IsSinglePrefixBlock() bool {
calc := func() bool {
prefLen := grouping.getPrefixLen()
return prefLen != nil && grouping.ContainsSinglePrefixBlock(prefLen.bitCount())
}
return cacheIsSinglePrefixBlock(grouping.cache, grouping.getPrefixLen(), calc)
}
type IPAddressLargeDivisionGrouping struct {
largeDivisionGroupingInternal
}
// GetCount returns the count of possible distinct values for this division grouping.
// If not representing multiple values, the count is 1,
// unless this is a division grouping with no divisions,
// or an address section with no segments, in which case it is 0.
//
// Use IsMultiple if you simply want to know if the count is greater than 1.
func (grouping *IPAddressLargeDivisionGrouping) GetCount() *big.Int {
if !grouping.isMultiple() {
return bigOne()
}
return grouping.addressDivisionGroupingBase.getCount()
}
// IsMultiple returns whether this grouping represents multiple values rather than a single value.
func (grouping *IPAddressLargeDivisionGrouping) IsMultiple() bool {
return grouping != nil && grouping.isMultiple()
}
// IsPrefixed returns whether this division grouping has an associated prefix length.
// If so, the prefix length is given by GetPrefixLen.
func (grouping *IPAddressLargeDivisionGrouping) IsPrefixed() bool {
if grouping == nil {
return false
}
return grouping.isPrefixed()
}
func (grouping *IPAddressLargeDivisionGrouping) isNil() bool {
return grouping == nil
}
// String implements the [fmt.Stringer] interface.
// It returns "<nil>" if the receiver is a nil pointer.
// Otherwise, the string is printed like a slice,
// with each division converted to a string by
// its own String method (like "[ div0 div1 ... ]").
func (grouping *IPAddressLargeDivisionGrouping) String() string {
if grouping == nil {
return nilString()
}
return grouping.toString()
}
// GetDivision returns the division at the given index.
func (grouping *IPAddressLargeDivisionGrouping) GetDivision(index int) *IPAddressLargeDivision {
return grouping.getDivision(index)
}
// ForEachDivision visits each segment in order from most-significant to least, the most significant with index 0, calling the given function for each, terminating early if the function returns true.
// ForEachDivision returns the number of visited segments.
func (grouping *IPAddressLargeDivisionGrouping) ForEachDivision(consumer func(divisionIndex int, division *IPAddressLargeDivision) (stop bool)) int {
divArray := grouping.getDivArray()
if divArray != nil {
for i, div := range divArray {
if consumer(i, div) {
return i + 1
}
}
}
return len(divArray)
}
// CopySubDivisions copies the existing divisions from the given start index until but not including the division at the given end index,
// into the given slice, as much as can be fit into the slice, returning the number of divisions copied.
func (grouping *IPAddressLargeDivisionGrouping) CopySubDivisions(start, end int, divs []*IPAddressLargeDivision) (count int) {
return grouping.copySubDivisions(start, end, divs)
}
// CopyDivisions copies the existing divisions from the given start index until but not including the division at the given end index,
// into the given slice, as much as can be fit into the slice, returning the number of divisions copied.
func (grouping *IPAddressLargeDivisionGrouping) CopyDivisions(divs []*IPAddressLargeDivision) (count int) {
return grouping.copyDivisions(divs)
}
// Compare returns a negative integer, zero, or a positive integer if this address division grouping is less than,
// equal, or greater than the given item.
// Any address item is comparable to any other.
// All address items use CountComparator to compare.
func (grouping *IPAddressLargeDivisionGrouping) Compare(item AddressItem) int {
return CountComparator.Compare(grouping, item)
}
// CompareSize compares the counts of two items, the number of individual values within.
//
// Rather than calculating counts with GetCount,
// there can be more efficient ways of determining whether one represents more individual values than another.
//
// CompareSize returns a positive integer if this division has a larger count than the item given,
// zero if they are the same, or a negative integer if the other has a larger count.
func (grouping *IPAddressLargeDivisionGrouping) CompareSize(other AddressItem) int {
if grouping == nil {
if isNilItem(other) {
return 0
}
// we have size 0, other has size >= 1
return -1
}
return compareCount(grouping, other)
}
func normalizeLargeDivisions(divs []*IPAddressLargeDivision) (newDivs []*IPAddressLargeDivision, newPref PrefixLen, isMultiple bool) {
var previousDivPrefixed bool
var bits BitCount
divCount := len(divs)
newDivs = make([]*IPAddressLargeDivision, 0, divCount)
for _, div := range divs {
if div == nil || div.GetBitCount() == 0 {
continue
}
var newDiv *IPAddressLargeDivision
// The final prefix length is the minimum amongst the divisions' own prefixes
divPrefix := div.getDivisionPrefixLength()
divIsPrefixed := divPrefix != nil
if previousDivPrefixed {
if !divIsPrefixed || divPrefix.bitCount() != 0 {
newDiv = createLargeAddressDiv(div.derivePrefixed(cacheBitCount(0)), div.getDefaultRadix()) // change prefix to 0
} else {
newDiv = div // div prefix is already 0
}
} else {
if divIsPrefixed {
if divPrefix.bitCount() == 0 && len(newDivs) > 0 {
// normalize boundaries by looking back
lastDiv := newDivs[len(newDivs)-1]
if !lastDiv.IsPrefixed() {
newDivs[len(newDivs)-1] = createLargeAddressDiv(
lastDiv.derivePrefixed(cacheBitCount(lastDiv.GetBitCount())), div.getDefaultRadix())
}
}
newPref = cacheBitCount(bits + divPrefix.bitCount())
previousDivPrefixed = true
}
newDiv = div
}
newDivs = append(newDivs, newDiv)
bits += newDiv.GetBitCount()
isMultiple = isMultiple || newDiv.isMultiple()
}
return
}
func createLargeGrouping(divs []*IPAddressLargeDivision) *IPAddressLargeDivisionGrouping {
addrType := zeroType
grouping := &IPAddressLargeDivisionGrouping{
largeDivisionGroupingInternal{
addressDivisionGroupingBase: addressDivisionGroupingBase{
divisions: largeDivArray(divs),
addrType: addrType,
cache: &valueCache{},
},
},
}
assignStringCache(&grouping.addressDivisionGroupingBase, addrType)
return grouping
}
// NewIPAddressLargeDivGrouping creates an arbitrary grouping of divisions of arbitrary size,
// each division can have an arbitrarily large bit-length.
// To create address sections or addresses, use the constructors that are specific to the address version or type.
// The IPAddressLargeDivision instances can be created with the
// NewLargeIPDivision, NewLargeIPRangeDivision, NewLargeIPPrefixDivision, NewLargeIPRangePrefixDivision functions.
func NewIPAddressLargeDivGrouping(divs []*IPAddressLargeDivision) *IPAddressLargeDivisionGrouping {
// We do not check for prefix subnet because an explicit prefix length must be supplied for that
newDivs, newPref, isMult := normalizeLargeDivisions(divs)
result := createLargeGrouping(newDivs)
result.isMult = isMult
result.prefixLength = newPref
return result
}