forked from AliceO2Group/Control
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransition_startactivity.go
More file actions
134 lines (118 loc) · 4.03 KB
/
transition_startactivity.go
File metadata and controls
134 lines (118 loc) · 4.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* === This file is part of ALICE O² ===
*
* Copyright 2018 CERN and copyright holders of ALICE O².
* Author: Teo Mrnjavac <teo.mrnjavac@cern.ch>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* In applying this license CERN does not waive the privileges and
* immunities granted to it by virtue of its status as an
* Intergovernmental Organization or submit itself to any jurisdiction.
*/
package environment
import (
"errors"
"strconv"
"github.com/AliceO2Group/Control/core/task/sm"
"github.com/AliceO2Group/Control/core/workflow"
"github.com/AliceO2Group/Control/common/event"
"github.com/AliceO2Group/Control/common/logger/infologger"
"github.com/AliceO2Group/Control/core/controlcommands"
"github.com/AliceO2Group/Control/core/task"
"github.com/iancoleman/strcase"
)
func NewStartActivityTransition(taskman *task.Manager) Transition {
return &StartActivityTransition{
baseTransition: baseTransition{
name: "START_ACTIVITY",
taskman: taskman,
},
}
}
type StartActivityTransition struct {
baseTransition
}
func (t StartActivityTransition) do(env *Environment) (err error) {
if env == nil {
return errors.New("cannot transition in NIL environment")
}
runNumber := env.currentRunNumber
log.WithField(infologger.Run, runNumber).
WithField("partition", env.Id().String()).
WithField(infologger.Level, infologger.IL_Support).
Info("starting new run")
cleanupCount := 0
cleanupCountS, ok := env.GlobalVars.Get("__fmq_cleanup_count")
if ok && len(cleanupCountS) > 0 {
var parseErr error
cleanupCount, parseErr = strconv.Atoi(cleanupCountS)
if parseErr != nil {
cleanupCount = 1 // something was there, even though non-parsable, so we signal to clean up
}
}
args := controlcommands.PropertyMap{
"runNumber": strconv.FormatUint(uint64(runNumber), 10),
"cleanup": strconv.Itoa(cleanupCount),
}
// Get a handle to the consolidated var stack of the root role of the env's workflow
if wf := env.Workflow(); wf != nil {
if cvs, cvsErr := wf.ConsolidatedVarStack(); cvsErr == nil {
for _, key := range []string{
"fill_info_fill_number",
"fill_info_filling_scheme",
"fill_info_beam_type",
"fill_info_stable_beams_start_ms",
"fill_info_stable_beams_end_ms",
"run_type",
"run_start_time_ms",
"run_end_time_ms", // included to ensure that a cleared SOEOR timestamp is propagated to all tasks during START-STOP-START
"lhc_period",
"pdp_beam_type",
"pdp_override_run_start_time",
"original_run_number",
} {
if value, ok := cvs[key]; ok {
// we push the above parameters with both camelCase and snake_case identifiers for convenience
args[strcase.ToLowerCamel(key)] = value
args[key] = value
}
}
}
}
taskmanMessage := task.NewTransitionTaskMessage(
workflow.GetActiveTasks(env.Workflow()),
sm.CONFIGURED.String(),
sm.START.String(),
sm.RUNNING.String(),
args,
env.Id(),
)
t.taskman.MessageChannel <- taskmanMessage
incomingEv := <-env.stateChangedCh
// If some tasks failed to transition
if tasksStateErrors := incomingEv.GetTasksStateChangedError(); tasksStateErrors != nil {
return tasksStateErrors
}
log.WithField(infologger.Run, env.currentRunNumber).
WithField("partition", env.Id().String()).
WithField(infologger.Level, infologger.IL_Support).
Info("run started")
env.sendEnvironmentEvent(&event.EnvironmentEvent{
EnvironmentID: env.Id().String(),
State: "RUNNING",
Run: env.currentRunNumber,
})
return
}