-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsham_test.go
648 lines (532 loc) · 17 KB
/
sham_test.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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
package sham
import (
"fmt"
log "github.com/sirupsen/logrus"
"testing"
"time"
)
func TestNoSchedulerNoop(t *testing.T) {
shamOS := NewOS()
shamOS.Boot()
}
func TestFCFSScheduler(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.ReadyProcs = []*Process{&Noop, &Noop}
log.WithField("OS.ReadyProcs", shamOS.ReadyProcs).Debug("before CreateProcess")
shamOS.CreateProcess("processFoo", 10, 1, func(contextual *Contextual) int {
for i := 0; i < 3; i++ {
fmt.Printf("%d From processFoo\n", i)
}
// test use mem
log.WithField("OS.Mem", shamOS.Mem).Debug("before using mem")
mem := &contextual.Process.Memory[0]
if mem.Content == nil {
mem.Content = map[string]string{"hello": "world"}
}
log.WithField("OS.Mem", shamOS.Mem).Debug("after using mem")
// test create new process
log.WithField("OS.ReadyProcs", shamOS.ReadyProcs).Debug("before CreateProcess")
// A system call!
contextual.OS.CreateProcess("ProcessBar", 10, 0, func(contextual *Contextual) int {
fmt.Println("From ProcessBar, a Process dynamic created by processFoo")
return StatusDone
})
log.WithField("OS.ReadyProcs", shamOS.ReadyProcs).Debug("after CreateProcess")
return StatusDone
})
log.WithField("OS.ReadyProcs", shamOS.ReadyProcs).Debug("after CreateProcess")
shamOS.Boot()
}
func TestCommit(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.CreateProcess("processFoo", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
if mem.Content == nil {
mem.Content = map[string]int{"power": 1}
}
logger := log.WithField("mem", mem)
// 3 clock cost: 0, 1, 2
for i := 0; i < 3; i++ {
logger.Debug("[processFoo]")
mem.Content.(map[string]int)["power"] <<= 1
contextual.Commit()
}
// part_3:
logger.Debug("part_3")
fmt.Println("processFoo PC (3 expected):", contextual.PC)
logger.Debug("exit: StatusDone")
return StatusDone
})
shamOS.Boot()
}
func TestReturnStatus(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.CreateProcess("processFoo", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
if mem.Content == nil {
mem.Content = map[string]uint{"PC": contextual.PC}
}
case 3:
fmt.Println("processFoo: PC == 3, exit")
return StatusDone
default:
mem.Content.(map[string]uint)["PC"] += 1
}
fooPC := contextual.PC
contextual.OS.CreateProcess("ProcessBar", 10, 0, func(contextual *Contextual) int {
fmt.Println("From ProcessBar, a Process dynamic created by processFoo. Parent PC:", fooPC)
return StatusDone
})
return StatusReady
})
shamOS.Boot()
}
func TestSeq(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
// 这是一个标准的顺序运行的进程
shamOS.CreateProcess("processSeq", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
if mem.Content == nil {
mem.Content = map[string]uint{"count": 0}
}
log.Debug("Line 0")
return StatusRunning
case 1:
log.Debug("Line 1")
mem.Content.(map[string]uint)["count"] += 1
return StatusRunning
case 2:
log.Debug("Line 2")
mem.Content.(map[string]uint)["count"] += 1
return StatusRunning
case 3:
if mem.Content.(map[string]uint)["count"] == 2 {
fmt.Println("count == 2, exit")
return StatusDone
}
}
return StatusDone
})
shamOS.Boot()
}
func TestCancel(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
go func() {
time.Sleep(2 * time.Second)
shamOS.CPU.Cancel(StatusReady) // if StatusBlocked: all blocked, run noops
}()
shamOS.CreateProcess("processSeq", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
if mem.Content == nil {
mem.Content = map[string]uint{"count": 0}
}
log.Debug("Line 0")
return StatusRunning
case 1:
log.Debug("Line 1")
mem.Content.(map[string]uint)["count"] += 1
return StatusRunning
case 2:
log.Debug("Line 2")
mem.Content.(map[string]uint)["count"] += 1
return StatusRunning
case 3:
if mem.Content.(map[string]uint)["count"] == 2 {
fmt.Println("count == 2, exit")
return StatusDone
}
}
return StatusDone
})
shamOS.Boot()
}
func TestClockInterrupt(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.CreateProcess("processSeq", 10, 1, func(contextual *Contextual) int {
switch {
case contextual.PC < 30:
contextual.OS.CreateProcess(fmt.Sprintf("subprocess%d", contextual.PC), 10, 0, func(contextual *Contextual) int {
fmt.Println(contextual.Process.Id)
return StatusDone
})
log.WithField("PC", contextual.PC).Debug("processSeq continue")
return StatusRunning
case contextual.PC == 30:
log.WithField("PC", contextual.PC).Debug("processSeq exit")
}
return StatusDone
})
shamOS.Boot()
}
func TestStdOut(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.CreateProcess("processSeq", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
chanOutput := make(chan interface{}, 10)
switch contextual.PC {
case 0:
if mem.Content == nil {
mem.Content = map[string]uint{"count": 0}
}
log.Debug("Line 0")
chanOutput <- mem.Content.(map[string]uint)["count"]
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chanOutput)
return StatusRunning
case 1:
log.Debug("Line 1")
mem.Content.(map[string]uint)["count"] += 1
chanOutput <- mem.Content.(map[string]uint)["count"]
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chanOutput)
return StatusRunning
case 2:
log.Debug("Line 2")
mem.Content.(map[string]uint)["count"] += 1
chanOutput <- mem.Content.(map[string]uint)["count"]
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chanOutput)
return StatusRunning
case 3:
if mem.Content.(map[string]uint)["count"] == 2 {
fmt.Println("By fmt.Println: count == 2, exit")
chanOutput <- "By StdOut: count == 2, exit"
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chanOutput)
return StatusDone
}
}
return StatusDone
})
shamOS.Boot()
}
func TestHelloWorld(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.ReadyProcs = []*Process{} // No Noop
shamOS.CreateProcess("processSeq", 10, 1, func(contextual *Contextual) int {
ch := make(chan interface{}, 1)
ch <- "Hello, world!"
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, ch)
return StatusDone
})
shamOS.Boot()
}
func TestStdIn(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.ReadyProcs = []*Process{} // No Noop
shamOS.CreateProcess("processSeq_0", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
in := make(chan interface{}, 1)
// in 会在多个周期中被使用,需要放入内存
mem.Content = map[string]chan interface{}{"in": in}
contextual.OS.InterruptRequest(contextual.Process.Thread, StdInInterrupt, in)
return StatusRunning
case 1:
in := mem.Content.(map[string]chan interface{})["in"]
log.Debug("to recv")
content := <-in
log.WithField("content", content).Debug("got content")
out := make(chan interface{}, 1)
out <- content
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, out)
return StatusDone
}
return StatusDone
})
shamOS.CreateProcess("processSeq_1", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
in := make(chan interface{}, 2)
// in 会在多个周期中被使用,需要放入内存
mem.Content = map[string]chan interface{}{"in": in}
// 要求多个输入
contextual.OS.InterruptRequest(contextual.Process.Thread, StdInInterrupt, in)
contextual.OS.InterruptRequest(contextual.Process.Thread, StdInInterrupt, in)
return StatusRunning
case 1:
in := mem.Content.(map[string]chan interface{})["in"]
log.Debug("to recv")
content := (<-in).(string) + (<-in).(string)
log.WithField("content", content).Debug("got content")
out := make(chan interface{}, 1)
out <- content
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, out)
return StatusDone
}
return StatusDone
})
//shamOS.ReadyProcs = shamOS.ReadyProcs[:1]
shamOS.Boot()
}
func TestClockInterruptMeetIO(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.CreateProcess("processMixItr", 10, 1, func(contextual *Contextual) int {
chanOutput := make(chan interface{}, 10)
switch {
case contextual.PC <= 9:
log.WithField("PC", contextual.PC).Debug("waiting...")
return StatusRunning
case contextual.PC == 10:
chanOutput <- "output something just before clock interrupt"
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chanOutput)
return StatusRunning
case contextual.PC == 11:
chanOutput <- "output something just after clock interrupt"
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chanOutput)
return StatusDone
}
return StatusDone
})
shamOS.Boot()
}
func TestPipe(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.ReadyProcs = []*Process{} // No Noop
shamOS.CreateProcess("processSend", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
chanNewPipeArg := make(chan interface{}, 2)
chanNewPipeArg <- "pipe_test" // pipeId
chanNewPipeArg <- 3 // pipeBufferSize
contextual.OS.InterruptRequest(contextual.Process.Thread, NewPipeInterrupt, chanNewPipeArg)
return StatusRunning
case 1:
pipe, ok := contextual.Process.Devices["pipe_test"]
if !ok {
log.Error("got no pipe!")
return StatusDone
}
log.WithFields(log.Fields{
"pipe": pipe.GetId(),
}).Debug("processSend: pipe created successfully")
if mem.Content == nil {
mem.Content = map[string]uint{"bpc": 0} // bpc 是下面的 default case 的独立程序计数器
}
return StatusRunning
default:
bpc := mem.Content.(map[string]uint)["bpc"]
pipe := interface{}(contextual.Process.Devices["pipe_test"]).(*Pipe)
switch bpc {
case 0:
if pipe.Inputable() {
pipe.Input() <- "Hello"
mem.Content.(map[string]uint)["bpc"] += 1
log.Debug("processSend sent 1/2")
}
return StatusRunning
case 1:
if pipe.Inputable() {
pipe.Input() <- "World"
mem.Content.(map[string]uint)["bpc"] += 1
log.Debug("processSend sent 2/2")
}
return StatusRunning
}
log.Debug("processSend finish")
return StatusDone
}
})
shamOS.CreateProcess("processRecv", 10, 1, func(contextual *Contextual) int {
mem := &contextual.Process.Memory[0]
switch contextual.PC {
case 0:
chanGetPipeArg := make(chan interface{}, 2)
chanGetPipeArg <- "pipe_test" // pipeId
contextual.OS.InterruptRequest(contextual.Process.Thread, GetPipeInterrupt, chanGetPipeArg)
return StatusRunning
case 1:
if pipe, ok := contextual.Process.Devices["pipe_test"]; ok {
log.WithFields(log.Fields{
"pipe": pipe.GetId(),
}).Debug("processRecv: got pipe successfully")
return StatusRunning
} else {
log.Error("got no pipe!")
return StatusDone
}
default:
if mem.Content == nil {
mem.Content = map[string]interface{}{"bpc": 0} // bpc 这个 default case 的独立程序计数器
}
bpc := mem.Content.(map[string]interface{})["bpc"].(int)
pipe := interface{}(contextual.Process.Devices["pipe_test"]).(*Pipe)
switch bpc {
case 0:
if pipe.Outputable() {
mem.Content.(map[string]interface{})["content0"] = <-pipe.Output()
mem.Content.(map[string]interface{})["bpc"] = bpc + 1
log.Debug("processSend recv 1/2")
}
return StatusRunning
case 1:
if pipe.Outputable() {
mem.Content.(map[string]interface{})["content1"] = <-pipe.Output()
mem.Content.(map[string]interface{})["bpc"] = bpc + 1
log.Debug("processSend recv 2/2")
}
return StatusRunning
}
content0 := mem.Content.(map[string]interface{})["content0"]
content1 := mem.Content.(map[string]interface{})["content1"]
log.WithFields(log.Fields{
"content0": content0,
"content1": content1,
}).Debug("processRecv: get content")
chOutput := make(chan interface{}, 2)
chOutput <- content0
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chOutput)
chOutput <- content1
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chOutput)
}
return StatusDone
})
shamOS.Boot()
}
func TestVarPool(t *testing.T) {
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.ReadyProcs = []*Process{} // No Noop
shamOS.CreateProcess("processVarPool", 10, 1, func(contextual *Contextual) int {
switch {
case contextual.PC == 0:
contextual.InitVarPool()
contextual.SetVar("chOutput", make(chan interface{}, 1))
log.Debug("VarPool Setup")
return StatusRunning
case contextual.PC <= 3:
contextual.SetVar("num", contextual.PC*contextual.PC)
chOut := contextual.GetVar("chOutput").(chan interface{})
chOut <- fmt.Sprintln(contextual.GetVar("num"), chOut)
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chOut)
return StatusRunning
}
return StatusDone
})
shamOS.Boot()
}
func TestProducerConsumer(t *testing.T) {
// log.SetLevel(log.ErrorLevel) // 只看标准输出
shamOS := NewOS()
shamOS.Scheduler = FCFSScheduler{}
shamOS.ReadyProcs = []*Process{} // No Noop
const PipeProduct = "pipe_product"
shamOS.CreateProcess("producer", 10, 100, func(contextual *Contextual) int {
switch contextual.PC {
case 0:
log.Debug("producer (PC 0): VarPool Setup")
contextual.InitVarPool()
contextual.SetVar("chOutput", make(chan interface{}, 1))
return StatusRunning
case 1:
log.Debug("producer (PC 1): make the product pipe")
pipeArgs := make(chan interface{}, 2)
pipeArgs <- PipeProduct // pipeId
pipeArgs <- 3 // pipeBufferSize
contextual.OS.InterruptRequest(contextual.Process.Thread, NewPipeInterrupt, pipeArgs)
return StatusRunning
default:
if contextual.PC > 30 {
chOut := contextual.GetVar("chOutput").(chan interface{})
chOut <- "producer contextual.PC > 30, stop and exit"
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chOut)
return StatusDone
}
_, ok := contextual.TryGetVar("dpc")
if !ok {
contextual.SetVar("dpc", 0)
}
dpc := contextual.GetVar("dpc").(int)
switch dpc {
case 0:
product := contextual.PC
contextual.SetVar("product", product)
log.WithFields(log.Fields{
"product": product,
}).Debug("producer produce")
contextual.SetVar("dpc", 1)
return StatusRunning
default:
pipe := interface{}(contextual.Process.Devices[PipeProduct]).(*Pipe)
if pipe.Inputable() {
product := contextual.GetVar("product")
log.WithField("product", product).Debug("producer put product into PipeProduct")
pipe.Input() <- product
contextual.SetVar("dpc", 0)
} else {
log.WithFields(log.Fields{
"PC": contextual.PC,
}).Debug("producer waiting for consuming")
return StatusReady // yield
}
}
return StatusRunning
}
})
shamOS.CreateProcess("consumer", 10, 100, func(contextual *Contextual) int {
switch contextual.PC {
case 0:
contextual.InitVarPool()
contextual.SetVar("chOutput", make(chan interface{}, 1))
log.Debug("consumer (PC 0): VarPool Setup")
return StatusRunning
case 1:
log.Debug("consumer (PC 1): get the product pipe")
pipeArgs := make(chan interface{}, 2)
pipeArgs <- PipeProduct // pipeId
contextual.OS.InterruptRequest(contextual.Process.Thread, GetPipeInterrupt, pipeArgs)
return StatusRunning
default:
if contextual.PC > 30 {
log.Debug("consumer exit")
chOut := contextual.GetVar("chOutput").(chan interface{})
chOut <- "consumer contextual.PC > 30, stop and exit"
return StatusDone
}
_, ok := contextual.TryGetVar("dpc")
if !ok {
contextual.SetVar("dpc", 0)
}
dpc := contextual.GetVar("dpc").(int)
switch dpc {
case 0:
pipe := interface{}(contextual.Process.Devices[PipeProduct]).(*Pipe)
if pipe.Outputable() {
contextual.SetVar("product", <-pipe.Output())
contextual.SetVar("dpc", 1)
log.Debug("consumer get product")
} else {
log.WithFields(log.Fields{
"PC": contextual.PC,
}).Debug("consumer waiting for product")
return StatusReady // yield
}
default:
product := contextual.GetVar("product")
log.WithField("product", product).Debug("consumer consume product")
chOut := contextual.GetVar("chOutput").(chan interface{})
chOut <- fmt.Sprintln("consumer consume product:", product)
contextual.OS.InterruptRequest(contextual.Process.Thread, StdOutInterrupt, chOut)
contextual.SetVar("dpc", 0)
}
return StatusRunning
}
})
shamOS.Boot()
}