| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- package cache
- import (
- "bytes"
- "context"
- "io"
- "io/ioutil"
- "os"
- "path/filepath"
- log "github.com/sirupsen/logrus"
- )
- type Cache interface {
- Set(ctx context.Context, key string, value []byte) error
- Get(ctx context.Context, ey string) ([]byte, error)
- }
- type DirCache struct {
- path string
- }
- func NewDirCache(path string) *DirCache {
- return &DirCache{path}
- }
- func (d *DirCache) getCachePath(key string) string {
- return filepath.Join(d.path, key)
- }
- func (d *DirCache) Get(ctx context.Context, key string) ([]byte, error) {
- file, err := os.Open(d.getCachePath(key))
- if err != nil {
- if os.IsNotExist(err) {
- return nil, nil
- }
- return nil, err
- }
- defer file.Close()
- b := new(bytes.Buffer)
- if _, err = io.Copy(b, file); err != nil {
- log.Errorf("Error copying file to cache value: %v", err)
- return nil, err
- }
- return b.Bytes(), nil
- }
- func (d *DirCache) Set(ctx context.Context, key string, value []byte) error {
- log.Debugf("Setting cache item %v")
- if err := os.MkdirAll(d.path, 0777); err != nil {
- log.Errorf("Could not create cache dir %v: %v", d.path, err)
- return err
- }
- cacheTmpFile, err := ioutil.TempFile(d.path, key+".*")
- if err != nil {
- log.Errorf("Could not create cache file %v: %v", cacheTmpFile, err)
- return err
- }
- if _, err := io.Copy(cacheTmpFile, bytes.NewReader(value)); err != nil {
- log.Errorf("Could not write cache file %v: %v", cacheTmpFile, err)
- cacheTmpFile.Close()
- os.Remove(cacheTmpFile.Name())
- return err
- }
- if err = cacheTmpFile.Close(); err != nil {
- log.Errorf("Could not close cache file %v: %v", cacheTmpFile, err)
- os.Remove(cacheTmpFile.Name())
- return err
- }
- if err = os.Rename(cacheTmpFile.Name(), d.getCachePath(key)); err != nil {
- log.Errorf("Could not move cache file %v: %v", cacheTmpFile, err)
- os.Remove(cacheTmpFile.Name())
- return err
- }
- return nil
- }
|