summaryrefslogtreecommitdiffstats
path: root/internal/storage/replay.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/storage/replay.go')
-rw-r--r--internal/storage/replay.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/internal/storage/replay.go b/internal/storage/replay.go
new file mode 100644
index 0000000..a2366a4
--- /dev/null
+++ b/internal/storage/replay.go
@@ -0,0 +1,32 @@
+package storage
+
+import (
+ "sync"
+ "time"
+)
+
+type ReplayCache struct {
+ ttl time.Duration
+ mu sync.Mutex
+ data map[string]time.Time
+}
+
+func NewReplayCache(ttl time.Duration) *ReplayCache {
+ return &ReplayCache{ttl: ttl, data: map[string]time.Time{}}
+}
+
+func (c *ReplayCache) CheckAndMark(hash string) (bool, error) {
+ c.mu.Lock()
+ defer c.mu.Unlock()
+ now := time.Now()
+ for k, ts := range c.data {
+ if now.Sub(ts) > c.ttl {
+ delete(c.data, k)
+ }
+ }
+ if _, exists := c.data[hash]; exists {
+ return true, nil
+ }
+ c.data[hash] = now
+ return false, nil
+}