|
| 1 | +// Copyright 2024 The Hugo Authors. All rights reserved. |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | +// |
| 8 | +// Unless required by applicable law or agreed to in writing, software |
| 9 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | +// See the License for the specific language governing permissions and |
| 12 | +// limitations under the License. |
| 13 | + |
| 14 | +package maps |
| 15 | + |
| 16 | +import ( |
| 17 | + "github.com/gohugoio/hugo/common/hashing" |
| 18 | +) |
| 19 | + |
| 20 | +// Ordered is a map that can be iterated in the order of insertion. |
| 21 | +// Note that insertion order is not affected if a key is re-inserted into the map. |
| 22 | +// In a nil map, all operations are no-ops. |
| 23 | +// This is not thread safe. |
| 24 | +type Ordered[K comparable, T any] struct { |
| 25 | + // The keys in the order they were added. |
| 26 | + keys []K |
| 27 | + // The values. |
| 28 | + values map[K]T |
| 29 | +} |
| 30 | + |
| 31 | +// NewOrdered creates a new Ordered map. |
| 32 | +func NewOrdered[K comparable, T any]() *Ordered[K, T] { |
| 33 | + return &Ordered[K, T]{values: make(map[K]T)} |
| 34 | +} |
| 35 | + |
| 36 | +// Set sets the value for the given key. |
| 37 | +// Note that insertion order is not affected if a key is re-inserted into the map. |
| 38 | +func (m *Ordered[K, T]) Set(key K, value T) { |
| 39 | + if m == nil { |
| 40 | + return |
| 41 | + } |
| 42 | + // Check if key already exists. |
| 43 | + if _, found := m.values[key]; !found { |
| 44 | + m.keys = append(m.keys, key) |
| 45 | + } |
| 46 | + m.values[key] = value |
| 47 | +} |
| 48 | + |
| 49 | +// Get gets the value for the given key. |
| 50 | +func (m *Ordered[K, T]) Get(key K) (T, bool) { |
| 51 | + if m == nil { |
| 52 | + var v T |
| 53 | + return v, false |
| 54 | + } |
| 55 | + value, found := m.values[key] |
| 56 | + return value, found |
| 57 | +} |
| 58 | + |
| 59 | +// Delete deletes the value for the given key. |
| 60 | +func (m *Ordered[K, T]) Delete(key K) { |
| 61 | + if m == nil { |
| 62 | + return |
| 63 | + } |
| 64 | + delete(m.values, key) |
| 65 | + for i, k := range m.keys { |
| 66 | + if k == key { |
| 67 | + m.keys = append(m.keys[:i], m.keys[i+1:]...) |
| 68 | + break |
| 69 | + } |
| 70 | + } |
| 71 | +} |
| 72 | + |
| 73 | +// Clone creates a shallow copy of the map. |
| 74 | +func (m *Ordered[K, T]) Clone() *Ordered[K, T] { |
| 75 | + if m == nil { |
| 76 | + return nil |
| 77 | + } |
| 78 | + clone := NewOrdered[K, T]() |
| 79 | + for _, k := range m.keys { |
| 80 | + clone.Set(k, m.values[k]) |
| 81 | + } |
| 82 | + return clone |
| 83 | +} |
| 84 | + |
| 85 | +// Keys returns the keys in the order they were added. |
| 86 | +func (m *Ordered[K, T]) Keys() []K { |
| 87 | + if m == nil { |
| 88 | + return nil |
| 89 | + } |
| 90 | + return m.keys |
| 91 | +} |
| 92 | + |
| 93 | +// Values returns the values in the order they were added. |
| 94 | +func (m *Ordered[K, T]) Values() []T { |
| 95 | + if m == nil { |
| 96 | + return nil |
| 97 | + } |
| 98 | + var values []T |
| 99 | + for _, k := range m.keys { |
| 100 | + values = append(values, m.values[k]) |
| 101 | + } |
| 102 | + return values |
| 103 | +} |
| 104 | + |
| 105 | +// Len returns the number of items in the map. |
| 106 | +func (m *Ordered[K, T]) Len() int { |
| 107 | + if m == nil { |
| 108 | + return 0 |
| 109 | + } |
| 110 | + return len(m.keys) |
| 111 | +} |
| 112 | + |
| 113 | +// Range calls f sequentially for each key and value present in the map. |
| 114 | +// If f returns false, range stops the iteration. |
| 115 | +// TODO(bep) replace with iter.Seq2 when we bump go Go 1.24. |
| 116 | +func (m *Ordered[K, T]) Range(f func(key K, value T) bool) { |
| 117 | + if m == nil { |
| 118 | + return |
| 119 | + } |
| 120 | + for _, k := range m.keys { |
| 121 | + if !f(k, m.values[k]) { |
| 122 | + return |
| 123 | + } |
| 124 | + } |
| 125 | +} |
| 126 | + |
| 127 | +// Hash calculates a hash from the values. |
| 128 | +func (m *Ordered[K, T]) Hash() (uint64, error) { |
| 129 | + if m == nil { |
| 130 | + return 0, nil |
| 131 | + } |
| 132 | + return hashing.Hash(m.values) |
| 133 | +} |
0 commit comments