-
-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
memory storage #306
Open
elee1766
wants to merge
2
commits into
caddyserver:master
Choose a base branch
from
elee1766:memoryStorage
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
memory storage #306
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,200 @@ | ||||||
// Copyright 2015 Matthew Holt | ||||||
// | ||||||
// 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 certmagic | ||||||
|
||||||
import ( | ||||||
"context" | ||||||
"os" | ||||||
"path" | ||||||
"strings" | ||||||
"sync" | ||||||
"time" | ||||||
|
||||||
"golang.org/x/sync/semaphore" | ||||||
) | ||||||
|
||||||
type storageEntry struct { | ||||||
i KeyInfo | ||||||
d []byte | ||||||
} | ||||||
|
||||||
// memoryStorage is a Storage implemention that exists only in memory | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
// it is intended for testing and one-time-deploys where no persistence is needed | ||||||
type memoryStorage struct { | ||||||
m map[string]storageEntry | ||||||
mu sync.RWMutex | ||||||
|
||||||
kmu *keyMutex | ||||||
} | ||||||
|
||||||
func NewMemoryStorage() Storage { | ||||||
return &memoryStorage{ | ||||||
m: map[string]storageEntry{}, | ||||||
kmu: newKeyMutex(), | ||||||
} | ||||||
} | ||||||
|
||||||
// Exists returns true if key exists in s. | ||||||
func (s *memoryStorage) Exists(ctx context.Context, key string) bool { | ||||||
ans, err := s.List(ctx, key, true) | ||||||
if err != nil { | ||||||
return false | ||||||
} | ||||||
return len(ans) != 0 | ||||||
} | ||||||
|
||||||
// Store saves value at key. | ||||||
func (s *memoryStorage) Store(_ context.Context, key string, value []byte) error { | ||||||
s.mu.Lock() | ||||||
defer s.mu.Unlock() | ||||||
s.m[key] = storageEntry{ | ||||||
i: KeyInfo{ | ||||||
Key: key, | ||||||
Modified: time.Now(), | ||||||
Size: int64(len(value)), | ||||||
IsTerminal: true, | ||||||
}, | ||||||
d: value, | ||||||
} | ||||||
return nil | ||||||
} | ||||||
|
||||||
// Load retrieves the value at key. | ||||||
func (s *memoryStorage) Load(_ context.Context, key string) ([]byte, error) { | ||||||
s.mu.Lock() | ||||||
defer s.mu.Unlock() | ||||||
val, ok := s.m[key] | ||||||
if !ok { | ||||||
return nil, os.ErrNotExist | ||||||
} | ||||||
return val.d, nil | ||||||
} | ||||||
|
||||||
// Delete deletes the value at key. | ||||||
func (s *memoryStorage) Delete(_ context.Context, key string) error { | ||||||
s.mu.Lock() | ||||||
defer s.mu.Unlock() | ||||||
delete(s.m, key) | ||||||
return nil | ||||||
} | ||||||
|
||||||
// List returns all keys that match prefix. | ||||||
func (s *memoryStorage) List(ctx context.Context, prefix string, recursive bool) ([]string, error) { | ||||||
s.mu.Lock() | ||||||
defer s.mu.Unlock() | ||||||
return s.list(ctx, prefix, recursive) | ||||||
} | ||||||
|
||||||
func (s *memoryStorage) list(ctx context.Context, prefix string, recursive bool) ([]string, error) { | ||||||
var keyList []string | ||||||
|
||||||
keys := make([]string, 0, len(s.m)) | ||||||
for k := range s.m { | ||||||
if strings.HasPrefix(k, prefix) { | ||||||
keys = append(keys, k) | ||||||
} | ||||||
} | ||||||
// adapted from https://github.com/pberkel/caddy-storage-redis/blob/main/storage.go#L369 | ||||||
// Iterate over each child key | ||||||
for _, k := range keys { | ||||||
// Directory keys will have a "/" suffix | ||||||
trimmedKey := strings.TrimSuffix(k, "/") | ||||||
// Reconstruct the full path of child key | ||||||
fullPathKey := path.Join(prefix, trimmedKey) | ||||||
// If current key is a directory | ||||||
if recursive && k != trimmedKey { | ||||||
// Recursively traverse all child directories | ||||||
childKeys, err := s.list(ctx, fullPathKey, recursive) | ||||||
if err != nil { | ||||||
return keyList, err | ||||||
} | ||||||
keyList = append(keyList, childKeys...) | ||||||
} else { | ||||||
keyList = append(keyList, fullPathKey) | ||||||
} | ||||||
} | ||||||
|
||||||
return keys, nil | ||||||
} | ||||||
|
||||||
// Stat returns information about key. | ||||||
func (s *memoryStorage) Stat(_ context.Context, key string) (KeyInfo, error) { | ||||||
s.mu.Lock() | ||||||
defer s.mu.Unlock() | ||||||
val, ok := s.m[key] | ||||||
if !ok { | ||||||
return KeyInfo{}, os.ErrNotExist | ||||||
} | ||||||
return val.i, nil | ||||||
} | ||||||
|
||||||
// Lock obtains a lock named by the given name. It blocks | ||||||
// until the lock can be obtained or an error is returned. | ||||||
func (s *memoryStorage) Lock(ctx context.Context, name string) error { | ||||||
return s.kmu.LockKey(ctx, name) | ||||||
} | ||||||
|
||||||
// Unlock releases the lock for name. | ||||||
func (s *memoryStorage) Unlock(_ context.Context, name string) error { | ||||||
return s.kmu.UnlockKey(name) | ||||||
} | ||||||
|
||||||
func (s *memoryStorage) String() string { | ||||||
return "memoryStorage" | ||||||
} | ||||||
|
||||||
// Interface guard | ||||||
var _ Storage = (*memoryStorage)(nil) | ||||||
|
||||||
type keyMutex struct { | ||||||
m map[string]*semaphore.Weighted | ||||||
mu sync.Mutex | ||||||
} | ||||||
|
||||||
func newKeyMutex() *keyMutex { | ||||||
return &keyMutex{ | ||||||
m: map[string]*semaphore.Weighted{}, | ||||||
} | ||||||
} | ||||||
|
||||||
func (km *keyMutex) LockKey(ctx context.Context, id string) error { | ||||||
select { | ||||||
case <-ctx.Done(): | ||||||
// as a special case, caddy allows for the cancelled context to be used for a trylock. | ||||||
if km.mutex(id).TryAcquire(1) { | ||||||
return nil | ||||||
} | ||||||
return ctx.Err() | ||||||
default: | ||||||
return km.mutex(id).Acquire(ctx, 1) | ||||||
} | ||||||
} | ||||||
|
||||||
// Releases the lock associated with the specified ID. | ||||||
func (km *keyMutex) UnlockKey(id string) error { | ||||||
km.mutex(id).Release(1) | ||||||
return nil | ||||||
} | ||||||
|
||||||
func (km *keyMutex) mutex(id string) *semaphore.Weighted { | ||||||
km.mu.Lock() | ||||||
defer km.mu.Unlock() | ||||||
val, ok := km.m[id] | ||||||
if !ok { | ||||||
val = semaphore.NewWeighted(1) | ||||||
km.m[id] = val | ||||||
} | ||||||
return val | ||||||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
package certmagic_test | ||
|
||
import ( | ||
"bytes" | ||
"context" | ||
"os" | ||
"testing" | ||
|
||
"github.com/caddyserver/certmagic" | ||
"github.com/caddyserver/certmagic/internal/testutil" | ||
) | ||
|
||
func TestMemoryStorageStoreLoad(t *testing.T) { | ||
ctx := context.Background() | ||
tmpDir, err := os.MkdirTemp(os.TempDir(), "certmagic*") | ||
testutil.RequireNoError(t, err, "allocating tmp dir") | ||
defer os.RemoveAll(tmpDir) | ||
s := certmagic.NewMemoryStorage() | ||
err = s.Store(ctx, "foo", []byte("bar")) | ||
testutil.RequireNoError(t, err) | ||
dat, err := s.Load(ctx, "foo") | ||
testutil.RequireNoError(t, err) | ||
testutil.RequireEqualValues(t, dat, []byte("bar")) | ||
} | ||
|
||
func TestMemoryStorageStoreLoadRace(t *testing.T) { | ||
ctx := context.Background() | ||
tmpDir, err := os.MkdirTemp(os.TempDir(), "certmagic*") | ||
testutil.RequireNoError(t, err, "allocating tmp dir") | ||
defer os.RemoveAll(tmpDir) | ||
s := certmagic.NewMemoryStorage() | ||
a := bytes.Repeat([]byte("a"), 4096*1024) | ||
b := bytes.Repeat([]byte("b"), 4096*1024) | ||
err = s.Store(ctx, "foo", a) | ||
testutil.RequireNoError(t, err) | ||
done := make(chan struct{}) | ||
go func() { | ||
err := s.Store(ctx, "foo", b) | ||
testutil.RequireNoError(t, err) | ||
close(done) | ||
}() | ||
dat, err := s.Load(ctx, "foo") | ||
<-done | ||
testutil.RequireNoError(t, err) | ||
testutil.RequireEqualValues(t, 4096*1024, len(dat)) | ||
} | ||
|
||
func TestMemoryStorageWriteLock(t *testing.T) { | ||
ctx := context.Background() | ||
tmpDir, err := os.MkdirTemp(os.TempDir(), "certmagic*") | ||
testutil.RequireNoError(t, err, "allocating tmp dir") | ||
defer os.RemoveAll(tmpDir) | ||
s := certmagic.NewMemoryStorage() | ||
// cctx is a cancelled ctx. so if we can't immediately get the lock, it will fail | ||
cctx, cn := context.WithCancel(ctx) | ||
cn() | ||
// should success | ||
err = s.Lock(cctx, "foo") | ||
testutil.RequireNoError(t, err) | ||
// should fail | ||
err = s.Lock(cctx, "foo") | ||
testutil.RequireError(t, err) | ||
|
||
err = s.Unlock(cctx, "foo") | ||
testutil.RequireNoError(t, err) | ||
// shouldn't fail | ||
err = s.Lock(cctx, "foo") | ||
testutil.RequireNoError(t, err) | ||
|
||
err = s.Unlock(cctx, "foo") | ||
testutil.RequireNoError(t, err) | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this needs updating?