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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
|
import { call, put, select } from 'redux-saga/effects'
import { addToStore } from '../actions/objects'
import { getAllSchedulers } from '../api/routes/schedulers'
import { getProject } from '../api/routes/projects'
import { getAllTraces } from '../api/routes/traces'
import { getUser } from '../api/routes/users'
import { getTopology, updateTopology } from '../api/routes/topologies'
import { uuid } from 'uuidv4'
export const OBJECT_SELECTORS = {
project: (state) => state.objects.project,
user: (state) => state.objects.user,
authorization: (state) => state.objects.authorization,
portfolio: (state) => state.objects.portfolio,
scenario: (state) => state.objects.scenario,
cpu: (state) => state.objects.cpu,
gpu: (state) => state.objects.gpu,
memory: (state) => state.objects.memory,
storage: (state) => state.objects.storage,
machine: (state) => state.objects.machine,
rack: (state) => state.objects.rack,
tile: (state) => state.objects.tile,
room: (state) => state.objects.room,
topology: (state) => state.objects.topology,
}
function* fetchAndStoreObject(objectType, id, apiCall) {
const objectStore = yield select(OBJECT_SELECTORS[objectType])
let object = objectStore[id]
if (!object) {
object = yield apiCall
yield put(addToStore(objectType, object))
}
return object
}
function* fetchAndStoreObjects(objectType, apiCall) {
const objects = yield apiCall
for (let object of objects) {
yield put(addToStore(objectType, object))
}
return objects
}
export const fetchAndStoreProject = (id) => fetchAndStoreObject('project', id, call(getProject, id))
export const fetchAndStoreUser = (id) => fetchAndStoreObject('user', id, call(getUser, id))
export const fetchAndStoreTopology = function* (id) {
const topologyStore = yield select(OBJECT_SELECTORS['topology'])
const roomStore = yield select(OBJECT_SELECTORS['room'])
const tileStore = yield select(OBJECT_SELECTORS['tile'])
const rackStore = yield select(OBJECT_SELECTORS['rack'])
const machineStore = yield select(OBJECT_SELECTORS['machine'])
let topology = topologyStore[id]
if (!topology) {
const fullTopology = yield call(getTopology, id)
for (let roomIdx in fullTopology.rooms) {
const fullRoom = fullTopology.rooms[roomIdx]
generateIdIfNotPresent(fullRoom)
if (!roomStore[fullRoom._id]) {
for (let tileIdx in fullRoom.tiles) {
const fullTile = fullRoom.tiles[tileIdx]
generateIdIfNotPresent(fullTile)
if (!tileStore[fullTile._id]) {
if (fullTile.rack) {
const fullRack = fullTile.rack
generateIdIfNotPresent(fullRack)
if (!rackStore[fullRack._id]) {
for (let machineIdx in fullRack.machines) {
const fullMachine = fullRack.machines[machineIdx]
generateIdIfNotPresent(fullMachine)
if (!machineStore[fullMachine._id]) {
let machine = (({ _id, position, cpus, gpus, memories, storages }) => ({
_id,
rackId: fullRack._id,
position,
cpuIds: cpus.map((u) => u._id),
gpuIds: gpus.map((u) => u._id),
memoryIds: memories.map((u) => u._id),
storageIds: storages.map((u) => u._id),
}))(fullMachine)
yield put(addToStore('machine', machine))
}
}
const filledSlots = new Array(fullRack.capacity).fill(null)
fullRack.machines.forEach(
(machine) => (filledSlots[machine.position - 1] = machine._id)
)
let rack = (({ _id, name, capacity, powerCapacityW }) => ({
_id,
name,
capacity,
powerCapacityW,
machineIds: filledSlots,
}))(fullRack)
yield put(addToStore('rack', rack))
}
}
let tile = (({ _id, positionX, positionY, rack }) => ({
_id,
roomId: fullRoom._id,
positionX,
positionY,
rackId: rack ? rack._id : undefined,
}))(fullTile)
yield put(addToStore('tile', tile))
}
}
let room = (({ _id, name, tiles }) => ({ _id, name, tileIds: tiles.map((t) => t._id) }))(fullRoom)
yield put(addToStore('room', room))
}
}
topology = (({ _id, name, rooms }) => ({ _id, name, roomIds: rooms.map((r) => r._id) }))(fullTopology)
yield put(addToStore('topology', topology))
// TODO consider pushing the IDs
}
return topology
}
const generateIdIfNotPresent = (obj) => {
if (!obj._id) {
obj._id = uuid()
}
}
export const updateTopologyOnServer = function* (id) {
const topology = yield getTopologyAsObject(id, true)
yield call(updateTopology, topology)
}
export const getTopologyAsObject = function* (id, keepIds) {
const topologyStore = yield select(OBJECT_SELECTORS['topology'])
const rooms = yield getAllRooms(topologyStore[id].roomIds, keepIds)
return {
_id: keepIds ? id : undefined,
name: topologyStore[id].name,
rooms: rooms,
}
}
export const getAllRooms = function* (roomIds, keepIds) {
const roomStore = yield select(OBJECT_SELECTORS['room'])
let rooms = []
for (let id of roomIds) {
let tiles = yield getAllRoomTiles(roomStore[id], keepIds)
rooms.push({
_id: keepIds ? id : undefined,
name: roomStore[id].name,
tiles: tiles,
})
}
return rooms
}
export const getAllRoomTiles = function* (roomStore, keepIds) {
let tiles = []
for (let id of roomStore.tileIds) {
tiles.push(yield getTileById(id, keepIds))
}
return tiles
}
export const getTileById = function* (id, keepIds) {
const tileStore = yield select(OBJECT_SELECTORS['tile'])
return {
_id: keepIds ? id : undefined,
positionX: tileStore[id].positionX,
positionY: tileStore[id].positionY,
rack: !tileStore[id].rackId ? undefined : yield getRackById(tileStore[id].rackId, keepIds),
}
}
export const getRackById = function* (id, keepIds) {
const rackStore = yield select(OBJECT_SELECTORS['rack'])
const machineStore = yield select(OBJECT_SELECTORS['machine'])
const cpuStore = yield select(OBJECT_SELECTORS['cpu'])
const gpuStore = yield select(OBJECT_SELECTORS['gpu'])
const memoryStore = yield select(OBJECT_SELECTORS['memory'])
const storageStore = yield select(OBJECT_SELECTORS['storage'])
return {
_id: keepIds ? rackStore[id]._id : undefined,
name: rackStore[id].name,
capacity: rackStore[id].capacity,
powerCapacityW: rackStore[id].powerCapacityW,
machines: rackStore[id].machineIds
.filter((m) => m !== null)
.map((machineId) => ({
_id: keepIds ? machineId : undefined,
position: machineStore[machineId].position,
cpus: machineStore[machineId].cpuIds.map((id) => cpuStore[id]),
gpus: machineStore[machineId].gpuIds.map((id) => gpuStore[id]),
memories: machineStore[machineId].memoryIds.map((id) => memoryStore[id]),
storages: machineStore[machineId].storageIds.map((id) => storageStore[id]),
})),
}
}
export const fetchAndStoreAllTraces = () => fetchAndStoreObjects('trace', call(getAllTraces))
export const fetchAndStoreAllSchedulers = function* () {
const objects = yield call(getAllSchedulers)
for (let object of objects) {
object._id = object.name
yield put(addToStore('scheduler', object))
}
return objects
}
|