@ -11,6 +11,7 @@ import (
"github.com/matrix-org/go-neb/types"
"net/http"
"strings"
"sync"
)
type heartbeatHandler struct { }
@ -202,8 +203,32 @@ func (s *configureClientHandler) OnIncomingRequest(req *http.Request) (interface
}
type configureServiceHandler struct {
db * database . ServiceDB
clients * clients . Clients
db * database . ServiceDB
clients * clients . Clients
mapMutex sync . Mutex
mutexByServiceID map [ string ] * sync . Mutex
}
func newConfigureServiceHandler ( db * database . ServiceDB , clients * clients . Clients ) * configureServiceHandler {
return & configureServiceHandler {
db : db ,
clients : clients ,
mutexByServiceID : make ( map [ string ] * sync . Mutex ) ,
}
}
func ( s * configureServiceHandler ) getMutexForServiceID ( serviceID string ) * sync . Mutex {
s . mapMutex . Lock ( )
defer s . mapMutex . Unlock ( )
m := s . mutexByServiceID [ serviceID ]
if m == nil {
// XXX TODO: There's a memory leak here. The amount of mutexes created is unbounded, as there will be 1 per service which are never deleted.
// A better solution would be to have a striped hash map with a bounded pool of mutexes. We can't live with a single global mutex because the Register()
// function this is protecting does many many HTTP requests which can take a long time on bad networks and will head of line block other services.
m = & sync . Mutex { }
s . mutexByServiceID [ serviceID ] = m
}
return m
}
func ( s * configureServiceHandler ) OnIncomingRequest ( req * http . Request ) ( interface { } , * errors . HTTPError ) {
@ -216,7 +241,10 @@ func (s *configureServiceHandler) OnIncomingRequest(req *http.Request) (interfac
return nil , httpErr
}
// TODO mutex lock keyed off service ID
// Have mutexes around each service to queue up multiple requests for the same service ID
mut := s . getMutexForServiceID ( service . ServiceID ( ) )
mut . Lock ( )
defer mut . Unlock ( )
old , err := s . db . LoadService ( service . ServiceID ( ) )
if err != nil && err != sql . ErrNoRows {
@ -237,8 +265,6 @@ func (s *configureServiceHandler) OnIncomingRequest(req *http.Request) (interfac
return nil , & errors . HTTPError { err , "Error storing service" , 500 }
}
// TODO mutex unlock keyed off service ID
return & struct {
ID string
Type string