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
|
// Copyright 2016 Google LLC. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package fixchain
import (
"fmt"
"io"
"net/http"
"sync"
"sync/atomic"
"time"
"k8s.io/klog/v2"
)
type lockedCache struct {
m map[string][]byte
sync.RWMutex
}
func (c *lockedCache) get(str string) ([]byte, bool) {
c.RLock()
defer c.RUnlock()
b, ok := c.m[str]
return b, ok
}
func (c *lockedCache) set(str string, b []byte) {
c.Lock()
defer c.Unlock()
c.m[str] = b
}
func newLockedCache() *lockedCache {
return &lockedCache{m: make(map[string][]byte)}
}
type urlCache struct {
client *http.Client
cache *lockedCache
hit uint32
miss uint32
errors uint32
badStatus uint32
readFail uint32
}
func (u *urlCache) getURL(url string) ([]byte, error) {
r, ok := u.cache.get(url)
if ok {
atomic.AddUint32(&u.hit, 1)
return r, nil
}
c, err := u.client.Get(url)
if err != nil {
atomic.AddUint32(&u.errors, 1)
return nil, err
}
defer func() {
if err := c.Body.Close(); err != nil {
klog.Errorf("Operation to close response body failed: %v", err)
}
}()
// TODO(katjoyce): Add caching of permanent errors.
if c.StatusCode != 200 {
atomic.AddUint32(&u.badStatus, 1)
return nil, fmt.Errorf("can't deal with status %d", c.StatusCode)
}
r, err = io.ReadAll(c.Body)
if err != nil {
atomic.AddUint32(&u.readFail, 1)
return nil, err
}
atomic.AddUint32(&u.miss, 1)
u.cache.set(url, r)
return r, nil
}
func newURLCache(c *http.Client, logStats bool) *urlCache {
u := &urlCache{cache: newLockedCache(), client: c}
if logStats {
t := time.NewTicker(time.Second)
go func() {
for range t.C {
klog.Infof("url cache: %d hits, %d misses, %d errors, "+
"%d bad status, %d read fail, %d cached", u.hit,
u.miss, u.errors, u.badStatus, u.readFail,
len(u.cache.m))
}
}()
}
return u
}
|