ussd/debug/db.go

63 lines
1.1 KiB
Go
Raw Normal View History

2024-12-01 18:32:06 +01:00
package debug
import (
"fmt"
"encoding/binary"
"git.grassecon.net/urdt/ussd/internal/storage"
"git.grassecon.net/urdt/ussd/common"
)
2024-12-02 00:12:58 +01:00
var (
dbTypStr map[common.DataTyp]string = make(map[common.DataTyp]string)
)
2024-12-01 18:32:06 +01:00
type KeyInfo struct {
SessionId string
Typ uint8
SubTyp common.DataTyp
Label string
Description string
}
func ToKeyInfo(k []byte, sessionId string) (KeyInfo, error) {
o := KeyInfo{}
b := []byte(sessionId)
2024-12-02 00:12:58 +01:00
2024-12-01 18:32:06 +01:00
if len(k) <= len(b) {
return o, fmt.Errorf("storage key missing")
}
o.SessionId = sessionId
k = k[len(b):]
o.Typ = k[0]
k = k[1:]
if o.Typ == storage.DATATYPE_USERSUB {
if len(k) == 0 {
return o, fmt.Errorf("missing subtype key")
}
v := binary.BigEndian.Uint16(k[:2])
o.SubTyp = common.DataTyp(v)
2024-12-02 00:12:58 +01:00
o.Label = subTypToString(o.SubTyp)
2024-12-01 18:32:06 +01:00
k = k[2:]
2024-12-02 00:12:58 +01:00
} else {
o.Label = typToString(o.Typ)
2024-12-01 18:32:06 +01:00
}
if len(k) != 0 {
return o, fmt.Errorf("excess key information")
}
return o, nil
}
2024-12-02 00:12:58 +01:00
func subTypToString(v common.DataTyp) string {
return dbTypStr[v + storage.DATATYPE_USERSUB + 1]
}
func typToString(v uint8) string {
return dbTypStr[common.DataTyp(uint16(v))]
}