StoreBackEnd/pkg/protocol/managers/RequestManager.go

30 lines
617 B
Go
Raw Permalink Normal View History

package managers
import (
"StoreBackEnd/pkg/protocol"
"StoreBackEnd/pkg/protocol/repository"
"bufio"
)
type RequestManager struct {
2022-02-22 08:29:11 +01:00
Repository *repository.ProtocolRepository
}
func (receiver RequestManager) Execute(request string, reader *bufio.Reader) *protocol.ProtocolWriterResult {
// On lis ce que l'on reçoit
writeCmd, readCb := receiver.Repository.ExecuteReader(request)
// On renvoie la réponse (Comment pour fichier ?)
if writeCmd != nil {
if readCb != nil {
cbResult := readCb(reader)
if cbResult != nil {
writeCmd = cbResult
}
}
return writeCmd
} else {
return nil
}
}