Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
59 lines
942 B
Go
59 lines
942 B
Go
package timecache
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
// LastSeenCache is a time cache that extends the expiry of a seen message when added
|
|
// or checked for presence with Has..
|
|
type LastSeenCache struct {
|
|
lk sync.Mutex
|
|
m map[string]time.Time
|
|
ttl time.Duration
|
|
|
|
done func()
|
|
}
|
|
|
|
var _ TimeCache = (*LastSeenCache)(nil)
|
|
|
|
func newLastSeenCache(ttl time.Duration) *LastSeenCache {
|
|
tc := &LastSeenCache{
|
|
m: make(map[string]time.Time),
|
|
ttl: ttl,
|
|
}
|
|
|
|
ctx, done := context.WithCancel(context.Background())
|
|
tc.done = done
|
|
go background(ctx, &tc.lk, tc.m)
|
|
|
|
return tc
|
|
}
|
|
|
|
func (tc *LastSeenCache) Done() {
|
|
tc.done()
|
|
}
|
|
|
|
func (tc *LastSeenCache) Add(s string) bool {
|
|
tc.lk.Lock()
|
|
defer tc.lk.Unlock()
|
|
|
|
_, ok := tc.m[s]
|
|
tc.m[s] = time.Now().Add(tc.ttl)
|
|
|
|
return !ok
|
|
}
|
|
|
|
func (tc *LastSeenCache) Has(s string) bool {
|
|
tc.lk.Lock()
|
|
defer tc.lk.Unlock()
|
|
|
|
_, ok := tc.m[s]
|
|
if ok {
|
|
tc.m[s] = time.Now().Add(tc.ttl)
|
|
}
|
|
|
|
return ok
|
|
}
|