1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00

Added startup flags for new copy src and dst methods

This commit is contained in:
postmannen 2022-06-09 05:59:37 +02:00
parent 0b29cbc6a0
commit 6f10ed9ecd
3 changed files with 48 additions and 2 deletions

View file

@ -113,6 +113,10 @@ type Configuration struct {
StartSubREQCopyFileFrom bool StartSubREQCopyFileFrom bool
// Subscriber for writing copied files to disk // Subscriber for writing copied files to disk
StartSubREQCopyFileTo bool StartSubREQCopyFileTo bool
// Subscriber for reading files to copy
StartSubREQCopySrc bool
// Subscriber for writing copied files to disk
StartSubREQCopyDst bool
// Subscriber for Echo Request // Subscriber for Echo Request
StartSubREQPing bool StartSubREQPing bool
// Subscriber for Echo Reply // Subscriber for Echo Reply
@ -184,6 +188,8 @@ type ConfigurationFromFile struct {
StartSubREQToFileNACK *bool StartSubREQToFileNACK *bool
StartSubREQCopyFileFrom *bool StartSubREQCopyFileFrom *bool
StartSubREQCopyFileTo *bool StartSubREQCopyFileTo *bool
StartSubREQCopySrc *bool
StartSubREQCopyDst *bool
StartSubREQPing *bool StartSubREQPing *bool
StartSubREQPong *bool StartSubREQPong *bool
StartSubREQCliCommand *bool StartSubREQCliCommand *bool
@ -250,6 +256,8 @@ func newConfigurationDefaults() Configuration {
StartSubREQToFileNACK: true, StartSubREQToFileNACK: true,
StartSubREQCopyFileFrom: true, StartSubREQCopyFileFrom: true,
StartSubREQCopyFileTo: true, StartSubREQCopyFileTo: true,
StartSubREQCopySrc: true,
StartSubREQCopyDst: true,
StartSubREQPing: true, StartSubREQPing: true,
StartSubREQPong: true, StartSubREQPong: true,
StartSubREQCliCommand: true, StartSubREQCliCommand: true,
@ -499,6 +507,16 @@ func checkConfigValues(cf ConfigurationFromFile) Configuration {
} else { } else {
conf.StartSubREQCopyFileTo = *cf.StartSubREQCopyFileTo conf.StartSubREQCopyFileTo = *cf.StartSubREQCopyFileTo
} }
if cf.StartSubREQCopySrc == nil {
conf.StartSubREQCopySrc = cd.StartSubREQCopySrc
} else {
conf.StartSubREQCopySrc = *cf.StartSubREQCopySrc
}
if cf.StartSubREQCopyDst == nil {
conf.StartSubREQCopyDst = cd.StartSubREQCopyDst
} else {
conf.StartSubREQCopyDst = *cf.StartSubREQCopyDst
}
if cf.StartSubREQPing == nil { if cf.StartSubREQPing == nil {
conf.StartSubREQPing = cd.StartSubREQPing conf.StartSubREQPing = cd.StartSubREQPing
} else { } else {
@ -627,6 +645,8 @@ func (c *Configuration) CheckFlags() error {
flag.BoolVar(&c.StartSubREQToFileNACK, "startSubREQToFileNACK", fc.StartSubREQToFileNACK, "true/false") flag.BoolVar(&c.StartSubREQToFileNACK, "startSubREQToFileNACK", fc.StartSubREQToFileNACK, "true/false")
flag.BoolVar(&c.StartSubREQCopyFileFrom, "startSubREQCopyFileFrom", fc.StartSubREQCopyFileFrom, "true/false") flag.BoolVar(&c.StartSubREQCopyFileFrom, "startSubREQCopyFileFrom", fc.StartSubREQCopyFileFrom, "true/false")
flag.BoolVar(&c.StartSubREQCopyFileTo, "startSubREQCopyFileTo", fc.StartSubREQCopyFileTo, "true/false") flag.BoolVar(&c.StartSubREQCopyFileTo, "startSubREQCopyFileTo", fc.StartSubREQCopyFileTo, "true/false")
flag.BoolVar(&c.StartSubREQCopySrc, "startSubREQCopySrc", fc.StartSubREQCopySrc, "true/false")
flag.BoolVar(&c.StartSubREQCopyDst, "startSubREQCopyDst", fc.StartSubREQCopyDst, "true/false")
flag.BoolVar(&c.StartSubREQPing, "startSubREQPing", fc.StartSubREQPing, "true/false") flag.BoolVar(&c.StartSubREQPing, "startSubREQPing", fc.StartSubREQPing, "true/false")
flag.BoolVar(&c.StartSubREQPong, "startSubREQPong", fc.StartSubREQPong, "true/false") flag.BoolVar(&c.StartSubREQPong, "startSubREQPong", fc.StartSubREQPong, "true/false")
flag.BoolVar(&c.StartSubREQCliCommand, "startSubREQCliCommand", fc.StartSubREQCliCommand, "true/false") flag.BoolVar(&c.StartSubREQCliCommand, "startSubREQCliCommand", fc.StartSubREQCliCommand, "true/false")

View file

@ -141,6 +141,14 @@ func (p *processes) Start(proc process) {
proc.startup.subREQCopyFileTo(proc) proc.startup.subREQCopyFileTo(proc)
} }
if proc.configuration.StartSubREQCopySrc {
proc.startup.subREQCopySrc(proc)
}
if proc.configuration.StartSubREQCopyDst {
proc.startup.subREQCopyDst(proc)
}
if proc.configuration.StartSubREQHello { if proc.configuration.StartSubREQHello {
proc.startup.subREQHello(proc) proc.startup.subREQHello(proc)
} }
@ -680,6 +688,22 @@ func (s startup) subREQCopyFileTo(p process) {
go proc.spawnWorker() go proc.spawnWorker()
} }
func (s startup) subREQCopySrc(p process) {
log.Printf("Starting copy src subscriber: %#v\n", p.node)
sub := newSubject(REQCopySrc, string(p.node))
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
go proc.spawnWorker()
}
func (s startup) subREQCopyDst(p process) {
log.Printf("Starting copy dst subscriber: %#v\n", p.node)
sub := newSubject(REQCopyDst, string(p.node))
proc := newProcess(p.ctx, s.server, sub, processKindSubscriber, nil)
go proc.spawnWorker()
}
func (s startup) subREQToFileAppend(p process) { func (s startup) subREQToFileAppend(p process) {
log.Printf("Starting text logging subscriber: %#v\n", p.node) log.Printf("Starting text logging subscriber: %#v\n", p.node)
sub := newSubject(REQToFileAppend, string(p.node)) sub := newSubject(REQToFileAppend, string(p.node))

View file

@ -81,8 +81,10 @@ func (m methodREQCopySrc) handler(proc process, message Message, node string) ([
DstFilePath := message.MethodArgs[2] DstFilePath := message.MethodArgs[2]
// Get a context with the timeout specified in message.MethodTimeout. // Get a context with the timeout specified in message.MethodTimeout.
ctx, cancel := getContextForMethodTimeout(proc.ctx, message) // Since the subProc spawned will outlive this method here we do not
defer cancel() // want to cancel this method. We care about the methodTimeout, but
// we ignore the CancelFunc.
ctx, _ := getContextForMethodTimeout(proc.ctx, message)
// Create a subject for one copy request // Create a subject for one copy request
uid := uuid.New() uid := uuid.New()