summaryrefslogtreecommitdiff
path: root/vendor/github.com/opencontainers/runtime-tools/generate/spec.go
blob: d7a6da81d9c2bb37a5e91f18bb9cabf0c972977d (plain)
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
package generate

import (
	rspec "github.com/opencontainers/runtime-spec/specs-go"
)

func (g *Generator) initSpec() {
	if g.spec == nil {
		g.spec = &rspec.Spec{}
	}
}

func (g *Generator) initSpecProcess() {
	g.initSpec()
	if g.spec.Process == nil {
		g.spec.Process = &rspec.Process{}
	}
}

func (g *Generator) initSpecProcessConsoleSize() {
	g.initSpecProcess()
	if g.spec.Process.ConsoleSize == nil {
		g.spec.Process.ConsoleSize = &rspec.Box{}
	}
}

func (g *Generator) initSpecProcessCapabilities() {
	g.initSpecProcess()
	if g.spec.Process.Capabilities == nil {
		g.spec.Process.Capabilities = &rspec.LinuxCapabilities{}
	}
}

func (g *Generator) initSpecRoot() {
	g.initSpec()
	if g.spec.Root == nil {
		g.spec.Root = &rspec.Root{}
	}
}

func (g *Generator) initSpecAnnotations() {
	g.initSpec()
	if g.spec.Annotations == nil {
		g.spec.Annotations = make(map[string]string)
	}
}

func (g *Generator) initSpecHooks() {
	g.initSpec()
	if g.spec.Hooks == nil {
		g.spec.Hooks = &rspec.Hooks{}
	}
}

func (g *Generator) initSpecLinux() {
	g.initSpec()
	if g.spec.Linux == nil {
		g.spec.Linux = &rspec.Linux{}
	}
}

func (g *Generator) initSpecLinuxIntelRdt() {
	g.initSpecLinux()
	if g.spec.Linux.IntelRdt == nil {
		g.spec.Linux.IntelRdt = &rspec.LinuxIntelRdt{}
	}
}

func (g *Generator) initSpecLinuxSysctl() {
	g.initSpecLinux()
	if g.spec.Linux.Sysctl == nil {
		g.spec.Linux.Sysctl = make(map[string]string)
	}
}

func (g *Generator) initSpecLinuxSeccomp() {
	g.initSpecLinux()
	if g.spec.Linux.Seccomp == nil {
		g.spec.Linux.Seccomp = &rspec.LinuxSeccomp{}
	}
}

func (g *Generator) initSpecLinuxResources() {
	g.initSpecLinux()
	if g.spec.Linux.Resources == nil {
		g.spec.Linux.Resources = &rspec.LinuxResources{}
	}
}

func (g *Generator) initSpecLinuxResourcesBlockIO() {
	g.initSpecLinuxResources()
	if g.spec.Linux.Resources.BlockIO == nil {
		g.spec.Linux.Resources.BlockIO = &rspec.LinuxBlockIO{}
	}
}

func (g *Generator) initSpecLinuxResourcesCPU() {
	g.initSpecLinuxResources()
	if g.spec.Linux.Resources.CPU == nil {
		g.spec.Linux.Resources.CPU = &rspec.LinuxCPU{}
	}
}

func (g *Generator) initSpecLinuxResourcesMemory() {
	g.initSpecLinuxResources()
	if g.spec.Linux.Resources.Memory == nil {
		g.spec.Linux.Resources.Memory = &rspec.LinuxMemory{}
	}
}

func (g *Generator) initSpecLinuxResourcesNetwork() {
	g.initSpecLinuxResources()
	if g.spec.Linux.Resources.Network == nil {
		g.spec.Linux.Resources.Network = &rspec.LinuxNetwork{}
	}
}

func (g *Generator) initSpecLinuxResourcesPids() {
	g.initSpecLinuxResources()
	if g.spec.Linux.Resources.Pids == nil {
		g.spec.Linux.Resources.Pids = &rspec.LinuxPids{}
	}
}

func (g *Generator) initSpecSolaris() {
	g.initSpec()
	if g.spec.Solaris == nil {
		g.spec.Solaris = &rspec.Solaris{}
	}
}

func (g *Generator) initSpecSolarisCappedCPU() {
	g.initSpecSolaris()
	if g.spec.Solaris.CappedCPU == nil {
		g.spec.Solaris.CappedCPU = &rspec.SolarisCappedCPU{}
	}
}

func (g *Generator) initSpecSolarisCappedMemory() {
	g.initSpecSolaris()
	if g.spec.Solaris.CappedMemory == nil {
		g.spec.Solaris.CappedMemory = &rspec.SolarisCappedMemory{}
	}
}

func (g *Generator) initSpecWindows() {
	g.initSpec()
	if g.spec.Windows == nil {
		g.spec.Windows = &rspec.Windows{}
	}
}

func (g *Generator) initSpecWindowsHyperV() {
	g.initSpecWindows()
	if g.spec.Windows.HyperV == nil {
		g.spec.Windows.HyperV = &rspec.WindowsHyperV{}
	}
}

func (g *Generator) initSpecWindowsResources() {
	g.initSpecWindows()
	if g.spec.Windows.Resources == nil {
		g.spec.Windows.Resources = &rspec.WindowsResources{}
	}
}

func (g *Generator) initSpecWindowsResourcesMemory() {
	g.initSpecWindowsResources()
	if g.spec.Windows.Resources.Memory == nil {
		g.spec.Windows.Resources.Memory = &rspec.WindowsMemoryResources{}
	}
}