forked from canonical/snapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
184 lines (148 loc) · 4.6 KB
/
types.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
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2014-2015 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package snap
import (
"encoding/json"
"fmt"
)
// Type represents the kind of snap (app, core, gadget, os, kernel, snapd)
type Type string
// The various types of snap parts we support
const (
TypeApp Type = "app"
TypeGadget Type = "gadget"
TypeKernel Type = "kernel"
TypeBase Type = "base"
TypeSnapd Type = "snapd"
// FIXME: this really should be TypeCore
TypeOS Type = "os"
)
// This is the sort order from least important to most important for
// types. On e.g. firstboot this will be used to order the snaps this
// way.
var typeOrder = map[Type]int{
TypeApp: 50,
TypeGadget: 40,
TypeBase: 30,
TypeKernel: 20,
TypeOS: 10,
TypeSnapd: 0,
}
func (m Type) SortsBefore(other Type) bool {
return typeOrder[m] < typeOrder[other]
}
// UnmarshalJSON sets *m to a copy of data.
func (m *Type) UnmarshalJSON(data []byte) error {
var str string
if err := json.Unmarshal(data, &str); err != nil {
return err
}
return m.fromString(str)
}
// UnmarshalYAML so Type implements yaml's Unmarshaler interface
func (m *Type) UnmarshalYAML(unmarshal func(interface{}) error) error {
var str string
if err := unmarshal(&str); err != nil {
return err
}
return m.fromString(str)
}
// fromString converts str to Type and sets *m to it if validations pass
func (m *Type) fromString(str string) error {
t := Type(str)
// this is a workaround as the store sends "application" but snappy uses
// "app" for TypeApp
if str == "application" {
t = TypeApp
}
if t != TypeApp && t != TypeGadget && t != TypeOS && t != TypeKernel && t != TypeBase && t != TypeSnapd {
return fmt.Errorf("invalid snap type: %q", str)
}
*m = t
return nil
}
// ConfinementType represents the kind of confinement supported by the snap
// (devmode only, or strict confinement)
type ConfinementType string
// The various confinement types we support
const (
DevModeConfinement ConfinementType = "devmode"
ClassicConfinement ConfinementType = "classic"
StrictConfinement ConfinementType = "strict"
)
// UnmarshalJSON sets *confinementType to a copy of data, assuming validation passes
func (confinementType *ConfinementType) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
return confinementType.fromString(s)
}
// UnmarshalYAML so ConfinementType implements yaml's Unmarshaler interface
func (confinementType *ConfinementType) UnmarshalYAML(unmarshal func(interface{}) error) error {
var s string
if err := unmarshal(&s); err != nil {
return err
}
return confinementType.fromString(s)
}
func (confinementType *ConfinementType) fromString(str string) error {
c := ConfinementType(str)
if c != DevModeConfinement && c != ClassicConfinement && c != StrictConfinement {
return fmt.Errorf("invalid confinement type: %q", str)
}
*confinementType = c
return nil
}
type ServiceStopReason string
const (
StopReasonRefresh ServiceStopReason = "refresh"
StopReasonRemove ServiceStopReason = "remove"
StopReasonDisable ServiceStopReason = "disable"
StopReasonOther ServiceStopReason = ""
)
// DaemonScope represents the scope of the daemon running under systemd
type DaemonScope string
const (
SystemDaemon DaemonScope = "system"
UserDaemon DaemonScope = "user"
)
// UnmarshalJSON sets *daemonScope to a copy of data, assuming validation passes
func (daemonScope *DaemonScope) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return err
}
return daemonScope.fromString(s)
}
// UnmarshalYAML so DaemonScope implements yaml's Unmarshaler interface
func (daemonScope *DaemonScope) UnmarshalYAML(unmarshal func(interface{}) error) error {
var s string
if err := unmarshal(&s); err != nil {
return err
}
return daemonScope.fromString(s)
}
func (daemonScope *DaemonScope) fromString(str string) error {
d := DaemonScope(str)
if d != SystemDaemon && d != UserDaemon {
return fmt.Errorf("invalid daemon scope: %q", str)
}
*daemonScope = d
return nil
}