package daemons import ( "oc-schedulerd/conf" "os" "time" oclib "cloud.o-forge.io/core/oc-lib" ) type ExecutionManager struct { bookings ScheduledBooking } // Loop every second on the booking's list and move the booking that must start to a new list // that will be looped over to start them func (em *ExecutionManager) RetrieveNextExecutions() { logger := oclib.GetLogger() for { logger.Debug().Msg("New loop") em.bookings.Mu.Lock() bookings := em.bookings.Bookings if len(bookings) > 0 { for i := len(bookings) - 1; i >= 0; i-- { logger.Debug().Msg("It should start at " + bookings[i].Start.String() + " and it is now " + time.Now().UTC().String()) if bookings[i].Start.Before(time.Now().UTC()) { logger.Info().Msg("Will execute " + bookings[i].Workflow + " soon") go em.executeBooking(bookings[i]) bookings = append(bookings[:i], bookings[i+1:]...) em.bookings.Bookings = bookings } } } em.bookings.Mu.Unlock() time.Sleep(time.Second) } } func (em *ExecutionManager) executeBooking(booking Booking) { // start execution // create the yaml that describes the pod : filename, path/url to Loki exec_method := os.Getenv("MONITOR_METHOD") logger := oclib.GetLogger() if exec_method == "k8s" { logger.Error().Msg("TODO : executing oc-monitor in a k8s") } else { logger.Debug().Msg("Executing oc-monitor localy") monitor := LocalMonitor{ Logger: logger, LokiURL: conf.GetConfig().LokiUrl, KubeURL: "localhost", WorkflowName: booking.Workflow} monitor.LaunchLocalMonitor() } }