mapserver/mapobjectdb/accessor.go
2023-12-29 16:00:11 +01:00

88 lines
1.9 KiB
Go

package mapobjectdb
import (
"mapserver/coords"
"mapserver/types"
"time"
"github.com/sirupsen/logrus"
)
/*
sqlite perf: https://stackoverflow.com/questions/1711631/improve-insert-per-second-performance-of-sqlite?rq=1
PRAGMA synchronous = OFF
PRAGMA journal_mode = MEMORY
*/
type Tile struct {
Pos *coords.TileCoords
Data []byte
Mtime int64
}
type MapObject struct {
//mapblock position
MBPos *types.MapBlockCoords `json:"mapblock"`
//block position
X int `json:"x"`
Y int `json:"y"`
Z int `json:"z"`
Type string `json:"type"`
Mtime int64 `json:"mtime"`
Attributes map[string]string `json:"attributes"`
}
func NewMapObject(MBPos *types.MapBlockCoords, x int, y int, z int, _type string) *MapObject {
fields := logrus.Fields{
"mbpos": MBPos,
"x": x,
"y": y,
"z": z,
"type": _type,
}
log.WithFields(fields).Debug("NewMapObject")
o := MapObject{
MBPos: MBPos,
Type: _type,
X: (MBPos.X * 16) + x,
Y: (MBPos.Y * 16) + y,
Z: (MBPos.Z * 16) + z,
Mtime: time.Now().Unix(),
Attributes: make(map[string]string),
}
return &o
}
type SearchAttributeLike struct {
Key string `json:"key"`
Value string `json:"value"`
}
type SearchQuery struct {
//mapblock position
Pos1 *types.MapBlockCoords `json:"pos1"`
Pos2 *types.MapBlockCoords `json:"pos2"`
Type string `json:"type"`
AttributeLike *SearchAttributeLike `json:"attributelike"`
Limit *int `json:"limit"`
}
type DBAccessor interface {
//migrates the database
Migrate() error
//Generic map objects (poi, etc)
GetMapData(q *SearchQuery) ([]*MapObject, error)
RemoveMapData(pos *types.MapBlockCoords) error
AddMapData(data *MapObject) error
//Settings
GetSetting(key string, defaultvalue string) (string, error)
SetSetting(key string, value string) error
}