-
Notifications
You must be signed in to change notification settings - Fork 1
/
piManager.go
496 lines (406 loc) · 11.5 KB
/
piManager.go
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"path"
"strings"
"sync"
"database/sql"
"github.com/gorilla/mux"
_ "github.com/mattn/go-sqlite3"
)
type piManager interface {
NewPi(string) PiInfo
GetPi(piId string) (PiInfo, error)
ListFridge() (piList, error)
ListOven() (piList, error)
BakePi(PiInfo, *Bakeform)
BakeHandler(http.ResponseWriter, *http.Request)
UnbakeHandler(http.ResponseWriter, *http.Request)
GetPiHandler(w http.ResponseWriter, r *http.Request)
OvenHandler(w http.ResponseWriter, r *http.Request)
FridgeHandler(w http.ResponseWriter, r *http.Request)
RebootHandler(w http.ResponseWriter, r *http.Request)
AttachDiskHandler(w http.ResponseWriter, r *http.Request)
DetachDiskHandler(w http.ResponseWriter, r *http.Request)
UploadHandler(w http.ResponseWriter, r *http.Request)
DownloadHandler(w http.ResponseWriter, r *http.Request)
}
type PiManager struct {
db *sql.DB
bakeforms bakeformInventory
diskManager *diskManager
piProvisionMutexes map[string]*sync.Mutex
ppiPath string
ppiConfigPath string
}
type bakeRequest struct {
BakeformName string `json:"bakeformName"`
}
func NewPiManager(bakeforms bakeformInventory, dm *diskManager, inventoryDbPath, ppiPath, ppiConfigPath string) (piManager, error) {
db, err := sql.Open("sqlite3", inventoryDbPath)
sqlStmt := "create table if not exists inventory (id text not null primary key, status integer, bakeform text, diskIds text);"
_, err = db.Exec(sqlStmt)
if err != nil {
return &PiManager{}, err
}
newInv := &PiManager{
db: db,
bakeforms: bakeforms,
piProvisionMutexes: make(map[string]*sync.Mutex),
diskManager: dm,
ppiPath: ppiPath,
ppiConfigPath: ppiConfigPath,
}
stuckPis, _ := newInv.listPis(PREPARING)
log.Println("unstucking Pis that are stuck in the PREPARING state.")
for _, pi := range stuckPis {
pi.Status = NOTINUSE
err := pi.Save()
if err != nil {
log.Println(err.Error())
}
}
return newInv, nil
}
//NewPi just returns a new piInfo struct. It does not register the info in the DB. Use piInfo.Save() to do so.
func (i *PiManager) NewPi(piId string) PiInfo {
return PiInfo{
db: i.db,
Id: piId,
Status: NOTINUSE,
ppiPath: i.ppiPath,
ppiConfigPath: i.ppiConfigPath,
}
}
//GetPi finds the pi in the DB. If the pi is not found an empty piInfo struct and an error is returned
func (i *PiManager) GetPi(piId string) (PiInfo, error) {
rows, err := i.db.Query(fmt.Sprintf("select id, status, bakeform, diskIds from inventory where id = '%v'", piId))
if err != nil {
return PiInfo{}, err
}
defer rows.Close()
if rows.Next() {
var id, bakeform, diskIdsString string
var status piStatus
rows.Scan(&id, &status, &bakeform, &diskIdsString)
pi := PiInfo{
db: i.db,
Id: id,
Status: status,
SourceBakeform: i.bakeforms.List()[bakeform],
ppiPath: i.ppiPath,
ppiConfigPath: i.ppiConfigPath,
}
diskIds := strings.Split(diskIdsString, ",")
for _, diskId := range diskIds {
pi.Disks = append(pi.Disks, i.diskManager.Disks[diskId])
}
return pi, nil
}
return PiInfo{}, fmt.Errorf("%v not found in inventory", piId)
}
func (i *PiManager) ListFridge() (piList, error) {
return i.listPis(NOTINUSE)
}
func (i *PiManager) ListOven() (piList, error) {
inuse, err := i.listPis(INUSE)
if err == nil {
preparing, err := i.listPis(PREPARING)
for k, v := range inuse {
preparing[k] = v
}
return preparing, err
}
return nil, err
}
func (pm *PiManager) BakePi(pi PiInfo, bf *Bakeform) {
if _, exists := pm.piProvisionMutexes[pi.Id]; !exists {
pm.piProvisionMutexes[pi.Id] = &sync.Mutex{}
}
pm.piProvisionMutexes[pi.Id].Lock()
defer pm.piProvisionMutexes[pi.Id].Unlock()
log.Printf("Baking pi: %v\n", pi.Id)
//update the status to PREPARING
if err := pi.SetStatus(PREPARING); err != nil {
log.Println(err)
return
}
//Deploy the disk from image
log.Println("Cloning bakeform...")
dsk, err := pm.diskManager.DiskFromBakeform(bf)
if err != nil {
log.Println(err.Error())
pi.SetStatus(NOTINUSE)
return
}
//Attach the disk to the pi
log.Println("Attaching cloned disk")
err = pi.AttachDisk(dsk)
if err != nil {
log.Println(err.Error())
pm.diskManager.DestroyDisk(dsk.ID)
pi.SetStatus(NOTINUSE)
return
}
pi.Status = INUSE
pi.SourceBakeform = bf
pi.Save()
log.Printf("Pi with id %v is ready!\n", pi.Id)
}
func (pm *PiManager) UnbakePi(pi *PiInfo, bf *Bakeform) {
if _, exists := pm.piProvisionMutexes[pi.Id]; !exists {
pm.piProvisionMutexes[pi.Id] = &sync.Mutex{}
}
pm.piProvisionMutexes[pi.Id].Lock()
defer pm.piProvisionMutexes[pi.Id].Unlock()
err := pi.Unbake(pm.diskManager)
if err != nil {
log.Println(err.Error())
}
}
func (i *PiManager) listPis(qStatus piStatus) (piList, error) {
list := make(piList)
rows, err := i.db.Query(fmt.Sprintf("select id, status, bakeform, diskIds from inventory where status = %v", qStatus))
if err != nil {
return list, err
}
defer rows.Close()
for rows.Next() {
var id, bakeform, diskIdsString string
var status piStatus
rows.Scan(&id, &status, &bakeform, &diskIdsString)
pi := PiInfo{
db: i.db,
Id: id,
Status: status,
SourceBakeform: i.bakeforms.List()[bakeform],
ppiPath: i.ppiPath,
ppiConfigPath: i.ppiConfigPath,
}
diskIds := strings.Split(diskIdsString, ",")
for _, diskId := range diskIds {
pi.Disks = append(pi.Disks, i.diskManager.Disks[diskId])
}
list[id] = pi
}
return list, nil
}
func (pm *PiManager) BakeHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
//parse the post body
var params bakeRequest
err := json.NewDecoder(r.Body).Decode(¶ms)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
}
sourceBakeform := pm.bakeforms.List()
useBakeForm, exists := sourceBakeform[params.BakeformName]
if !exists {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(fmt.Sprintf("bakeform with name %v does not exist", params.BakeformName)))
return
}
//get list of pis in the fridge
list, err := pm.ListFridge()
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
//select one from the list. don't really care which one
targetPiId := ""
for key, _ := range list {
targetPiId = key
break
}
if targetPiId == "" {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("{ \"error\": \"no available Pi found\"}"))
return
}
targetPi := list[targetPiId]
jsonBytes, err := json.Marshal(targetPi)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
w.WriteHeader(http.StatusAccepted)
w.Write(jsonBytes)
//Start the provisioning process (baking) asynchronously and return the piInfo object for the selected pi
//the client should check /api/v1/oven/{piId} for the status of the pi
go pm.BakePi(targetPi, useBakeForm)
}
func (i *PiManager) UnbakeHandler(w http.ResponseWriter, r *http.Request) {
urlvars := mux.Vars(r)
piId := urlvars["piId"]
pi, err := i.GetPi(piId)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
if pi.Status != INUSE {
w.WriteHeader(http.StatusForbidden)
w.Write([]byte("Can only unbake pis that are actually baked"))
return
}
go pi.Unbake(i.diskManager)
w.WriteHeader(http.StatusOK)
}
func (i *PiManager) GetPiHandler(w http.ResponseWriter, r *http.Request) {
urlvars := mux.Vars(r)
piId := urlvars["piId"]
pi, err := i.GetPi(piId)
if err == nil {
var jsonBytes []byte
jsonBytes, err = json.Marshal(pi)
w.Write(jsonBytes)
}
if err != nil {
w.WriteHeader(http.StatusNotFound)
return
}
}
func (i *PiManager) OvenHandler(w http.ResponseWriter, r *http.Request) {
piList, err := i.ListOven()
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
var jsonBytes []byte
jsonBytes, err = json.Marshal(piList)
w.Write(jsonBytes)
}
func (i *PiManager) FridgeHandler(w http.ResponseWriter, r *http.Request) {
piList, err := i.ListFridge()
if err == nil {
var jsonBytes []byte
jsonBytes, err = json.Marshal(piList)
w.Write(jsonBytes)
}
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
}
func (i *PiManager) RebootHandler(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
piId := params["piId"]
pi, err := i.GetPi(piId)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte("Pi not in inventory"))
return
}
err = pi.PowerCycle()
if err != nil {
log.Println(err.Error())
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
w.WriteHeader(http.StatusOK)
}
func (pm *PiManager) AttachDiskHandler(w http.ResponseWriter, r *http.Request) {
var associateRequest struct {
DiskId string `json:"diskId"`
}
defer r.Body.Close()
piId := mux.Vars(r)["piId"]
err := json.NewDecoder(r.Body).Decode(&associateRequest)
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte("Error parsing posted data"))
return
}
pi, err := pm.GetPi(piId)
if err != nil {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("Pi not found"))
return
}
dsk, exists := pm.diskManager.Disks[associateRequest.DiskId]
if !exists {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("Disk not found"))
return
}
err = pi.AttachDisk(dsk)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte("error associating disk"))
return
}
}
func (pm *PiManager) DetachDiskHandler(w http.ResponseWriter, r *http.Request) {
params := mux.Vars(r)
piId := params["piId"]
diskId := params["diskId"]
pi, err := pm.GetPi(piId)
if err != nil {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("Pi not found"))
return
}
dsk, exists := pm.diskManager.Disks[diskId]
if !exists {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("Disk not found"))
return
}
err = pi.DetachDisk(dsk)
}
func (pm *PiManager) UploadHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
params := mux.Vars(r)
piId := params["piId"]
filename := path.Join("piConfig/", params["filename"])
pi, err := pm.GetPi(piId)
if err != nil {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("Pi not found"))
return
}
content, _ := ioutil.ReadAll(r.Body)
if pi.Status != INUSE || len(pi.Disks) == 0 {
w.WriteHeader(http.StatusNotExtended)
w.Write([]byte("Pi not in ready state"))
}
//Lock the povisioning mutex to prevent the pi from disappearing while we put a file
if _, exists := pm.piProvisionMutexes[pi.Id]; !exists {
pm.piProvisionMutexes[pi.Id] = &sync.Mutex{}
}
pm.piProvisionMutexes[pi.Id].Lock()
defer pm.piProvisionMutexes[pi.Id].Unlock()
diskId := pi.Disks[0].ID
err = pm.diskManager.PutFileOnDisk(diskId, filename, content)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte("Error putting file on disk: " + err.Error()))
}
w.WriteHeader(http.StatusOK)
}
func (pm *PiManager) DownloadHandler(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
params := mux.Vars(r)
piId := params["piId"]
filename := path.Join("piConfig/", params["filename"])
pi, err := pm.GetPi(piId)
if err != nil {
w.WriteHeader(http.StatusNotFound)
w.Write([]byte("Pi not found"))
return
}
diskId := pi.Disks[0].ID
content, err := pm.diskManager.GetFileFromDisk(diskId, filename)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte("Error getting file from disk: " + err.Error()))
}
w.WriteHeader(http.StatusOK)
w.Header().Set("Content-Type", "application/octet-stream")
w.Write(content)
}