2023-07-09 14:30:30 -06:00
|
|
|
package graphvent
|
|
|
|
|
|
|
|
import (
|
2024-03-04 17:30:42 -07:00
|
|
|
"crypto/ecdh"
|
2024-03-04 22:11:40 -07:00
|
|
|
"encoding"
|
2024-03-04 17:30:42 -07:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"runtime"
|
2024-03-08 17:43:30 -07:00
|
|
|
"slices"
|
2024-03-04 21:30:11 -07:00
|
|
|
"strconv"
|
2024-03-04 22:11:40 -07:00
|
|
|
"strings"
|
2024-03-04 17:30:42 -07:00
|
|
|
"sync"
|
2024-03-04 22:11:40 -07:00
|
|
|
"time"
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2024-03-04 21:30:11 -07:00
|
|
|
"golang.org/x/exp/constraints"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
2024-03-04 17:30:42 -07:00
|
|
|
"github.com/graphql-go/graphql"
|
|
|
|
"github.com/graphql-go/graphql/language/ast"
|
|
|
|
|
|
|
|
badger "github.com/dgraph-io/badger/v3"
|
2023-07-27 23:15:58 -06:00
|
|
|
)
|
|
|
|
|
2023-07-28 00:04:18 -06:00
|
|
|
var (
|
|
|
|
NodeNotFoundError = errors.New("Node not found in DB")
|
2023-08-07 20:26:02 -06:00
|
|
|
ECDH = ecdh.X25519()
|
2023-07-28 00:04:18 -06:00
|
|
|
)
|
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
type SerializeFn func(ctx *Context, value reflect.Value) ([]byte, error)
|
|
|
|
type DeserializeFn func(ctx *Context, data []byte) (reflect.Value, []byte, error)
|
|
|
|
|
|
|
|
type FieldInfo struct {
|
|
|
|
Index []int
|
2024-03-08 17:43:30 -07:00
|
|
|
Tag string
|
|
|
|
NodeTag string
|
2024-03-08 00:22:51 -07:00
|
|
|
Type reflect.Type
|
|
|
|
}
|
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
type TypeInfo struct {
|
2024-03-08 00:22:51 -07:00
|
|
|
Serialized SerializedType
|
|
|
|
Reflect reflect.Type
|
2024-03-04 17:30:42 -07:00
|
|
|
Type graphql.Type
|
2024-03-08 00:22:51 -07:00
|
|
|
|
|
|
|
Fields map[FieldTag]FieldInfo
|
|
|
|
PostDeserializeIndex int
|
|
|
|
|
|
|
|
Serialize SerializeFn
|
|
|
|
Deserialize DeserializeFn
|
2024-03-04 17:30:42 -07:00
|
|
|
}
|
2024-03-03 15:45:45 -07:00
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
type ExtensionInfo struct {
|
2024-03-08 00:22:51 -07:00
|
|
|
ExtType
|
2024-03-08 17:43:30 -07:00
|
|
|
Fields map[string]FieldInfo
|
2023-08-31 19:50:32 -06:00
|
|
|
Data interface{}
|
|
|
|
}
|
2023-08-01 20:55:15 -06:00
|
|
|
|
2023-08-31 19:50:32 -06:00
|
|
|
type NodeInfo struct {
|
2024-03-08 00:22:51 -07:00
|
|
|
NodeType
|
|
|
|
Type *graphql.Object
|
2024-03-08 17:43:30 -07:00
|
|
|
Interface *graphql.Interface
|
2023-08-31 19:50:32 -06:00
|
|
|
Extensions []ExtType
|
2024-03-09 22:09:40 -07:00
|
|
|
Fields map[string]ExtType
|
2023-08-01 20:55:15 -06:00
|
|
|
}
|
2023-07-29 00:28:44 -06:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
type InterfaceInfo struct {
|
|
|
|
Serialized SerializedType
|
|
|
|
Reflect reflect.Type
|
|
|
|
}
|
|
|
|
|
2023-07-27 16:06:56 -06:00
|
|
|
// A Context stores all the data to run a graphvent process
|
2023-07-09 14:30:30 -06:00
|
|
|
type Context struct {
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2023-07-10 22:31:43 -06:00
|
|
|
// DB is the database connection used to load and write nodes
|
2023-07-09 14:30:30 -06:00
|
|
|
DB * badger.DB
|
2023-07-27 16:06:56 -06:00
|
|
|
// Logging interface
|
2023-07-09 14:30:30 -06:00
|
|
|
Log Logger
|
2024-03-04 17:30:42 -07:00
|
|
|
|
|
|
|
// Mapped types
|
2024-03-08 00:22:51 -07:00
|
|
|
TypeMap map[SerializedType]*TypeInfo
|
|
|
|
TypeTypes map[reflect.Type]*TypeInfo
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2023-07-27 16:06:56 -06:00
|
|
|
// Map between database extension hashes and the registered info
|
2024-03-08 00:22:51 -07:00
|
|
|
Extensions map[ExtType]*ExtensionInfo
|
|
|
|
ExtensionTypes map[reflect.Type]*ExtensionInfo
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
Interfaces map[SerializedType]*InterfaceInfo
|
|
|
|
InterfaceTypes map[reflect.Type]*InterfaceInfo
|
|
|
|
|
2023-07-27 16:06:56 -06:00
|
|
|
// Map between database type hashes and the registered info
|
2024-03-08 00:22:51 -07:00
|
|
|
Nodes map[NodeType]*NodeInfo
|
|
|
|
NodeTypes map[string]*NodeInfo
|
2024-03-03 15:45:45 -07:00
|
|
|
|
2023-07-27 16:06:56 -06:00
|
|
|
// Routing map to all the nodes local to this context
|
2023-08-31 19:50:32 -06:00
|
|
|
nodeMapLock sync.RWMutex
|
|
|
|
nodeMap map[NodeID]*Node
|
2023-07-10 21:15:01 -06:00
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
func (ctx *Context) GQLType(t reflect.Type, node_type string) (graphql.Type, error) {
|
|
|
|
if t == reflect.TypeFor[NodeID]() {
|
2024-03-21 14:22:34 -06:00
|
|
|
if node_type == "" {
|
|
|
|
node_type = "Base"
|
|
|
|
}
|
2024-03-08 17:43:30 -07:00
|
|
|
node_info, mapped := ctx.NodeTypes[node_type]
|
|
|
|
if mapped == false {
|
|
|
|
return nil, fmt.Errorf("Cannot get GQL type for unregistered Node Type \"%s\"", node_type)
|
|
|
|
} else {
|
|
|
|
return node_info.Interface, nil
|
|
|
|
}
|
2024-03-04 21:30:11 -07:00
|
|
|
} else {
|
2024-03-08 17:43:30 -07:00
|
|
|
info, mapped := ctx.TypeTypes[t]
|
|
|
|
if mapped {
|
|
|
|
return info.Type, nil
|
|
|
|
} else {
|
|
|
|
switch t.Kind() {
|
|
|
|
case reflect.Array:
|
|
|
|
info, mapped := ctx.TypeTypes[t.Elem()]
|
|
|
|
if mapped {
|
|
|
|
return graphql.NewList(info.Type), nil
|
2024-03-04 21:30:11 -07:00
|
|
|
}
|
2024-03-08 17:43:30 -07:00
|
|
|
case reflect.Slice:
|
|
|
|
info, mapped := ctx.TypeTypes[t.Elem()]
|
|
|
|
if mapped {
|
|
|
|
return graphql.NewList(info.Type), nil
|
|
|
|
}
|
|
|
|
case reflect.Map:
|
|
|
|
info, exists := ctx.TypeTypes[t]
|
|
|
|
if exists {
|
|
|
|
return info.Type, nil
|
|
|
|
} else {
|
|
|
|
err := RegisterMap(ctx, t, node_type)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
map_type := ctx.TypeTypes[t].Type
|
|
|
|
return map_type, nil
|
|
|
|
}
|
|
|
|
case reflect.Pointer:
|
|
|
|
return ctx.GQLType(t.Elem(), node_type)
|
2024-03-04 21:30:11 -07:00
|
|
|
}
|
2024-03-08 17:43:30 -07:00
|
|
|
return nil, fmt.Errorf("Can't convert %s to GQL type", t)
|
2024-03-04 21:30:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-09 22:09:40 -07:00
|
|
|
type Pair struct {
|
|
|
|
Key any
|
|
|
|
Val any
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
func RegisterMap(ctx *Context, reflect_type reflect.Type, node_type string) error {
|
2024-03-21 14:22:34 -06:00
|
|
|
var node_types []string
|
|
|
|
if node_type == "" {
|
|
|
|
node_types = []string{"", ""}
|
|
|
|
} else {
|
|
|
|
node_types = strings.SplitN(node_type, ":", 2)
|
2024-03-08 17:43:30 -07:00
|
|
|
|
2024-03-21 14:22:34 -06:00
|
|
|
if len(node_types) != 2 {
|
|
|
|
return fmt.Errorf("Invalid node tag for map type %s: \"%s\"", reflect_type, node_type)
|
|
|
|
}
|
2024-03-08 17:43:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
key_type, err := ctx.GQLType(reflect_type.Key(), node_types[0])
|
2024-03-08 14:35:23 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2024-03-04 21:30:11 -07:00
|
|
|
}
|
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
key_resolve := ctx.GQLResolve(reflect_type.Key(), node_types[0])
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
val_type, err := ctx.GQLType(reflect_type.Elem(), node_types[1])
|
2024-03-08 14:35:23 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2024-03-04 21:30:11 -07:00
|
|
|
}
|
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
val_resolve := ctx.GQLResolve(reflect_type.Elem(), node_types[1])
|
|
|
|
|
2024-03-08 14:35:23 -07:00
|
|
|
gql_name := strings.ReplaceAll(reflect_type.String(), ".", "_")
|
|
|
|
gql_name = strings.ReplaceAll(gql_name, "[", "_")
|
|
|
|
gql_name = strings.ReplaceAll(gql_name, "]", "_")
|
|
|
|
|
2024-03-04 21:30:11 -07:00
|
|
|
gql_pair := graphql.NewObject(graphql.ObjectConfig{
|
2024-03-08 14:35:23 -07:00
|
|
|
Name: gql_name,
|
2024-03-04 21:30:11 -07:00
|
|
|
Fields: graphql.Fields{
|
|
|
|
"Key": &graphql.Field{
|
|
|
|
Type: key_type,
|
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
2024-03-09 22:09:40 -07:00
|
|
|
source, ok := p.Source.(Pair)
|
|
|
|
if ok == false {
|
|
|
|
return nil, fmt.Errorf("%+v is not Pair", source)
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
if key_resolve == nil {
|
|
|
|
return source.Key, nil
|
|
|
|
} else {
|
|
|
|
return key_resolve(source.Key, p)
|
|
|
|
}
|
2024-03-04 21:30:11 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"Value": &graphql.Field{
|
|
|
|
Type: val_type,
|
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
2024-03-09 22:09:40 -07:00
|
|
|
source, ok := p.Source.(Pair)
|
|
|
|
if ok == false {
|
|
|
|
return nil, fmt.Errorf("%+v is not Pair", source)
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
if val_resolve == nil {
|
|
|
|
return source.Val, nil
|
|
|
|
} else {
|
|
|
|
return val_resolve(source.Val, p)
|
|
|
|
}
|
2024-03-04 21:30:11 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
gql_map := graphql.NewList(gql_pair)
|
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
serialized_type := SerializeType(reflect_type)
|
|
|
|
ctx.TypeMap[serialized_type] = &TypeInfo{
|
|
|
|
Serialized: serialized_type,
|
|
|
|
Reflect: reflect_type,
|
2024-03-04 21:30:11 -07:00
|
|
|
Type: gql_map,
|
|
|
|
}
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.TypeTypes[reflect_type] = ctx.TypeMap[serialized_type]
|
2024-03-04 21:30:11 -07:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
func BuildSchema(ctx *Context, query, mutation *graphql.Object) (graphql.Schema, error) {
|
|
|
|
types := []graphql.Type{}
|
2024-03-08 17:43:30 -07:00
|
|
|
ctx.Log.Logf("gql", "Building Schema")
|
2024-03-03 15:45:45 -07:00
|
|
|
|
2024-03-04 22:11:40 -07:00
|
|
|
for _, info := range(ctx.TypeMap) {
|
2024-03-17 14:25:34 -06:00
|
|
|
if info.Type != nil {
|
|
|
|
types = append(types, info.Type)
|
|
|
|
}
|
2024-03-04 22:11:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, info := range(ctx.Nodes) {
|
2024-03-08 00:22:51 -07:00
|
|
|
types = append(types, info.Type)
|
2024-03-08 17:43:30 -07:00
|
|
|
types = append(types, info.Interface)
|
2024-03-04 22:11:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
subscription := graphql.NewObject(graphql.ObjectConfig{
|
|
|
|
Name: "Subscription",
|
2024-03-10 15:41:13 -06:00
|
|
|
Fields: graphql.Fields{},
|
2024-03-04 17:30:42 -07:00
|
|
|
})
|
2023-10-29 18:26:14 -06:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
for query_name, query := range(query.Fields()) {
|
|
|
|
args := graphql.FieldConfigArgument{}
|
|
|
|
for _, arg := range(query.Args) {
|
|
|
|
args[arg.Name()] = &graphql.ArgumentConfig{
|
|
|
|
Type: arg.Type,
|
|
|
|
DefaultValue: arg.DefaultValue,
|
|
|
|
Description: arg.Description(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
subscription.AddFieldConfig(query_name, &graphql.Field{
|
|
|
|
Type: query.Type,
|
|
|
|
Args: args,
|
|
|
|
Subscribe: func(p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
ctx, err := PrepResolve(p)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
c, err := ctx.Ext.AddSubscription(ctx.ID, ctx)
|
2024-03-10 15:41:13 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
c <- nil
|
2024-03-10 15:41:13 -06:00
|
|
|
return c, nil
|
|
|
|
},
|
|
|
|
Resolve: query.Resolve,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
return graphql.NewSchema(graphql.SchemaConfig{
|
|
|
|
Types: types,
|
|
|
|
Query: query,
|
|
|
|
Subscription: subscription,
|
|
|
|
Mutation: mutation,
|
|
|
|
})
|
2023-08-31 19:50:32 -06:00
|
|
|
}
|
|
|
|
|
2024-03-03 15:45:45 -07:00
|
|
|
func RegisterExtension[E any, T interface { *E; Extension}](ctx *Context, data interface{}) error {
|
2024-03-04 22:11:40 -07:00
|
|
|
reflect_type := reflect.TypeFor[E]()
|
2024-03-03 15:45:45 -07:00
|
|
|
ext_type := ExtType(SerializedTypeFor[E]())
|
2023-08-31 19:50:32 -06:00
|
|
|
_, exists := ctx.Extensions[ext_type]
|
2023-07-09 14:30:30 -06:00
|
|
|
if exists == true {
|
2024-03-03 15:45:45 -07:00
|
|
|
return fmt.Errorf("Cannot register extension %+v of type %+v, type already exists in context", reflect_type, ext_type)
|
2023-07-09 14:30:30 -06:00
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
fields := map[string]FieldInfo{}
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
for _, field := range(reflect.VisibleFields(reflect_type)) {
|
2024-03-04 17:30:42 -07:00
|
|
|
gv_tag, tagged_gv := field.Tag.Lookup("gv")
|
|
|
|
if tagged_gv {
|
2024-03-08 17:43:30 -07:00
|
|
|
fields[gv_tag] = FieldInfo{
|
|
|
|
Index: field.Index,
|
|
|
|
Tag: gv_tag,
|
|
|
|
NodeTag: field.Tag.Get("node"),
|
|
|
|
Type: field.Type,
|
2024-03-04 17:30:42 -07:00
|
|
|
}
|
|
|
|
}
|
2023-10-29 18:26:14 -06:00
|
|
|
}
|
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.Extensions[ext_type] = &ExtensionInfo{
|
|
|
|
ExtType: ext_type,
|
2023-07-26 00:18:11 -06:00
|
|
|
Data: data,
|
2024-03-04 17:30:42 -07:00
|
|
|
Fields: fields,
|
2023-07-10 21:15:01 -06:00
|
|
|
}
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.ExtensionTypes[reflect_type] = ctx.Extensions[ext_type]
|
2023-08-31 19:50:32 -06:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
func RegisterNodeType(ctx *Context, name string, extensions []ExtType) error {
|
|
|
|
node_type := NodeTypeFor(extensions)
|
2024-03-04 17:30:42 -07:00
|
|
|
_, exists := ctx.Nodes[node_type]
|
2023-09-02 17:30:52 -06:00
|
|
|
if exists == true {
|
2024-03-04 17:30:42 -07:00
|
|
|
return fmt.Errorf("Cannot register node type %+v, type already exists in context", node_type)
|
2023-09-02 17:30:52 -06:00
|
|
|
}
|
|
|
|
|
2024-03-09 22:09:40 -07:00
|
|
|
fields := map[string]ExtType{}
|
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
ext_found := map[ExtType]bool{}
|
|
|
|
for _, extension := range(extensions) {
|
2024-03-09 22:09:40 -07:00
|
|
|
ext_info, in_ctx := ctx.Extensions[extension]
|
2024-03-04 17:30:42 -07:00
|
|
|
if in_ctx == false {
|
2024-03-08 17:43:30 -07:00
|
|
|
return fmt.Errorf("Cannot register node type %+v, required extension %+v not in context", name, extension)
|
2024-03-04 17:30:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
_, duplicate := ext_found[extension]
|
|
|
|
if duplicate == true {
|
|
|
|
return fmt.Errorf("Duplicate extension %+v found in extension list", extension)
|
|
|
|
}
|
|
|
|
|
|
|
|
ext_found[extension] = true
|
2024-03-09 22:09:40 -07:00
|
|
|
|
|
|
|
for field_name := range(ext_info.Fields) {
|
|
|
|
_, exists := fields[field_name]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("Cannot register NodeType %s with duplicate field name %s", name, field_name)
|
|
|
|
}
|
|
|
|
fields[field_name] = extension
|
|
|
|
}
|
2023-09-02 17:30:52 -06:00
|
|
|
}
|
2024-03-17 14:25:34 -06:00
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
gql_interface := graphql.NewInterface(graphql.InterfaceConfig{
|
2024-03-08 00:22:51 -07:00
|
|
|
Name: name,
|
|
|
|
Fields: graphql.Fields{
|
|
|
|
"ID": &graphql.Field{
|
2024-03-08 17:43:30 -07:00
|
|
|
Type: ctx.TypeTypes[reflect.TypeFor[NodeID]()].Type,
|
2024-03-08 00:22:51 -07:00
|
|
|
},
|
|
|
|
"Type": &graphql.Field{
|
2024-03-08 17:43:30 -07:00
|
|
|
Type: ctx.TypeTypes[reflect.TypeFor[NodeType]()].Type,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ResolveType: func(p graphql.ResolveTypeParams) *graphql.Object {
|
|
|
|
ctx_val := p.Context.Value("resolve")
|
|
|
|
ctx, ok := ctx_val.(*ResolveContext)
|
|
|
|
if ok == false {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
val, ok := p.Value.(NodeResult)
|
|
|
|
if ok == false {
|
2024-03-09 22:09:40 -07:00
|
|
|
ctx.Context.Log.Logf("gql", "Interface ResolveType got bad Value %+v", p.Value)
|
2024-03-08 17:43:30 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
node_info, exists := ctx.Context.Nodes[val.NodeType]
|
|
|
|
if exists == false {
|
2024-03-09 22:09:40 -07:00
|
|
|
ctx.Context.Log.Logf("gql", "Interface ResolveType got bad NodeType", val.NodeType)
|
2024-03-08 17:43:30 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ext_type := range(extensions) {
|
|
|
|
if slices.Contains(node_info.Extensions, ext_type) == false {
|
2024-03-09 22:09:40 -07:00
|
|
|
ctx.Context.Log.Logf("gql", "Interface ResolveType for %s missing extensions %s: %+v", name, ext_type, val)
|
2024-03-08 17:43:30 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return node_info.Type
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
gql := graphql.NewObject(graphql.ObjectConfig{
|
|
|
|
Name: name + "Node",
|
2024-03-09 22:09:40 -07:00
|
|
|
Interfaces: ctx.GQLInterfaces(node_type, extensions),
|
2024-03-08 17:43:30 -07:00
|
|
|
Fields: graphql.Fields{
|
|
|
|
"ID": &graphql.Field{
|
|
|
|
Type: ctx.TypeTypes[reflect.TypeFor[NodeID]()].Type,
|
2024-03-09 22:09:40 -07:00
|
|
|
Resolve: ResolveNodeID,
|
2024-03-08 17:43:30 -07:00
|
|
|
},
|
|
|
|
"Type": &graphql.Field{
|
|
|
|
Type: ctx.TypeTypes[reflect.TypeFor[NodeType]()].Type,
|
2024-03-09 22:09:40 -07:00
|
|
|
Resolve: ResolveNodeType,
|
2024-03-08 00:22:51 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
IsTypeOf: func(p graphql.IsTypeOfParams) bool {
|
2024-03-08 17:43:30 -07:00
|
|
|
source, ok := p.Value.(NodeResult)
|
|
|
|
if ok == false {
|
2024-03-08 00:22:51 -07:00
|
|
|
return false
|
2024-03-08 17:43:30 -07:00
|
|
|
}
|
|
|
|
return source.NodeType == node_type
|
2024-03-08 00:22:51 -07:00
|
|
|
},
|
|
|
|
})
|
2023-09-02 17:30:52 -06:00
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.Nodes[node_type] = &NodeInfo{
|
|
|
|
NodeType: node_type,
|
2024-03-08 17:43:30 -07:00
|
|
|
Interface: gql_interface,
|
2024-03-08 00:22:51 -07:00
|
|
|
Type: gql,
|
2024-03-04 17:30:42 -07:00
|
|
|
Extensions: extensions,
|
2024-03-09 22:09:40 -07:00
|
|
|
Fields: fields,
|
2024-03-04 17:30:42 -07:00
|
|
|
}
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.NodeTypes[name] = ctx.Nodes[node_type]
|
2023-10-29 18:26:14 -06:00
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
for _, ext_type := range(extensions) {
|
|
|
|
ext_info, ext_found := ctx.Extensions[ext_type]
|
|
|
|
if ext_found == false {
|
|
|
|
return fmt.Errorf("Extension %s not found", ext_type)
|
|
|
|
}
|
|
|
|
|
|
|
|
for field_name, field_info := range(ext_info.Fields) {
|
|
|
|
gql_type, err := ctx.GQLType(field_info.Type, field_info.NodeTag)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-03-09 22:09:40 -07:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
gql_resolve := ctx.GQLResolve(field_info.Type, field_info.NodeTag)
|
2024-03-08 17:43:30 -07:00
|
|
|
|
|
|
|
gql_interface.AddFieldConfig(field_name, &graphql.Field{
|
|
|
|
Type: gql_type,
|
|
|
|
})
|
|
|
|
|
|
|
|
gql.AddFieldConfig(field_name, &graphql.Field{
|
|
|
|
Type: gql_type,
|
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
2024-03-09 22:09:40 -07:00
|
|
|
node, ok := p.Source.(NodeResult)
|
|
|
|
if ok == false {
|
|
|
|
return nil, fmt.Errorf("Can't resolve Node field on non-Node %s", reflect.TypeOf(p.Source))
|
|
|
|
}
|
|
|
|
|
|
|
|
node_info, mapped := ctx.Nodes[node.NodeType]
|
|
|
|
if mapped == false {
|
|
|
|
return nil, fmt.Errorf("Can't resolve unknown NodeType %s", node.NodeType)
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
return gql_resolve(node.Data[node_info.Fields[field_name]][field_name], p)
|
2024-03-08 17:43:30 -07:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-09-02 17:30:52 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-09 22:09:40 -07:00
|
|
|
func (ctx *Context) GQLInterfaces(known_type NodeType, extensions []ExtType) graphql.InterfacesThunk {
|
|
|
|
return func() []*graphql.Interface {
|
|
|
|
interfaces := []*graphql.Interface{}
|
|
|
|
for node_type, node_info := range(ctx.Nodes) {
|
|
|
|
if node_type != known_type {
|
|
|
|
has_ext := true
|
|
|
|
for _, ext := range(node_info.Extensions) {
|
|
|
|
if slices.Contains(extensions, ext) == false {
|
|
|
|
has_ext = false
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if has_ext == false {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
interfaces = append(interfaces, node_info.Interface)
|
|
|
|
}
|
|
|
|
return interfaces
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-21 14:22:34 -06:00
|
|
|
func RegisterSignal[S Signal](ctx *Context) error {
|
|
|
|
return RegisterObject[S](ctx)
|
|
|
|
}
|
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
func RegisterObject[T any](ctx *Context) error {
|
2024-03-03 15:45:45 -07:00
|
|
|
reflect_type := reflect.TypeFor[T]()
|
2024-03-04 17:30:42 -07:00
|
|
|
serialized_type := SerializedTypeFor[T]()
|
|
|
|
|
|
|
|
_, exists := ctx.TypeTypes[reflect_type]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("%+v already registered in TypeMap", reflect_type)
|
|
|
|
}
|
|
|
|
|
2024-03-08 14:35:23 -07:00
|
|
|
gql_name := strings.ReplaceAll(reflect_type.String(), ".", "_")
|
2024-03-04 17:30:42 -07:00
|
|
|
gql := graphql.NewObject(graphql.ObjectConfig{
|
2024-03-08 14:35:23 -07:00
|
|
|
Name: gql_name,
|
2024-03-04 17:30:42 -07:00
|
|
|
IsTypeOf: func(p graphql.IsTypeOfParams) bool {
|
|
|
|
return reflect_type == reflect.TypeOf(p.Value)
|
|
|
|
},
|
|
|
|
Fields: graphql.Fields{},
|
|
|
|
})
|
2024-03-08 00:22:51 -07:00
|
|
|
|
|
|
|
field_infos := map[FieldTag]FieldInfo{}
|
|
|
|
|
|
|
|
post_deserialize, post_deserialize_exists := reflect.PointerTo(reflect_type).MethodByName("PostDeserialize")
|
|
|
|
post_deserialize_index := -1
|
|
|
|
if post_deserialize_exists {
|
|
|
|
post_deserialize_index = post_deserialize.Index
|
|
|
|
}
|
2024-03-04 17:30:42 -07:00
|
|
|
|
|
|
|
for _, field := range(reflect.VisibleFields(reflect_type)) {
|
|
|
|
gv_tag, tagged_gv := field.Tag.Lookup("gv")
|
|
|
|
if tagged_gv {
|
2024-03-08 17:43:30 -07:00
|
|
|
node_tag := field.Tag.Get("node")
|
2024-03-08 00:22:51 -07:00
|
|
|
field_infos[GetFieldTag(gv_tag)] = FieldInfo{
|
|
|
|
Type: field.Type,
|
|
|
|
Index: field.Index,
|
2024-03-08 17:43:30 -07:00
|
|
|
NodeTag: node_tag,
|
|
|
|
Tag: gv_tag,
|
2024-03-08 00:22:51 -07:00
|
|
|
}
|
2024-03-08 17:43:30 -07:00
|
|
|
gql_type, err := ctx.GQLType(field.Type, node_tag)
|
2024-03-08 14:35:23 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2023-10-29 18:26:14 -06:00
|
|
|
}
|
2024-03-08 17:43:30 -07:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
gql_resolve := ctx.GQLResolve(field.Type, node_tag)
|
2024-03-04 17:30:42 -07:00
|
|
|
gql.AddFieldConfig(gv_tag, &graphql.Field{
|
2024-03-04 21:30:11 -07:00
|
|
|
Type: gql_type,
|
2024-03-04 17:30:42 -07:00
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
val, ok := p.Source.(T)
|
|
|
|
if ok == false {
|
|
|
|
return nil, fmt.Errorf("%s is not %s", reflect.TypeOf(p.Source), reflect_type)
|
|
|
|
}
|
2024-03-17 14:25:34 -06:00
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
value, err := reflect.ValueOf(val).FieldByIndexErr(field.Index)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
if gql_resolve == nil {
|
|
|
|
return value.Interface(), nil
|
|
|
|
} else {
|
|
|
|
return gql_resolve(value.Interface(), p)
|
|
|
|
}
|
2024-03-04 17:30:42 -07:00
|
|
|
},
|
|
|
|
})
|
2023-10-29 18:26:14 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.TypeMap[serialized_type] = &TypeInfo{
|
|
|
|
PostDeserializeIndex: post_deserialize_index,
|
|
|
|
Serialized: serialized_type,
|
|
|
|
Reflect: reflect_type,
|
|
|
|
Fields: field_infos,
|
2024-03-04 17:30:42 -07:00
|
|
|
Type: gql,
|
2023-09-11 21:47:53 -06:00
|
|
|
}
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.TypeTypes[reflect_type] = ctx.TypeMap[serialized_type]
|
2023-09-11 21:47:53 -06:00
|
|
|
|
2024-03-04 17:30:42 -07:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-21 14:13:54 -06:00
|
|
|
func RegisterObjectNoGQL[T any](ctx *Context) error {
|
|
|
|
reflect_type := reflect.TypeFor[T]()
|
|
|
|
serialized_type := SerializedTypeFor[T]()
|
|
|
|
|
|
|
|
_, exists := ctx.TypeTypes[reflect_type]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("%+v already registered in TypeMap", reflect_type)
|
|
|
|
}
|
|
|
|
|
|
|
|
field_infos := map[FieldTag]FieldInfo{}
|
|
|
|
|
|
|
|
post_deserialize, post_deserialize_exists := reflect.PointerTo(reflect_type).MethodByName("PostDeserialize")
|
|
|
|
post_deserialize_index := -1
|
|
|
|
if post_deserialize_exists {
|
|
|
|
post_deserialize_index = post_deserialize.Index
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, field := range(reflect.VisibleFields(reflect_type)) {
|
|
|
|
gv_tag, tagged_gv := field.Tag.Lookup("gv")
|
|
|
|
if tagged_gv {
|
|
|
|
node_tag := field.Tag.Get("node")
|
|
|
|
field_infos[GetFieldTag(gv_tag)] = FieldInfo{
|
|
|
|
Type: field.Type,
|
|
|
|
Index: field.Index,
|
|
|
|
NodeTag: node_tag,
|
|
|
|
Tag: gv_tag,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.TypeMap[serialized_type] = &TypeInfo{
|
|
|
|
PostDeserializeIndex: post_deserialize_index,
|
|
|
|
Serialized: serialized_type,
|
|
|
|
Reflect: reflect_type,
|
|
|
|
Fields: field_infos,
|
|
|
|
Type: nil,
|
|
|
|
}
|
|
|
|
ctx.TypeTypes[reflect_type] = ctx.TypeMap[serialized_type]
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-04 21:30:11 -07:00
|
|
|
func identity(value interface{}) interface{} {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
|
|
|
|
func stringify(value interface{}) interface{} {
|
|
|
|
v, ok := value.(encoding.TextMarshaler)
|
|
|
|
if ok {
|
|
|
|
b, err := v.MarshalText()
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return string(b)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func unstringify[T any, E interface { *T; encoding.TextUnmarshaler }](value interface{}) interface{} {
|
|
|
|
str, ok := value.(string)
|
|
|
|
if ok == false {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-09 22:09:40 -07:00
|
|
|
var tmp E = new(T)
|
2024-03-04 21:30:11 -07:00
|
|
|
err := tmp.UnmarshalText([]byte(str))
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return *tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
func unstringifyAST[T any, E interface { *T; encoding.TextUnmarshaler}](value ast.Value)interface{} {
|
|
|
|
str, ok := value.(*ast.StringValue)
|
|
|
|
if ok == false {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var tmp E
|
|
|
|
err := tmp.UnmarshalText([]byte(str.Value))
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return *tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
func coerce[T any](value interface{}) interface{} {
|
|
|
|
t := reflect.TypeFor[T]()
|
|
|
|
if reflect.TypeOf(value).ConvertibleTo(t) {
|
|
|
|
return value.(T)
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func astString[T ~string](value ast.Value) interface{} {
|
|
|
|
str, ok := value.(*ast.StringValue)
|
|
|
|
if ok == false {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return T(str.Value)
|
|
|
|
}
|
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
func astBool[T ~bool](value ast.Value) interface{} {
|
|
|
|
switch value := value.(type) {
|
|
|
|
case *ast.BooleanValue:
|
|
|
|
if value.Value {
|
|
|
|
return T(true)
|
|
|
|
} else {
|
|
|
|
return T(false)
|
|
|
|
}
|
|
|
|
case *ast.IntValue:
|
|
|
|
i, err := strconv.Atoi(value.Value)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return i != 0
|
|
|
|
case *ast.StringValue:
|
|
|
|
b, err := strconv.ParseBool(value.Value)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-04 21:30:11 -07:00
|
|
|
func astInt[T constraints.Integer](value ast.Value) interface{} {
|
|
|
|
switch value := value.(type) {
|
|
|
|
case *ast.BooleanValue:
|
|
|
|
if value.Value {
|
|
|
|
return T(1)
|
|
|
|
} else {
|
|
|
|
return T(0)
|
|
|
|
}
|
|
|
|
case *ast.StringValue:
|
|
|
|
i, err := strconv.Atoi(value.Value)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
return T(i)
|
|
|
|
}
|
|
|
|
case *ast.IntValue:
|
|
|
|
i, err := strconv.Atoi(value.Value)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
} else {
|
|
|
|
return T(i)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-17 14:25:34 -06:00
|
|
|
func RegisterEnum[E comparable](ctx *Context, str_map map[E]string) error {
|
|
|
|
reflect_type := reflect.TypeFor[E]()
|
|
|
|
serialized_type := SerializedTypeFor[E]()
|
|
|
|
|
|
|
|
_, exists := ctx.TypeTypes[reflect_type]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("%+v already registered in TypeMap", reflect_type)
|
|
|
|
}
|
|
|
|
|
|
|
|
value_config := graphql.EnumValueConfigMap{}
|
|
|
|
|
|
|
|
for value, value_name := range(str_map) {
|
|
|
|
value_config[value_name] = &graphql.EnumValueConfig{
|
|
|
|
Value: value,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gql_name := strings.ReplaceAll(reflect_type.String(), ".", "_")
|
|
|
|
gql := graphql.NewEnum(graphql.EnumConfig{
|
|
|
|
Name: gql_name,
|
|
|
|
Values: value_config,
|
|
|
|
})
|
|
|
|
|
|
|
|
ctx.TypeMap[serialized_type] = &TypeInfo{
|
|
|
|
Serialized: serialized_type,
|
|
|
|
Reflect: reflect_type,
|
|
|
|
Type: gql,
|
|
|
|
}
|
|
|
|
ctx.TypeTypes[reflect_type] = ctx.TypeMap[serialized_type]
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
func RegisterScalar[S any](ctx *Context, to_json func(interface{})interface{}, from_json func(interface{})interface{}, from_ast func(ast.Value)interface{}) error {
|
2024-03-04 21:30:11 -07:00
|
|
|
reflect_type := reflect.TypeFor[S]()
|
|
|
|
serialized_type := SerializedTypeFor[S]()
|
2024-03-04 17:30:42 -07:00
|
|
|
|
|
|
|
_, exists := ctx.TypeTypes[reflect_type]
|
|
|
|
if exists {
|
|
|
|
return fmt.Errorf("%+v already registered in TypeMap", reflect_type)
|
2023-08-31 19:50:32 -06:00
|
|
|
}
|
2023-10-29 18:26:14 -06:00
|
|
|
|
2024-03-08 14:35:23 -07:00
|
|
|
gql_name := strings.ReplaceAll(reflect_type.String(), ".", "_")
|
2024-03-04 17:30:42 -07:00
|
|
|
gql := graphql.NewScalar(graphql.ScalarConfig{
|
2024-03-08 14:35:23 -07:00
|
|
|
Name: gql_name,
|
2024-03-04 17:30:42 -07:00
|
|
|
Serialize: to_json,
|
|
|
|
ParseValue: from_json,
|
|
|
|
ParseLiteral: from_ast,
|
|
|
|
})
|
2023-08-31 19:50:32 -06:00
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.TypeMap[serialized_type] = &TypeInfo{
|
|
|
|
Serialized: serialized_type,
|
|
|
|
Reflect: reflect_type,
|
2024-03-04 17:30:42 -07:00
|
|
|
Type: gql,
|
|
|
|
}
|
2024-03-08 00:22:51 -07:00
|
|
|
ctx.TypeTypes[reflect_type] = ctx.TypeMap[serialized_type]
|
2023-09-11 21:47:53 -06:00
|
|
|
|
2023-07-09 14:30:30 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-07-28 12:46:06 -06:00
|
|
|
func (ctx *Context) AddNode(id NodeID, node *Node) {
|
2023-08-31 19:50:32 -06:00
|
|
|
ctx.nodeMapLock.Lock()
|
|
|
|
ctx.nodeMap[id] = node
|
|
|
|
ctx.nodeMapLock.Unlock()
|
2023-07-28 12:46:06 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) Node(id NodeID) (*Node, bool) {
|
2023-08-31 19:50:32 -06:00
|
|
|
ctx.nodeMapLock.RLock()
|
|
|
|
node, exists := ctx.nodeMap[id]
|
|
|
|
ctx.nodeMapLock.RUnlock()
|
2023-07-28 12:46:06 -06:00
|
|
|
return node, exists
|
|
|
|
}
|
|
|
|
|
2024-03-03 16:37:03 -07:00
|
|
|
func (ctx *Context) Delete(id NodeID) error {
|
|
|
|
err := ctx.Unload(id)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// TODO: also delete any associated data
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *Context) Unload(id NodeID) error {
|
2023-10-06 20:04:53 -06:00
|
|
|
ctx.nodeMapLock.Lock()
|
|
|
|
defer ctx.nodeMapLock.Unlock()
|
|
|
|
node, exists := ctx.nodeMap[id]
|
|
|
|
if exists == false {
|
|
|
|
return fmt.Errorf("%s is not a node in ctx", id)
|
|
|
|
}
|
|
|
|
|
2024-03-03 16:37:03 -07:00
|
|
|
err := node.Unload(ctx)
|
2023-10-06 20:04:53 -06:00
|
|
|
delete(ctx.nodeMap, id)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-03-03 16:37:03 -07:00
|
|
|
func (ctx *Context) Stop() {
|
2023-10-06 20:04:53 -06:00
|
|
|
ctx.nodeMapLock.Lock()
|
|
|
|
for id, node := range(ctx.nodeMap) {
|
2024-03-03 16:37:03 -07:00
|
|
|
node.Unload(ctx)
|
2023-10-06 20:04:53 -06:00
|
|
|
delete(ctx.nodeMap, id)
|
|
|
|
}
|
|
|
|
ctx.nodeMapLock.Unlock()
|
|
|
|
}
|
|
|
|
|
2024-03-10 16:31:14 -06:00
|
|
|
func (ctx *Context) Load(id NodeID) (*Node, error) {
|
|
|
|
node, err := LoadNode(ctx, id)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.AddNode(id, node)
|
|
|
|
started := make(chan error, 1)
|
|
|
|
go runNode(ctx, node, started)
|
|
|
|
|
|
|
|
err = <- started
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return node, nil
|
|
|
|
}
|
|
|
|
|
2023-07-28 00:04:18 -06:00
|
|
|
// Get a node from the context, or load from the database if not loaded
|
2023-08-31 19:50:32 -06:00
|
|
|
func (ctx *Context) getNode(id NodeID) (*Node, error) {
|
2023-07-28 12:46:06 -06:00
|
|
|
target, exists := ctx.Node(id)
|
|
|
|
|
2023-07-27 15:49:21 -06:00
|
|
|
if exists == false {
|
2023-07-27 16:48:39 -06:00
|
|
|
var err error
|
2024-03-10 16:31:14 -06:00
|
|
|
target, err = ctx.Load(id)
|
2023-07-27 16:48:39 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-07-27 15:49:21 -06:00
|
|
|
}
|
2023-07-27 16:48:39 -06:00
|
|
|
return target, nil
|
|
|
|
}
|
|
|
|
|
2023-11-03 21:41:06 -06:00
|
|
|
// Route Messages to dest. Currently only local context routing is supported
|
2024-03-04 17:30:42 -07:00
|
|
|
func (ctx *Context) Send(node *Node, messages []SendMsg) error {
|
2023-08-07 20:26:02 -06:00
|
|
|
for _, msg := range(messages) {
|
2024-03-10 15:41:13 -06:00
|
|
|
ctx.Log.Logf("signal", "Sending %s to %s", msg.Signal, msg.Dest)
|
2023-08-15 18:23:06 -06:00
|
|
|
if msg.Dest == ZeroID {
|
|
|
|
panic("Can't send to null ID")
|
|
|
|
}
|
2023-08-31 19:50:32 -06:00
|
|
|
target, err := ctx.getNode(msg.Dest)
|
2023-08-07 20:26:02 -06:00
|
|
|
if err == nil {
|
|
|
|
select {
|
2024-03-04 17:30:42 -07:00
|
|
|
case target.MsgChan <- RecvMsg{node.ID, msg.Signal}:
|
2024-03-23 02:21:27 -06:00
|
|
|
ctx.Log.Logf("signal_sent", "Sent %s to %s", msg.Signal, msg.Dest)
|
2023-08-07 20:26:02 -06:00
|
|
|
default:
|
|
|
|
buf := make([]byte, 4096)
|
|
|
|
n := runtime.Stack(buf, false)
|
|
|
|
stack_str := string(buf[:n])
|
2023-08-08 14:00:17 -06:00
|
|
|
return fmt.Errorf("SIGNAL_OVERFLOW: %s - %s", msg.Dest, stack_str)
|
2023-08-07 20:26:02 -06:00
|
|
|
}
|
|
|
|
} else if errors.Is(err, NodeNotFoundError) {
|
|
|
|
// TODO: Handle finding nodes in other contexts
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
return err
|
2023-07-27 16:48:39 -06:00
|
|
|
}
|
2023-07-27 15:49:21 -06:00
|
|
|
}
|
2023-08-07 20:26:02 -06:00
|
|
|
return nil
|
2023-07-27 15:49:21 -06:00
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
func resolveNodeID(val interface{}, p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
id, ok := p.Source.(NodeID)
|
|
|
|
if ok == false {
|
|
|
|
return nil, fmt.Errorf("%+v is not NodeID", p.Source)
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResolveNode(id, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Cache these functions so they're not duplicated when called with the same t
|
2024-03-10 15:41:13 -06:00
|
|
|
func (ctx *Context)GQLResolve(t reflect.Type, node_type string) (func(interface{},graphql.ResolveParams)(interface{},error)) {
|
2024-03-25 18:49:52 -06:00
|
|
|
if t == reflect.TypeFor[NodeID]() {
|
|
|
|
return resolveNodeID
|
2024-03-09 22:09:40 -07:00
|
|
|
} else {
|
|
|
|
switch t.Kind() {
|
2024-03-25 18:49:52 -06:00
|
|
|
case reflect.Map:
|
|
|
|
return func(v interface{}, p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
val := reflect.ValueOf(v)
|
|
|
|
if val.Type() != t {
|
|
|
|
return nil, fmt.Errorf("%s is not %s", reflect.TypeOf(val), t)
|
|
|
|
} else {
|
|
|
|
pairs := make([]Pair, val.Len())
|
|
|
|
iter := val.MapRange()
|
|
|
|
i := 0
|
|
|
|
for iter.Next() {
|
|
|
|
pairs[i] = Pair{
|
|
|
|
Key: iter.Key().Interface(),
|
|
|
|
Val: iter.Value().Interface(),
|
|
|
|
}
|
|
|
|
i += 1
|
|
|
|
}
|
|
|
|
return pairs, nil
|
|
|
|
}
|
|
|
|
}
|
2024-03-09 22:09:40 -07:00
|
|
|
case reflect.Pointer:
|
|
|
|
return ctx.GQLResolve(t.Elem(), node_type)
|
2024-03-10 15:41:13 -06:00
|
|
|
default:
|
2024-03-25 18:49:52 -06:00
|
|
|
return func(v interface{}, p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
return v, nil
|
|
|
|
}
|
2024-03-09 22:09:40 -07:00
|
|
|
}
|
|
|
|
}
|
2024-03-10 15:41:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterInterface[T any](ctx *Context) error {
|
|
|
|
serialized_type := SerializeType(reflect.TypeFor[T]())
|
|
|
|
reflect_type := reflect.TypeFor[T]()
|
|
|
|
|
|
|
|
_, exists := ctx.Interfaces[serialized_type]
|
|
|
|
if exists == true {
|
|
|
|
return fmt.Errorf("Interface %+v already exists in context", reflect_type)
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Interfaces[serialized_type] = &InterfaceInfo{
|
|
|
|
Serialized: serialized_type,
|
|
|
|
Reflect: reflect_type,
|
|
|
|
}
|
|
|
|
ctx.InterfaceTypes[reflect_type] = ctx.Interfaces[serialized_type]
|
|
|
|
|
|
|
|
return nil
|
2024-03-09 22:09:40 -07:00
|
|
|
}
|
|
|
|
|
2023-09-02 17:30:52 -06:00
|
|
|
// Create a new Context with the base library content added
|
|
|
|
func NewContext(db * badger.DB, log Logger) (*Context, error) {
|
|
|
|
ctx := &Context{
|
|
|
|
DB: db,
|
|
|
|
Log: log,
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
TypeMap: map[SerializedType]*TypeInfo{},
|
|
|
|
TypeTypes: map[reflect.Type]*TypeInfo{},
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
Extensions: map[ExtType]*ExtensionInfo{},
|
|
|
|
ExtensionTypes: map[reflect.Type]*ExtensionInfo{},
|
2024-03-04 17:30:42 -07:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
Interfaces: map[SerializedType]*InterfaceInfo{},
|
|
|
|
InterfaceTypes: map[reflect.Type]*InterfaceInfo{},
|
|
|
|
|
2024-03-08 00:22:51 -07:00
|
|
|
Nodes: map[NodeType]*NodeInfo{},
|
|
|
|
NodeTypes: map[string]*NodeInfo{},
|
2024-03-03 15:45:45 -07:00
|
|
|
|
|
|
|
nodeMap: map[NodeID]*Node{},
|
2023-09-02 17:30:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2024-03-25 18:49:52 -06:00
|
|
|
|
|
|
|
err = RegisterScalar[NodeID](ctx, stringify, unstringify[NodeID], unstringifyAST[NodeID])
|
2024-03-10 15:41:13 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-03-21 14:13:54 -06:00
|
|
|
|
2024-03-10 15:41:13 -06:00
|
|
|
err = RegisterInterface[Extension](ctx)
|
2024-03-08 17:43:30 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-21 14:13:54 -06:00
|
|
|
err = RegisterInterface[Signal](ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[NodeType](ctx, identity, coerce[NodeType], astInt[NodeType])
|
2024-03-08 17:43:30 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[ExtType](ctx, identity, coerce[ExtType], astInt[ExtType])
|
2024-03-21 14:22:34 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterNodeType(ctx, "Base", []ExtType{})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[bool](ctx, identity, coerce[bool], astBool[bool])
|
2024-03-08 00:22:51 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[int](ctx, identity, coerce[int], astInt[int])
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[uint32](ctx, identity, coerce[uint32], astInt[uint32])
|
2024-03-08 00:22:51 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[uint8](ctx, identity, coerce[uint8], astInt[uint8])
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[time.Time](ctx, stringify, unstringify[time.Time], unstringifyAST[time.Time])
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[string](ctx, identity, coerce[string], astString[string])
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-17 14:25:34 -06:00
|
|
|
err = RegisterEnum[ReqState](ctx, ReqStateStrings)
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[uuid.UUID](ctx, stringify, unstringify[uuid.UUID], unstringifyAST[uuid.UUID])
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:49:52 -06:00
|
|
|
err = RegisterScalar[Change](ctx, identity, coerce[Change], astString[Change])
|
2024-03-21 14:22:34 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Register as a GQL type with Signal as an interface
|
2024-03-21 14:13:54 -06:00
|
|
|
err = RegisterObjectNoGQL[QueuedSignal](ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-21 14:22:34 -06:00
|
|
|
err = RegisterSignal[TimeoutSignal](ctx)
|
2024-03-21 14:13:54 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-21 14:22:34 -06:00
|
|
|
err = RegisterSignal[StatusSignal](ctx)
|
2024-03-21 14:13:54 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterObject[Node](ctx)
|
2024-03-04 21:30:11 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterExtension[LockableExt](ctx, nil)
|
2024-03-08 00:22:51 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterExtension[ListenerExt](ctx, nil)
|
2023-09-12 19:48:16 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterExtension[GQLExt](ctx, nil)
|
2023-11-11 13:53:41 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterNodeType(ctx, "Lockable", []ExtType{ExtTypeFor[LockableExt]()})
|
2023-11-05 21:18:14 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterObject[LockableExt](ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = RegisterObject[ListenerExt](ctx)
|
2024-03-08 00:22:51 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 17:43:30 -07:00
|
|
|
err = RegisterObject[GQLExt](ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 14:35:23 -07:00
|
|
|
schema, err := BuildSchema(ctx, graphql.NewObject(graphql.ObjectConfig{
|
2024-03-04 22:11:40 -07:00
|
|
|
Name: "Query",
|
|
|
|
Fields: graphql.Fields{
|
2024-03-08 17:43:30 -07:00
|
|
|
"Self": &graphql.Field{
|
2024-03-17 14:25:34 -06:00
|
|
|
Type: ctx.NodeTypes["Base"].Interface,
|
2024-03-04 22:11:40 -07:00
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
2024-03-09 22:09:40 -07:00
|
|
|
ctx, err := PrepResolve(p)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2024-03-25 18:49:52 -06:00
|
|
|
|
2024-03-09 22:09:40 -07:00
|
|
|
return ResolveNode(ctx.Server.ID, p)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
"Node": &graphql.Field{
|
|
|
|
Type: ctx.NodeTypes["Base"].Interface,
|
|
|
|
Args: graphql.FieldConfigArgument{
|
|
|
|
"id": &graphql.ArgumentConfig{
|
|
|
|
Type: ctx.TypeTypes[reflect.TypeFor[NodeID]()].Type,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
id, err := ExtractParam[NodeID](p, "id")
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResolveNode(id, p)
|
2024-03-04 22:11:40 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}), graphql.NewObject(graphql.ObjectConfig{
|
|
|
|
Name: "Mutation",
|
|
|
|
Fields: graphql.Fields{
|
|
|
|
"Test": &graphql.Field{
|
|
|
|
Type: graphql.String,
|
|
|
|
Resolve: func(p graphql.ResolveParams) (interface{}, error) {
|
|
|
|
return "TEST", nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-03-08 14:35:23 -07:00
|
|
|
ctx.ExtensionTypes[reflect.TypeFor[GQLExt]()].Data = schema
|
|
|
|
|
2023-07-25 21:43:15 -06:00
|
|
|
return ctx, nil
|
2023-07-09 14:30:30 -06:00
|
|
|
}
|