Compare commits
16 commits
Author | SHA1 | Date | |
---|---|---|---|
e9c64bb56a | |||
ff28e23636 | |||
7e63d4d5c4 | |||
f3cfc9e170 | |||
b82928e820 | |||
2ae6af81ab | |||
b005f7f10a | |||
a77529f4f7 | |||
a02b0ba721 | |||
4abda3c58f | |||
d404caa114 | |||
ba2582e851 | |||
9572989a86 | |||
1794393fe9 | |||
b840529d13 | |||
5ac3ec1753 |
3 changed files with 193 additions and 16 deletions
6
go.mod
6
go.mod
|
@ -1,8 +1,8 @@
|
|||
module git.ailur.dev/ailur/fg-library/v2
|
||||
module git.ailur.dev/ailur/fg-library/v3
|
||||
|
||||
go 1.23.1
|
||||
go 1.23.3
|
||||
|
||||
require (
|
||||
github.com/go-chi/chi/v5 v5.1.0
|
||||
github.com/go-chi/chi/v5 v5.2.0
|
||||
github.com/google/uuid v1.6.0
|
||||
)
|
||||
|
|
2
go.sum
2
go.sum
|
@ -1,4 +1,6 @@
|
|||
github.com/go-chi/chi/v5 v5.1.0 h1:acVI1TYaD+hhedDJ3r54HyA6sExp3HfXq7QWEEY/xMw=
|
||||
github.com/go-chi/chi/v5 v5.1.0/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
|
||||
github.com/go-chi/chi/v5 v5.2.0 h1:Aj1EtB0qR2Rdo2dG4O94RIU35w2lvQSj6BRA4+qwFL0=
|
||||
github.com/go-chi/chi/v5 v5.2.0/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
|
||||
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
|
||||
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
|
||||
|
|
185
main.go
185
main.go
|
@ -2,17 +2,26 @@ package library
|
|||
|
||||
import (
|
||||
"database/sql"
|
||||
"errors"
|
||||
"github.com/go-chi/chi/v5"
|
||||
"github.com/google/uuid"
|
||||
"io/fs"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Permissions struct {
|
||||
// Authenticate allows the service to register with the nucleus authentication service and use OAuth2
|
||||
Authenticate bool `validate:"required"`
|
||||
// Router allows the service to serve web pages
|
||||
Router bool `validate:"required"`
|
||||
// Database allows the service to ask for a centralised database connection
|
||||
Database bool `validate:"required"`
|
||||
// BlobStorage allows the service to use the blob storage service
|
||||
BlobStorage bool `validate:"required"`
|
||||
// InterServiceCommunication allows the service to send and receive messages from other services
|
||||
InterServiceCommunication bool `validate:"required"`
|
||||
// Resources allows the service to access their resource directory
|
||||
Resources bool `validate:"required"`
|
||||
}
|
||||
|
||||
|
@ -23,29 +32,195 @@ type Service struct {
|
|||
}
|
||||
|
||||
type InterServiceMessage struct {
|
||||
MessageID uuid.UUID `validate:"required"`
|
||||
ServiceID uuid.UUID `validate:"required"`
|
||||
ForServiceID uuid.UUID `validate:"required"`
|
||||
MessageType uint64 `validate:"required"`
|
||||
MessageType MessageCode `validate:"required"`
|
||||
SentAt time.Time `validate:"required"`
|
||||
Message any `validate:"required"`
|
||||
}
|
||||
|
||||
// NewServiceInitializationInformation creates a new ServiceInitializationInformation and is only ever meant to be called
|
||||
// by fulgens or a compliant implementation of fulgens.
|
||||
func NewServiceInitializationInformation(domain *string, outbox chan<- InterServiceMessage, inbox <-chan InterServiceMessage, router *chi.Mux, configuration map[string]interface{}, resourceDir fs.FS) *ServiceInitializationInformation {
|
||||
return &ServiceInitializationInformation{
|
||||
Domain: domain,
|
||||
Outbox: outbox,
|
||||
inbox: inbox,
|
||||
Router: router,
|
||||
Configuration: configuration,
|
||||
ResourceDir: resourceDir,
|
||||
internal: internal{
|
||||
buffer: make(map[uuid.UUID]InterServiceMessage),
|
||||
waitingList: make(map[uuid.UUID]struct{}),
|
||||
arrived: make(chan uuid.UUID),
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
type internal struct {
|
||||
buffer map[uuid.UUID]InterServiceMessage
|
||||
waitingList map[uuid.UUID]struct{}
|
||||
mutex sync.Mutex
|
||||
arrived chan uuid.UUID
|
||||
ispStarted bool
|
||||
}
|
||||
|
||||
type ServiceInitializationInformation struct {
|
||||
Domain string `validate:"required"`
|
||||
Service *Service `validate:"required"`
|
||||
Domain *string
|
||||
Outbox chan<- InterServiceMessage `validate:"required"`
|
||||
Inbox <-chan InterServiceMessage `validate:"required"`
|
||||
inbox <-chan InterServiceMessage `validate:"required"`
|
||||
Router *chi.Mux
|
||||
Configuration map[string]interface{}
|
||||
ResourceDir fs.FS
|
||||
internal internal
|
||||
}
|
||||
|
||||
// YesIAbsolutelyKnowWhatIAmDoingAndIWantToAccessTheRawInbox returns a channel that can be used to read messages from
|
||||
// the inbox. This is a dangerous operation, can and will break the buffer, and you should most absolutely not use this
|
||||
// unless you would like to handle the messages yourself with no outside help or synchronization.
|
||||
//
|
||||
// If you think you know what you're doing, **you probably don't**.
|
||||
func (s *ServiceInitializationInformation) YesIAbsolutelyKnowWhatIAmDoingAndIWantToAccessTheRawInbox() <-chan InterServiceMessage {
|
||||
return s.inbox
|
||||
}
|
||||
|
||||
type DBType int
|
||||
|
||||
const (
|
||||
Sqlite DBType = 0
|
||||
Postgres DBType = 1
|
||||
Sqlite DBType = iota
|
||||
Postgres
|
||||
)
|
||||
|
||||
type Database struct {
|
||||
DB *sql.DB
|
||||
DBType DBType
|
||||
}
|
||||
type MessageCode int
|
||||
|
||||
const (
|
||||
Success MessageCode = iota
|
||||
BadRequest
|
||||
InternalError
|
||||
Unauthorized
|
||||
)
|
||||
|
||||
func (s *ServiceInitializationInformation) StartISProcessor() {
|
||||
if s.internal.ispStarted {
|
||||
return
|
||||
} else {
|
||||
s.internal.ispStarted = true
|
||||
}
|
||||
listener := NewListener(s.inbox)
|
||||
for {
|
||||
msg := listener.AcceptMessage()
|
||||
s.internal.mutex.Lock()
|
||||
s.internal.buffer[msg.MessageID] = msg
|
||||
s.internal.mutex.Unlock()
|
||||
s.internal.arrived <- msg.MessageID
|
||||
}
|
||||
}
|
||||
|
||||
var (
|
||||
ErrTimeout = errors.New("timeout")
|
||||
)
|
||||
|
||||
func (s *ServiceInitializationInformation) AwaitISMessage(id uuid.UUID, timeout time.Duration) (InterServiceMessage, error) {
|
||||
for {
|
||||
select {
|
||||
case <-time.After(timeout):
|
||||
return InterServiceMessage{}, ErrTimeout
|
||||
case msgID := <-s.internal.arrived:
|
||||
if msgID == id {
|
||||
s.internal.mutex.Lock()
|
||||
msg := s.internal.buffer[id]
|
||||
delete(s.internal.buffer, id)
|
||||
delete(s.internal.waitingList, id)
|
||||
s.internal.mutex.Unlock()
|
||||
if msg.MessageType != Success {
|
||||
return msg, msg.Message.(error)
|
||||
}
|
||||
return msg, nil
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type Listener interface {
|
||||
AcceptMessage() InterServiceMessage
|
||||
}
|
||||
|
||||
type DefaultListener <-chan InterServiceMessage
|
||||
|
||||
func NewListener(c <-chan InterServiceMessage) Listener {
|
||||
return DefaultListener(c)
|
||||
}
|
||||
|
||||
func (l DefaultListener) AcceptMessage() InterServiceMessage {
|
||||
msg := <-l
|
||||
return msg
|
||||
}
|
||||
|
||||
func (s *ServiceInitializationInformation) SendISMessage(forService uuid.UUID, messageType MessageCode, message any) uuid.UUID {
|
||||
id := uuid.New()
|
||||
msg := InterServiceMessage{
|
||||
MessageID: id,
|
||||
ServiceID: s.Service.ServiceID,
|
||||
ForServiceID: forService,
|
||||
MessageType: messageType,
|
||||
SentAt: time.Now(),
|
||||
Message: message,
|
||||
}
|
||||
s.internal.mutex.Lock()
|
||||
s.internal.waitingList[id] = struct{}{}
|
||||
s.internal.mutex.Unlock()
|
||||
s.Outbox <- msg
|
||||
return id
|
||||
}
|
||||
|
||||
func (s *InterServiceMessage) Respond(messageType MessageCode, message any, information *ServiceInitializationInformation) {
|
||||
n := *s
|
||||
n.ServiceID, n.ForServiceID = n.ForServiceID, n.ServiceID
|
||||
n.MessageType = messageType
|
||||
n.Message = message
|
||||
n.SentAt = time.Now()
|
||||
information.Outbox <- n
|
||||
}
|
||||
|
||||
func (s *ServiceInitializationInformation) SendAndAwaitISMessage(forService uuid.UUID, messageType MessageCode, message any, timeout time.Duration) (InterServiceMessage, error) {
|
||||
id := s.SendISMessage(forService, messageType, message)
|
||||
return s.AwaitISMessage(id, timeout)
|
||||
}
|
||||
|
||||
var databaseService = uuid.MustParse("00000000-0000-0000-0000-000000000001")
|
||||
|
||||
func (s *ServiceInitializationInformation) GetDatabase() (Database, error) {
|
||||
if !s.internal.ispStarted {
|
||||
go s.StartISProcessor()
|
||||
}
|
||||
|
||||
response, err := s.SendAndAwaitISMessage(databaseService, 0, nil, 5*time.Second)
|
||||
if err != nil {
|
||||
return Database{}, err
|
||||
}
|
||||
|
||||
return response.Message.(Database), nil
|
||||
}
|
||||
|
||||
func (s *ServiceInitializationInformation) AcceptMessage() InterServiceMessage {
|
||||
for {
|
||||
<-s.internal.arrived
|
||||
s.internal.mutex.Lock()
|
||||
for id, msg := range s.internal.buffer {
|
||||
_, ok := s.internal.waitingList[id]
|
||||
|
||||
if !ok {
|
||||
delete(s.internal.buffer, id)
|
||||
s.internal.mutex.Unlock()
|
||||
return msg
|
||||
}
|
||||
}
|
||||
s.internal.mutex.Unlock()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue