-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathmanager.go
More file actions
141 lines (122 loc) · 3.66 KB
/
manager.go
File metadata and controls
141 lines (122 loc) · 3.66 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
135
136
137
138
139
140
141
/*
* === This file is part of ALICE O² ===
*
* Copyright 2017-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"
"fmt"
"sync"
"github.com/pborman/uuid"
"github.com/AliceO2Group/Control/core/task"
"github.com/AliceO2Group/Control/core/workflow"
"github.com/AliceO2Group/Control/configuration"
"strings"
)
type Manager struct {
mu sync.RWMutex
m map[uuid.Array]*Environment
taskman *task.Manager
cfg configuration.Configuration
}
func NewEnvManager(tm *task.Manager, cfg configuration.Configuration) *Manager {
return &Manager{
m: make(map[uuid.Array]*Environment),
taskman: tm,
cfg: cfg,
}
}
func (envs *Manager) CreateEnvironment(workflowPath string) (uuid.UUID, error) {
envs.mu.Lock()
defer envs.mu.Unlock()
env, err := newEnvironment()
if err != nil {
return uuid.NIL, err
}
env.workflow, err = envs.loadWorkflow(workflowPath, env.wfAdapter)
if err != nil {
err = fmt.Errorf("cannot load workflow template: %s", err.Error())
return env.id, err
}
envs.m[env.id.Array()] = env
err = env.TryTransition(NewConfigureTransition(
envs.taskman,
nil, //roles,
nil,
true ))
if err != nil {
delete(envs.m, env.id.Array())
return env.id, err
}
return env.id, err
}
func (envs *Manager) TeardownEnvironment(environmentId uuid.UUID) error {
envs.mu.Lock()
defer envs.mu.Unlock()
env, err := envs.environment(environmentId)
if err != nil {
return err
}
if env.CurrentState() != "STANDBY" {
return errors.New(fmt.Sprintf("cannot teardown environment in state %s", env.CurrentState()))
}
err = envs.taskman.ReleaseTasks(environmentId.Array(), env.Workflow().GetTasks())
if err != nil {
return err
}
delete(envs.m, environmentId.Array())
return err
}
/*func (envs *Manager) Configuration(environmentId uuid.UUID) EnvironmentCfg {
envs.mu.RLock()
defer envs.mu.RUnlock()
return envs.m[environmentId.Array()].cfg
}*/
func (envs *Manager) Ids() (keys []uuid.UUID) {
envs.mu.RLock()
defer envs.mu.RUnlock()
keys = make([]uuid.UUID, len(envs.m))
i := 0
for k := range envs.m {
keys[i] = k.UUID()
i++
}
return
}
func (envs *Manager) Environment(environmentId uuid.UUID) (env *Environment, err error) {
envs.mu.RLock()
defer envs.mu.RUnlock()
return envs.environment(environmentId)
}
func (envs *Manager) environment(environmentId uuid.UUID) (env *Environment, err error) {
env, ok := envs.m[environmentId.Array()]
if !ok {
err = errors.New(fmt.Sprintf("no environment with id %s", environmentId))
}
return
}
func (envs *Manager) loadWorkflow(workflowPath string, parent workflow.Updatable) (root workflow.Role, err error) {
if strings.Contains(workflowPath, "://") {
return nil, errors.New("workflow loading from file not implemented yet")
}
return workflow.Load(envs.cfg, workflowPath, parent)
}