Tentative de récupération de fichier (problème: récupération bloquante)

This commit is contained in:
Jérémi N ‘EndMove’ 2022-03-08 17:44:10 +01:00
parent b030af03c9
commit 38a177aa51
Signed by: EndMove
GPG Key ID: 65C4A02E1F5371A4
7 changed files with 34 additions and 32 deletions

View File

@ -7,7 +7,6 @@ import (
"StoreBackEnd/pkg/protocol/repository" "StoreBackEnd/pkg/protocol/repository"
"StoreBackEnd/pkg/protocol/rules/readers" "StoreBackEnd/pkg/protocol/rules/readers"
"StoreBackEnd/pkg/protocol/rules/writers" "StoreBackEnd/pkg/protocol/rules/writers"
"StoreBackEnd/pkg/utils"
"time" "time"
) )
@ -16,7 +15,7 @@ const (
) )
func main() { func main() {
utils.NetworkLister() // TODO REMOVE //utils.NetworkLister() // TODO REMOVE
println("StoreBackEnd started !") println("StoreBackEnd started !")
// Loading App config // Loading App config

View File

@ -30,14 +30,13 @@ func (server ServerUnicast) Run() {
return return
} else { } else {
for { // TODO : Extraire cette partie de code for { // TODO : Extraire cette partie de code
reader := bufio.NewReader(con) line, err := bufio.NewReader(con).ReadString('\n')
line, err := reader.ReadString('\n') println("[REQUEST] " + line)
println("AH " + line)
if err != nil { if err != nil {
return return
} }
result := server.ReqManager.Execute(line, reader) result := server.ReqManager.Execute(line, con)
println("Réponse : ", result) println("[RESPONSE] : ", result)
_, _ = con.Write(append([]byte(result), '\n')) // TODO : ATTENTION laisser les \n _, _ = con.Write(append([]byte(result), '\n')) // TODO : ATTENTION laisser les \n
} }
} }

View File

@ -1,6 +1,8 @@
package protocol package protocol
import "bufio" import (
"net"
)
// IProtocolReader Représentation abstraite d'un protocol // IProtocolReader Représentation abstraite d'un protocol
type IProtocolReader interface { type IProtocolReader interface {
@ -8,7 +10,7 @@ type IProtocolReader interface {
GetCmd() string GetCmd() string
// Execute Permet d'exécuter l'action implémentée par une règle. Retourne le message (rule) de retour et bool pour savoir si tout s'est bien passé ou non // Execute Permet d'exécuter l'action implémentée par une règle. Retourne le message (rule) de retour et bool pour savoir si tout s'est bien passé ou non
Execute(data string) (string, bool, func(r *bufio.Reader) (string, bool)) Execute(data string) (string, bool, func(r net.Conn) (string, bool))
// Match Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol // Match Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
Match(data string) bool Match(data string) bool

View File

@ -2,17 +2,17 @@ package managers
import ( import (
"StoreBackEnd/pkg/protocol/repository" "StoreBackEnd/pkg/protocol/repository"
"bufio" "net"
) )
type RequestManager struct { type RequestManager struct {
Repository *repository.ProtocolRepository Repository *repository.ProtocolRepository
} }
func (receiver RequestManager) Execute(request string, reader *bufio.Reader) string { func (receiver RequestManager) Execute(request string, reader net.Conn) string {
// On lis ce que l'on reçoit // On lis ce que l'on reçoit
result, executed, readCb := receiver.Repository.ExecuteReader(request) result, executed, readCb := receiver.Repository.ExecuteReader(request)
println("TESTTESTETTETT")
// On renvoie la réponse (Comment pour fichier ?) // On renvoie la réponse (Comment pour fichier ?)
if executed { if executed {
if readCb != nil { if readCb != nil {
@ -23,8 +23,6 @@ func (receiver RequestManager) Execute(request string, reader *bufio.Reader) str
} }
return result return result
} else { } else {
println("HMMM")
// TODO : Renvoyer qu'une erreur est survenue
return "Error occurred while execute command" return "Error occurred while execute command"
} }
} }

View File

@ -2,7 +2,7 @@ package repository
import ( import (
"StoreBackEnd/pkg/protocol" "StoreBackEnd/pkg/protocol"
"bufio" "net"
) )
func CreateProtocolRepository() *ProtocolRepository { func CreateProtocolRepository() *ProtocolRepository {
@ -36,7 +36,7 @@ func (repo ProtocolRepository) AddWriter(writer *protocol.IProtocolWriter) {
/* /*
ExecuteReader Permet d'exécuter un Reader et de récupérer la commande à renvoyer. La deuxième valeur de retour permet de savoir si une commande a put être exécuté ExecuteReader Permet d'exécuter un Reader et de récupérer la commande à renvoyer. La deuxième valeur de retour permet de savoir si une commande a put être exécuté
*/ */
func (repo ProtocolRepository) ExecuteReader(data string) (string, bool, func(r *bufio.Reader) (string, bool)) { func (repo ProtocolRepository) ExecuteReader(data string) (string, bool, func(r net.Conn) (string, bool)) {
for _, reader := range repo.protocolReaders { for _, reader := range repo.protocolReaders {
if (*reader).Match(data) { // Exécuter si match if (*reader).Match(data) { // Exécuter si match
// Récupérer résultat à renvoyer (Donc donner ProtocolRepository aux reader ?!) // Récupérer résultat à renvoyer (Donc donner ProtocolRepository aux reader ?!)

View File

@ -2,7 +2,7 @@ package readers
import ( import (
"StoreBackEnd/pkg/protocol" "StoreBackEnd/pkg/protocol"
"bufio" "net"
) )
// EraseFileRulePrefix Identifiant de cette règle // EraseFileRulePrefix Identifiant de cette règle
@ -29,7 +29,7 @@ func (rule EraseFileRule) GetCmd() string {
return rule.Cmd return rule.Cmd
} }
func (rule EraseFileRule) Execute(data string) (string, bool, func(r *bufio.Reader) (string, bool)) { func (rule EraseFileRule) Execute(data string) (string, bool, func(r net.Conn) (string, bool)) {
if rule.Match(data) { if rule.Match(data) {
values := rule.matcher.Parse(data) values := rule.matcher.Parse(data)
println(values[1], " est le hash du fichier à supprimer") println(values[1], " est le hash du fichier à supprimer")

View File

@ -2,8 +2,10 @@ package readers
import ( import (
"StoreBackEnd/pkg/protocol" "StoreBackEnd/pkg/protocol"
"bufio" "fmt"
"io" "io"
"net"
"os"
) )
// SendFileRulePrefix Rule command prefix // SendFileRulePrefix Rule command prefix
@ -31,29 +33,31 @@ func (rule SendFileRule) GetCmd() string {
} }
// Execute the Rule with a string command. // Execute the Rule with a string command.
func (rule SendFileRule) Execute(data string) (string, bool, func(r *bufio.Reader) (string, bool)) { func (rule SendFileRule) Execute(data string) (string, bool, func(r net.Conn) (string, bool)) {
if rule.Match(data) { // TODO : cloture this command. if rule.Match(data) { // TODO : cloture this command.
values := rule.matcher.Parse(data) values := rule.matcher.Parse(data)
// Values
fileName := values[1]
// fileSize := values[2]
// fileContentHash := values[3]
// print received data // print received data
println(values[1], " File Name Hash") println(values[1], " File Name Hash")
println(values[2], " File Size") println(values[2], " File Size")
println(values[3], " File Content Hash") println(values[3], " File Content Hash")
// function callback // function callback
callback := func(r *bufio.Reader) (string, bool) { callback := func(con net.Conn) (string, bool) {
//var fileContent []byte file, _ := os.Create(fmt.Sprintf("D:\\tmp\\%s", fileName))
// readedByte := -1
/*
for readedByte == -1 || readedByte > 0 {
readedByte, _ = r.Read(fileContent)
println("SendFileRule Reading file ", " - Hey - ", string(readedByte))
}
*/ _, err := io.Copy(file, con)
var fileContent []byte println("HEY1")
readedCount, err := io.ReadFull(r, fileContent) if err != nil {
println("Un test ici : ", readedCount, err) println("Can't copy file")
return "SEND_ERROR\r", false
}
println("HEY2")
return "SEND_OK\r", true return "SEND_OK\r", true
} }
return "SEND_OK\r", true, callback return "SEND_OK\r", true, callback