forked from arduino/arduino-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibraries_location.go
116 lines (106 loc) · 3.31 KB
/
libraries_location.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
// This file is part of arduino-cli.
//
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of arduino-cli.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package libraries
import (
"encoding/json"
"fmt"
rpc "github.com/arduino/arduino-cli/rpc/commands"
)
// LibraryLocation represents where the library is installed
type LibraryLocation int
// The enumeration is listed in ascending order of priority
const (
// IDEBuiltIn are libraries bundled in the IDE
IDEBuiltIn = iota
// PlatformBuiltIn are libraries bundled in a PlatformRelease
PlatformBuiltIn
// ReferencedPlatformBuiltIn are libraries bundled in a PlatformRelease referenced for build
ReferencedPlatformBuiltIn
// User are user installed libraries
User
)
func (d *LibraryLocation) String() string {
switch *d {
case IDEBuiltIn:
return "ide"
case PlatformBuiltIn:
return "platform"
case ReferencedPlatformBuiltIn:
return "ref-platform"
case User:
return "user"
}
panic(fmt.Sprintf("invalid LibraryLocation value %d", *d))
}
// MarshalJSON implements the json.Marshaler interface
func (d *LibraryLocation) MarshalJSON() ([]byte, error) {
switch *d {
case IDEBuiltIn:
return json.Marshal("ide")
case PlatformBuiltIn:
return json.Marshal("platform")
case ReferencedPlatformBuiltIn:
return json.Marshal("ref-platform")
case User:
return json.Marshal("user")
}
return nil, fmt.Errorf("invalid library location value: %d", *d)
}
// UnmarshalJSON implements the json.Unmarshaler interface
func (d *LibraryLocation) UnmarshalJSON(b []byte) error {
var s string
if err := json.Unmarshal(b, &s); err != nil {
return err
}
switch s {
case "ide":
*d = IDEBuiltIn
case "platform":
*d = PlatformBuiltIn
case "ref-platform":
*d = ReferencedPlatformBuiltIn
case "user":
*d = User
}
return fmt.Errorf("invalid library location: %s", s)
}
// ToRPCLibraryLocation converts this LibraryLocation to rpc.LibraryLocation
func (d *LibraryLocation) ToRPCLibraryLocation() rpc.LibraryLocation {
switch *d {
case IDEBuiltIn:
return rpc.LibraryLocation_ide_builtin
case PlatformBuiltIn:
return rpc.LibraryLocation_platform_builtin
case ReferencedPlatformBuiltIn:
return rpc.LibraryLocation_referenced_platform_builtin
case User:
return rpc.LibraryLocation_user
}
panic(fmt.Sprintf("invalid LibraryLocation value %d", *d))
}
// FromRPCLibraryLocation converts a rpc.LibraryLocation to a LibraryLocation
func FromRPCLibraryLocation(l rpc.LibraryLocation) LibraryLocation {
switch l {
case rpc.LibraryLocation_ide_builtin:
return IDEBuiltIn
case rpc.LibraryLocation_platform_builtin:
return PlatformBuiltIn
case rpc.LibraryLocation_referenced_platform_builtin:
return ReferencedPlatformBuiltIn
case rpc.LibraryLocation_user:
return User
}
panic(fmt.Sprintf("invalid rpc.LibraryLocation value %d", l))
}