mirror of
https://github.com/safing/portbase
synced 2025-04-16 15:39:08 +00:00
194 lines
4 KiB
Go
194 lines
4 KiB
Go
package hashmap
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/safing/portbase/database/iterator"
|
|
"github.com/safing/portbase/database/query"
|
|
"github.com/safing/portbase/database/record"
|
|
"github.com/safing/portbase/database/storage"
|
|
)
|
|
|
|
// HashMap storage.
|
|
type HashMap struct {
|
|
name string
|
|
db map[string]record.Record
|
|
dbLock sync.RWMutex
|
|
}
|
|
|
|
func init() {
|
|
_ = storage.Register("hashmap", NewHashMap)
|
|
}
|
|
|
|
// NewHashMap creates a hashmap database.
|
|
func NewHashMap(name, location string) (storage.Interface, error) {
|
|
return &HashMap{
|
|
name: name,
|
|
db: make(map[string]record.Record),
|
|
}, nil
|
|
}
|
|
|
|
// Get returns a database record.
|
|
func (hm *HashMap) Get(key string) (record.Record, error) {
|
|
hm.dbLock.RLock()
|
|
defer hm.dbLock.RUnlock()
|
|
|
|
r, ok := hm.db[key]
|
|
if !ok {
|
|
return nil, storage.ErrNotFound
|
|
}
|
|
return r, nil
|
|
}
|
|
|
|
// Put stores a record in the database.
|
|
func (hm *HashMap) Put(r record.Record) (record.Record, error) {
|
|
hm.dbLock.Lock()
|
|
defer hm.dbLock.Unlock()
|
|
|
|
hm.db[r.DatabaseKey()] = r
|
|
return r, nil
|
|
}
|
|
|
|
// PutMany stores many records in the database.
|
|
func (hm *HashMap) PutMany() (chan<- record.Record, <-chan error) {
|
|
hm.dbLock.Lock()
|
|
defer hm.dbLock.Unlock()
|
|
// we could lock for every record, but we want to have the same behaviour
|
|
// as the other storage backends, especially for testing.
|
|
|
|
batch := make(chan record.Record, 100)
|
|
errs := make(chan error, 1)
|
|
|
|
// start handler
|
|
go func() {
|
|
for r := range batch {
|
|
hm.db[r.DatabaseKey()] = r
|
|
}
|
|
errs <- nil
|
|
}()
|
|
|
|
return batch, errs
|
|
}
|
|
|
|
// Delete deletes a record from the database.
|
|
func (hm *HashMap) Delete(key string) error {
|
|
hm.dbLock.Lock()
|
|
defer hm.dbLock.Unlock()
|
|
|
|
delete(hm.db, key)
|
|
return nil
|
|
}
|
|
|
|
// Query returns a an iterator for the supplied query.
|
|
func (hm *HashMap) Query(q *query.Query, local, internal bool) (*iterator.Iterator, error) {
|
|
_, err := q.Check()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("invalid query: %s", err)
|
|
}
|
|
|
|
queryIter := iterator.New()
|
|
|
|
go hm.queryExecutor(queryIter, q, local, internal)
|
|
return queryIter, nil
|
|
}
|
|
|
|
func (hm *HashMap) queryExecutor(queryIter *iterator.Iterator, q *query.Query, local, internal bool) {
|
|
hm.dbLock.RLock()
|
|
defer hm.dbLock.RUnlock()
|
|
|
|
var err error
|
|
|
|
mapLoop:
|
|
for key, record := range hm.db {
|
|
|
|
switch {
|
|
case !q.MatchesKey(key):
|
|
continue
|
|
case !q.MatchesRecord(record):
|
|
continue
|
|
case !record.Meta().CheckValidity():
|
|
continue
|
|
case !record.Meta().CheckPermission(local, internal):
|
|
continue
|
|
}
|
|
|
|
select {
|
|
case <-queryIter.Done:
|
|
break mapLoop
|
|
case queryIter.Next <- record:
|
|
default:
|
|
select {
|
|
case <-queryIter.Done:
|
|
break mapLoop
|
|
case queryIter.Next <- record:
|
|
case <-time.After(1 * time.Second):
|
|
err = errors.New("query timeout")
|
|
break mapLoop
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
queryIter.Finish(err)
|
|
}
|
|
|
|
// ReadOnly returns whether the database is read only.
|
|
func (hm *HashMap) ReadOnly() bool {
|
|
return false
|
|
}
|
|
|
|
// Injected returns whether the database is injected.
|
|
func (hm *HashMap) Injected() bool {
|
|
return false
|
|
}
|
|
|
|
// Maintain runs a light maintenance operation on the database.
|
|
func (hm *HashMap) Maintain(_ context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
// MaintainThorough runs a thorough maintenance operation on the database.
|
|
func (hm *HashMap) MaintainThorough(_ context.Context) error {
|
|
return nil
|
|
}
|
|
|
|
// MaintainRecordStates maintains records states in the database.
|
|
func (hm *HashMap) MaintainRecordStates(ctx context.Context, purgeDeletedBefore time.Time) error {
|
|
hm.dbLock.Lock()
|
|
defer hm.dbLock.Unlock()
|
|
|
|
now := time.Now().Unix()
|
|
purgeThreshold := purgeDeletedBefore.Unix()
|
|
|
|
for key, record := range hm.db {
|
|
meta := record.Meta()
|
|
switch {
|
|
case meta.Deleted > 0 && meta.Deleted < purgeThreshold:
|
|
// delete from storage
|
|
delete(hm.db, key)
|
|
case meta.Expires > 0 && meta.Expires < now:
|
|
// mark as deleted
|
|
record.Lock()
|
|
meta.Deleted = meta.Expires
|
|
record.Unlock()
|
|
}
|
|
|
|
// check if context is cancelled
|
|
select {
|
|
case <-ctx.Done():
|
|
return nil
|
|
default:
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Shutdown shuts down the database.
|
|
func (hm *HashMap) Shutdown() error {
|
|
return nil
|
|
}
|