mirror of
https://github.com/golang/go
synced 2024-11-02 11:50:30 +00:00
53fd522c0d
Follows suit with https://go-review.googlesource.com/#/c/20111. Generated by running $ grep -R 'Go Authors. All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go Authors. All/Go Authors. All/g' $F;done The code in cmd/internal/unvendor wasn't changed. Fixes #15213 Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f Reviewed-on: https://go-review.googlesource.com/21819 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
113 lines
1.8 KiB
Go
113 lines
1.8 KiB
Go
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
import (
|
|
"math/rand"
|
|
"runtime"
|
|
"sync"
|
|
)
|
|
|
|
func mapTypes() []MapType {
|
|
// TODO(bradfitz): bunch more map types of all different key and value types.
|
|
// Use reflect.MapOf and a program to generate lots of types & struct types.
|
|
// For now, just one:
|
|
return []MapType{intMapType{}}
|
|
}
|
|
|
|
type MapType interface {
|
|
NewMap() Map
|
|
}
|
|
|
|
type Map interface {
|
|
AddItem()
|
|
DelItem()
|
|
Len() int
|
|
GetItem()
|
|
RangeAll()
|
|
}
|
|
|
|
func stressMapType(mt MapType, done func()) {
|
|
defer done()
|
|
m := mt.NewMap()
|
|
for m.Len() < 10000 {
|
|
Println("map at ", m.Len())
|
|
if m.Len()%100 == 0 {
|
|
runtime.Gosched()
|
|
}
|
|
m.AddItem()
|
|
m.AddItem()
|
|
m.DelItem()
|
|
var wg sync.WaitGroup
|
|
const numGets = 10
|
|
wg.Add(numGets)
|
|
for i := 0; i < numGets; i++ {
|
|
go func(i int) {
|
|
if i&1 == 0 {
|
|
m.GetItem()
|
|
} else {
|
|
m.RangeAll()
|
|
}
|
|
wg.Done()
|
|
}(i)
|
|
}
|
|
wg.Wait()
|
|
}
|
|
for m.Len() > 0 {
|
|
m.DelItem()
|
|
}
|
|
}
|
|
|
|
type intMapType struct{}
|
|
|
|
func (intMapType) NewMap() Map {
|
|
return make(intMap)
|
|
}
|
|
|
|
var deadcafe = []byte("\xDE\xAD\xCA\xFE")
|
|
|
|
type intMap map[int][]byte
|
|
|
|
func (m intMap) AddItem() {
|
|
s0 := len(m)
|
|
for len(m) == s0 {
|
|
key := rand.Intn(s0 + 1)
|
|
m[key] = make([]byte, rand.Intn(64<<10))
|
|
}
|
|
}
|
|
|
|
func (m intMap) DelItem() {
|
|
for k := range m {
|
|
delete(m, k)
|
|
return
|
|
}
|
|
}
|
|
|
|
func (m intMap) GetItem() {
|
|
key := rand.Intn(len(m))
|
|
if s, ok := m[key]; ok {
|
|
copy(s, deadcafe)
|
|
}
|
|
}
|
|
|
|
func (m intMap) Len() int { return len(m) }
|
|
|
|
func (m intMap) RangeAll() {
|
|
for _ = range m {
|
|
}
|
|
for range m {
|
|
}
|
|
}
|
|
|
|
func stressMaps() {
|
|
for {
|
|
var wg sync.WaitGroup
|
|
for _, mt := range mapTypes() {
|
|
wg.Add(1)
|
|
go stressMapType(mt, wg.Done)
|
|
}
|
|
wg.Wait()
|
|
}
|
|
}
|