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
|
/*
* Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License
*/
// Package workers is responsible for worker list management.
package workers
import (
. "git.tizen.org/tools/boruta"
)
// UUID denotes a key in Capabilities where WorkerUUID is stored.
const UUID string = "UUID"
// WorkerList implements Superviser and Workers interfaces.
// It manages a list of Workers.
type WorkerList struct {
Superviser
Workers
workers map[WorkerUUID]*WorkerInfo
}
// NewWorkerList returns a new WorkerList with all fields set.
func NewWorkerList() *WorkerList {
return &WorkerList{
workers: make(map[WorkerUUID]*WorkerInfo),
}
}
// Register is an implementation of Register from Superviser interface.
// UUID, which identifies Worker, must be present in caps.
func (wl *WorkerList) Register(caps Capabilities) error {
capsUUID, present := caps[UUID]
if !present {
return ErrMissingUUID
}
uuid := WorkerUUID(capsUUID)
worker, registered := wl.workers[uuid]
if registered {
// Subsequent Register calls update the caps.
worker.Caps = caps
} else {
wl.workers[uuid] = &WorkerInfo{
WorkerUUID: uuid,
State: MAINTENANCE,
Caps: caps,
}
}
return nil
}
// SetFail is an implementation of SetFail from Superviser interface.
func (wl *WorkerList) SetFail(uuid WorkerUUID, reason string) error {
return ErrNotImplemented
}
// SetState is an implementation of SetState from Workers interface.
func (wl *WorkerList) SetState(uuid WorkerUUID, state WorkerState) error {
return ErrNotImplemented
}
// SetGroups is an implementation of SetGroups from Workers interface.
func (wl *WorkerList) SetGroups(uuid WorkerUUID, groups Groups) error {
return ErrNotImplemented
}
// Deregister is an implementation of Deregister from Workers interface.
func (wl *WorkerList) Deregister(uuid WorkerUUID) error {
return ErrNotImplemented
}
// ListWorkers is an implementation of ListWorkers from Workers interface.
func (wl *WorkerList) ListWorkers(groups Groups, caps Capabilities) ([]WorkerInfo, error) {
return nil, ErrNotImplemented
}
// GetWorkerInfo is an implementation of GetWorkerInfo from Workers interface.
func (wl *WorkerList) GetWorkerInfo(uuid WorkerUUID) (WorkerInfo, error) {
return WorkerInfo{}, ErrNotImplemented
}
|