Mise à jours du App config
This commit is contained in:
parent
dfd6096898
commit
c379c15932
@ -36,12 +36,12 @@ func main() {
|
|||||||
eraseFileRule := readers.CreateEraseFileRule("^ERASEFILE ([A-Za-z0-9.]{50,200})\r\n$")
|
eraseFileRule := readers.CreateEraseFileRule("^ERASEFILE ([A-Za-z0-9.]{50,200})\r\n$")
|
||||||
protocolRepository.AddReader(&eraseFileRule)
|
protocolRepository.AddReader(&eraseFileRule)
|
||||||
|
|
||||||
multicast := network.CreateClientMulticast(appConfig.MulticastAddress, time.Duration(appConfig.MulticastSecond), protocolRepository)
|
multicast := network.CreateClientMulticast(appConfig.MulticastAddress, appConfig.Domain, appConfig.UnicastPort, time.Duration(appConfig.MulticastSecond), protocolRepository)
|
||||||
go multicast.Run()
|
go multicast.Run()
|
||||||
|
|
||||||
requestManager := managers.RequestManager{Repository: protocolRepository}
|
requestManager := managers.RequestManager{Repository: protocolRepository}
|
||||||
|
|
||||||
server := network.ServerUnicast{Network: "tcp", Address: appConfig.UnicastAddress, ReqManager: &requestManager}
|
server := network.ServerUnicast{Network: "tcp", Port: appConfig.UnicastPort, ReqManager: &requestManager}
|
||||||
server.Run()
|
server.Run()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -2,12 +2,15 @@ package config
|
|||||||
|
|
||||||
// AppConfig Contient toute la configuration du server
|
// AppConfig Contient toute la configuration du server
|
||||||
type AppConfig struct {
|
type AppConfig struct {
|
||||||
// multicastAddress Contient l'adresse multicast du FileFrontEnd (adresse:port)
|
// multicastAddress Contient l'adresse multicast du FileFrontEnd
|
||||||
MulticastAddress string `json:"multicastAddress"`
|
MulticastAddress string `json:"multicastAddress"`
|
||||||
|
|
||||||
// multicastSecond Contient le nombre de seconde entre chaque annonce
|
// multicastSecond Contient le nombre de seconde entre chaque annonce
|
||||||
MulticastSecond int `json:"multicastSecond"`
|
MulticastSecond int `json:"multicastSecond"`
|
||||||
|
|
||||||
// unicastAddress Contient l'adresse unicast auquel le FileFrontEnd se connecte (adresse:port)
|
// domain Domain du StorBackEnd
|
||||||
UnicastAddress string `json:"unicastAddress"`
|
Domain string `json:"domain"`
|
||||||
|
|
||||||
|
// unicastPort Contient le port unicast auquel le FileFrontEnd se connecte
|
||||||
|
UnicastPort int `json:"unicastPort"`
|
||||||
}
|
}
|
||||||
|
@ -3,14 +3,17 @@ package network
|
|||||||
import (
|
import (
|
||||||
"StorBackEnd/pkg/protocol/repository"
|
"StorBackEnd/pkg/protocol/repository"
|
||||||
"StorBackEnd/pkg/protocol/rules/writers"
|
"StorBackEnd/pkg/protocol/rules/writers"
|
||||||
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
// CreateClientMulticast Méthode de construction d'un instance de la stuct ClientMulticast
|
// CreateClientMulticast Méthode de construction d'un instance de la stuct ClientMulticast
|
||||||
func CreateClientMulticast(address string, second time.Duration, repository *repository.ProtocolRepository) ClientMulticast {
|
func CreateClientMulticast(address string, domain string, port int, second time.Duration, repository *repository.ProtocolRepository) ClientMulticast {
|
||||||
return ClientMulticast{
|
return ClientMulticast{
|
||||||
address: address,
|
address: address,
|
||||||
|
domain: domain,
|
||||||
|
port: port,
|
||||||
second: second,
|
second: second,
|
||||||
repository: repository,
|
repository: repository,
|
||||||
}
|
}
|
||||||
@ -19,9 +22,15 @@ func CreateClientMulticast(address string, second time.Duration, repository *rep
|
|||||||
// ClientMulticast Cette structure représente une communication en multicast.
|
// ClientMulticast Cette structure représente une communication en multicast.
|
||||||
// TODO : Prévoir une fermeture de la connection (con.Close())
|
// TODO : Prévoir une fermeture de la connection (con.Close())
|
||||||
type ClientMulticast struct {
|
type ClientMulticast struct {
|
||||||
// address Adresse de multicast (address:port)
|
// address Adresse de multicast
|
||||||
address string
|
address string
|
||||||
|
|
||||||
|
// address Domain de du StorBackEnd
|
||||||
|
domain string
|
||||||
|
|
||||||
|
// port Port de connexion en unicast
|
||||||
|
port int
|
||||||
|
|
||||||
// second Temps en seconde entre chaque ping
|
// second Temps en seconde entre chaque ping
|
||||||
second time.Duration
|
second time.Duration
|
||||||
|
|
||||||
@ -41,8 +50,7 @@ func (cMult ClientMulticast) Run() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fake test
|
cmd, correct := cMult.repository.ExecuteWriter(writers.HelloRuleName, cMult.domain, fmt.Sprintf("%d", cMult.port))
|
||||||
cmd, correct := cMult.repository.ExecuteWriter(writers.HelloRuleName, "benja", "5078")
|
|
||||||
if !correct {
|
if !correct {
|
||||||
println("[ClientMulticast] Hello rule isn't correct (" + cmd + ")")
|
println("[ClientMulticast] Hello rule isn't correct (" + cmd + ")")
|
||||||
return
|
return
|
||||||
|
@ -9,13 +9,13 @@ import (
|
|||||||
|
|
||||||
type ServerUnicast struct {
|
type ServerUnicast struct {
|
||||||
Network string
|
Network string
|
||||||
Address string
|
Port int
|
||||||
ReqManager *managers.RequestManager
|
ReqManager *managers.RequestManager
|
||||||
}
|
}
|
||||||
|
|
||||||
func (server ServerUnicast) Run() {
|
func (server ServerUnicast) Run() {
|
||||||
|
|
||||||
listen, err := net.Listen(server.Network, server.Address) // "tcp", "0.0.0.0:58000"
|
listen, err := net.Listen(server.Network, fmt.Sprintf("0.0.0.0:%d", server.Port)) // "tcp", "0.0.0.0:58000"
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Printf("Can't start server : %s\n", err)
|
fmt.Printf("Can't start server : %s\n", err)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"multicastAddress" : "226.66.66.1:42500",
|
"multicastAddress" : "226.66.66.1:42500",
|
||||||
"multicastSecond" : 10,
|
"multicastSecond" : 10,
|
||||||
"unicastAddress" : "0.0.0.0:58000"
|
"domain" : "benjamin",
|
||||||
|
"unicastPort" : 58000
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user