-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathresource_cpu.go
84 lines (72 loc) · 1.55 KB
/
resource_cpu.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
package main
import (
"math/rand"
"runtime"
"time"
petname "github.com/dustinkirkland/golang-petname"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func resourceCpu() *schema.Resource {
return &schema.Resource{
Create: resourceCpuCreate,
Read: resourceCpuRead,
Update: resourceCpuUpdate,
Delete: resourceCpuDelete,
Schema: map[string]*schema.Schema{
"duration": {
Type: schema.TypeInt,
Required: true,
},
"core_count": {
Type: schema.TypeInt,
Optional: true,
Default: runtime.NumCPU(),
},
},
}
}
func resourceCpuCreate(d *schema.ResourceData, m interface{}) error {
duration := d.Get("duration").(int)
done := make(chan int)
rand.Seed(time.Now().UTC().UnixNano())
id := petname.Generate(3, "-")
d.SetId(id)
for i := 0; i < d.Get("core_count").(int); i++ {
go func() {
for {
select {
case <-done:
return
default:
}
}
}()
}
time.Sleep(time.Second * time.Duration(duration))
close(done)
return resourceCpuRead(d, m)
}
func resourceCpuRead(d *schema.ResourceData, m interface{}) error {
return nil
}
func resourceCpuUpdate(d *schema.ResourceData, m interface{}) error {
duration := d.Get("duration").(int)
done := make(chan int)
for i := 0; i < d.Get("core_count").(int); i++ {
go func() {
for {
select {
case <-done:
return
default:
}
}
}()
}
time.Sleep(time.Second * time.Duration(duration))
close(done)
return resourceCpuRead(d, m)
}
func resourceCpuDelete(d *schema.ResourceData, m interface{}) error {
return nil
}