Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
706 B
Go
30 lines
706 B
Go
// Copyright 2014-2022 Ulrich Kunitz. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package hash
|
|
|
|
// Roller provides an interface for rolling hashes. The hash value will become
|
|
// valid after hash has been called Len times.
|
|
type Roller interface {
|
|
Len() int
|
|
RollByte(x byte) uint64
|
|
}
|
|
|
|
// Hashes computes all hash values for the array p. Note that the state of the
|
|
// roller is changed.
|
|
func Hashes(r Roller, p []byte) []uint64 {
|
|
n := r.Len()
|
|
if len(p) < n {
|
|
return nil
|
|
}
|
|
h := make([]uint64, len(p)-n+1)
|
|
for i := 0; i < n-1; i++ {
|
|
r.RollByte(p[i])
|
|
}
|
|
for i := range h {
|
|
h[i] = r.RollByte(p[i+n-1])
|
|
}
|
|
return h
|
|
}
|